[gentoo-commits] repo/gentoo:master commit in: app-crypt/acmebot/

2020-08-15 Thread Robin H. Johnson
commit: a16c3c3ba794eb16af95abb92005a84f971997e8
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Aug 16 04:59:12 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Aug 16 04:59:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a16c3c3b

app-crypt/acmebot: bump

Signed-off-by: Robin H. Johnson  gentoo.org>

 app-crypt/acmebot/Manifest |  1 +
 app-crypt/acmebot/acmebot-2.7.0.ebuild | 60 ++
 2 files changed, 61 insertions(+)

diff --git a/app-crypt/acmebot/Manifest b/app-crypt/acmebot/Manifest
index 4b55640b4b6..c2f4e840601 100644
--- a/app-crypt/acmebot/Manifest
+++ b/app-crypt/acmebot/Manifest
@@ -1 +1,2 @@
 DIST acmebot-2.3.0.tar.gz 64841 BLAKE2B 
92bfb9a58722b9955fe908e2fcb1a3ee593bf87e3fdf3dc9564bcbe291b13c553ad426673c337a59344287da64c4ee5cffc734f8dfb60447f96d6234814f0167
 SHA512 
3951cc7138eb0b83bd802a2e0a221fa985209ba276028606d887b7d2eff84c35db034f4a3d8a6836b3ac149c6dbfa27b1ea47e864f549f8d88b758b40407c4f4
+DIST acmebot-2.7.0.tar.gz 76385 BLAKE2B 
28b0fd81735e2dbff493dbcfe0194d62dea8d233866dcb235bb0efac562d2f3884f53226f979e8cd6050078f59b0b1e6d20d2eeea6d762363526686ef8c5ead1
 SHA512 
1b8fa21c2dc60a940e2fa13d5d599025088644862c985749d72f4f16ebd4ad48970b7fcf656fb34cf63d3c2ff2cbb157d7446c17a7f9da3cffd8611e499c400e

diff --git a/app-crypt/acmebot/acmebot-2.7.0.ebuild 
b/app-crypt/acmebot/acmebot-2.7.0.ebuild
new file mode 100644
index 000..e6b7da902b1
--- /dev/null
+++ b/app-crypt/acmebot/acmebot-2.7.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=(python3_{7,8})
+EGIT_REPO_URI="https://github.com/plinss/${PN}.git;
+[[ $PV ==  ]] && _scm=git-r3
+
+inherit ${_scm} python-single-r1
+
+DESCRIPTION="Certificate manager bot using ACME protocol"
+HOMEPAGE="https://github.com/plinss/acmebot;
+if [[ $PV !=  ]]; then
+   SRC_URI="https://github.com/plinss/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+[[ $PV !=  ]] && KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND=""
+RDEPEND="${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   >=dev-python/appdirs-1.4.3[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/pyparsing-2.2.0[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/packaging-16.8[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/pyopenssl-17.5.0[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/pydns-3.1.0:3[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/cryptography-2.1.4[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/asn1crypto-0.24.0[${PYTHON_MULTI_USEDEP}]
+   >=app-crypt/acme-0.25.1[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/pyyaml-3.1[${PYTHON_MULTI_USEDEP}]
+   ')
+   "
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+}
+src_prepare() {
+   default
+   python_fix_shebang .
+}
+
+src_configure() {
+   :
+}
+src_compile() {
+   :
+}
+
+src_install() {
+   python_doscript acmebot
+   insinto /etc/logrotate.d
+   doins logrotate.d/acmebot
+   insinto /etc/acmebot
+   doins acmebot.example.json
+   dodoc README.rst
+}



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

2020-08-15 Thread Sam James
commit: dc0c637a699f51f9736527c162675b52548207c0
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 04:23:08 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 04:23:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc0c637a

dev-libs/libxml2: add upstream patch for consumers

Within our patchset (which included various upstream memory
correctness fixes), we included a patch
(0034-Call-xmlCleanupParser-on-ELF-destruction.patch)

which has caused crashes in some applications e.g. nokogiri
because they use a custom free handler.

We apply upstream's patch for this issue
(check-for-custom-free-function-in-global-destructor.patch).

We will likely give this a small amount of time in ~arch,
then move the stable keywords from 2.9.10 forward,
as this is a minor change and affects the current stable
for most arches.

Bug: https://bugs.gentoo.org/710748
Bug: https://bugs.gentoo.org/737024
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-libs/libxml2/Manifest |   1 +
 dev-libs/libxml2/libxml2-2.9.10-r1.ebuild | 224 ++
 2 files changed, 225 insertions(+)

diff --git a/dev-libs/libxml2/Manifest b/dev-libs/libxml2/Manifest
index 4b17659058c..ee77f61e855 100644
--- a/dev-libs/libxml2/Manifest
+++ b/dev-libs/libxml2/Manifest
@@ -1,4 +1,5 @@
 DIST libxml2-2.9.10-patchset.tar.xz 71584 BLAKE2B 
4925a28570ed4f84da0407c3ce5b257d0959661855792160e4c534125fe0bbfa3749e7fc43b6c91a17206ac08a85922f4158bf40164c8a17ec940bf12b7dde1c
 SHA512 
cd5a6aa86b6cf9ff852922ecfa23f34edeecab10a0e6d1bcd4dca56a6e17713b10af9387c7a6276bfec612f1d44fc06c16a7bdcab01ef9080f4dd10fab253b93
+DIST libxml2-2.9.10-r1-patchset.tar.xz 72088 BLAKE2B 
4d5f8aed35d6c0232089e09f22a77cbd25cbd2007c1330538e1c7acc4398ec3ef9023289129677cf5499dbacde4c2f28850ae81acab351d02625d3452aedaede
 SHA512 
a63032d1e85128f637c2b54356aab06a17e31eb1f5facd8fdf88463eb21df6a1d9fd8cc751fa94b8d322fa4f796be4e1d9aa071cbd0826ab31fae46525fde952
 DIST libxml2-2.9.10.tar.gz 5624761 BLAKE2B 
a9958bd7db17fbfb8259b64d66548eb19d28f1aecf40cf66752fcec5720855d31cea9941d52963badd8c18ea1770485f1c11da6213149458336ce0273418f421
 SHA512 
0adfd12bfde89cbd6296ba6e66b6bed4edb814a74b4265bda34d95c41d9d92c696ee7adb0c737aaf9cc6e10426a31a35079b2a23d26c074e299858da12c072ed
 DIST libxml2-2.9.9-patchset.tar.xz 16792 BLAKE2B 
f761b5cda41d57543dadf2cdd8915b69727a818f31badc1092903a9e4341b807852fed0887e9ec7a06a0c19c4a49f9afc2f3c048947f21a09006bb51ef8399ef
 SHA512 
c8c0ee6d0a2833e5664aa754f8ba63b9f0bbfda46510507d3a958c33ef55daba8cfb1ca73ebffeb44d411b5f4259fe6e11ef0204ad2deebd1708ebfb
 DIST libxml2-2.9.9.tar.gz 5476717 BLAKE2B 
00a67c38084f2effd5d68d7d3e68f0c96cf4f52eab6d8d9b96dc91f03a84baa132abeaf303a836ff9bbf04f832432a036077316c464398e433c9779d8519074b
 SHA512 
cb7784ba4e72e942614e12e4f83f4ceb275f3d738b30e3b5c1f25edf8e9fa6789e854685974eed95b362049dbf6c8e7357e0327d64c681ed390534ac154e6810

diff --git a/dev-libs/libxml2/libxml2-2.9.10-r1.ebuild 
b/dev-libs/libxml2/libxml2-2.9.10-r1.ebuild
new file mode 100644
index 000..6ac3762537e
--- /dev/null
+++ b/dev-libs/libxml2/libxml2-2.9.10-r1.ebuild
@@ -0,0 +1,224 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} )
+PYTHON_REQ_USE="xml"
+
+inherit libtool flag-o-matic python-r1 autotools prefix multilib-minimal
+
+DESCRIPTION="XML C parser and toolkit"
+HOMEPAGE="http://www.xmlsoft.org/;
+
+LICENSE="MIT"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE="debug examples icu ipv6 lzma +python readline static-libs test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+RESTRICT="!test? ( test )"
+
+XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite;
+XSTS_NAME_1="xmlschema2002-01-16"
+XSTS_NAME_2="xmlschema2004-01-14"
+XSTS_TARBALL_1="xsts-2002-01-16.tar.gz"
+XSTS_TARBALL_2="xsts-2004-01-14.tar.gz"
+XMLCONF_TARBALL="xmlts20080827.tar.gz"
+
+SRC_URI="ftp://xmlsoft.org/${PN}/${PN}-${PV/_rc/-rc}.tar.gz
+   
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PF}-patchset.tar.xz
+   test? (
+   ${XSTS_HOME}/${XSTS_NAME_1}/${XSTS_TARBALL_1}
+   ${XSTS_HOME}/${XSTS_NAME_2}/${XSTS_TARBALL_2}
+   http://www.w3.org/XML/Test/${XMLCONF_TARBALL} )"
+
+RDEPEND="
+   >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]
+   icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] )
+   lzma? ( >=app-arch/xz-utils-5.0.5-r1:=[${MULTILIB_USEDEP}] )
+   python? ( ${PYTHON_DEPS} )
+   readline? ( sys-libs/readline:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-util/gtk-doc-am
+   virtual/pkgconfig
+"
+
+S="${WORKDIR}/${PN}-${PV%_rc*}"
+

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

2020-08-15 Thread Rick Farina
commit: 8928b3547fd69efe6e352f14cf31e09e314cc415
Author: Rick Farina  gentoo  org>
AuthorDate: Sun Aug 16 02:58:04 2020 +
Commit: Rick Farina  gentoo  org>
CommitDate: Sun Aug 16 02:58:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8928b354

dev-embedded/freaklabs-boards: make pkgcheck happy

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

 dev-embedded/freaklabs-boards/freaklabs-boards-1.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-embedded/freaklabs-boards/freaklabs-boards-1.0.0.ebuild 
b/dev-embedded/freaklabs-boards/freaklabs-boards-1.0.0.ebuild
index 58094e1c742..57336622114 100644
--- a/dev-embedded/freaklabs-boards/freaklabs-boards-1.0.0.ebuild
+++ b/dev-embedded/freaklabs-boards/freaklabs-boards-1.0.0.ebuild
@@ -19,8 +19,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-DEPEND=""
-RDEPEND="${DEPEND}"
+DEPEND="app-arch/unzip"
+RDEPEND=""
 BDEPEND=""
 PDEPEND="dev-embedded/arduino"
 



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

2020-08-15 Thread Sam James
commit: 12df30b424ce98ca77a1f67ef2c9037116aac0ae
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 02:48:34 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 02:52:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12df30b4

dev-python/pygobject: Stabilize 3.36.1 arm, #736727

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pygobject/pygobject-3.36.1.ebuild 
b/dev-python/pygobject/pygobject-3.36.1.ebuild
index b267b9467c7..8f9b561a573 100644
--- a/dev-python/pygobject/pygobject-3.36.1.ebuild
+++ b/dev-python/pygobject/pygobject-3.36.1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://pygobject.readthedocs.io/;
 
 LICENSE="LGPL-2.1+"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="+cairo examples test"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2020-08-15 Thread Sam James
commit: e0e9e1ea74ecab8f0f80cc77d7f7a40574730a8f
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 02:48:32 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 02:52:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0e9e1ea

dev-util/glib-utils: Stabilize 2.64.4 arm, #736727

Signed-off-by: Sam James  gentoo.org>

 dev-util/glib-utils/glib-utils-2.64.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/glib-utils/glib-utils-2.64.4.ebuild 
b/dev-util/glib-utils/glib-utils-2.64.4.ebuild
index 72d6c20869b..48ca0ea8f09 100644
--- a/dev-util/glib-utils/glib-utils-2.64.4.ebuild
+++ b/dev-util/glib-utils/glib-utils-2.64.4.ebuild
@@ -15,7 +15,7 @@ SLOT="0" # /usr/bin utilities that can't be parallel 
installed by their nature
 IUSE=""
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 
 RDEPEND="${PYTHON_DEPS}
!

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

2020-08-15 Thread Sam James
commit: 6b3f979aae44827ab7ae6be1babd7eedb2a0cad8
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 02:48:32 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 02:52:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3f979a

dev-libs/glib: Stabilize 2.64.4 arm, #736727

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-libs/glib/glib-2.64.4.ebuild b/dev-libs/glib/glib-2.64.4.ebuild
index 5252730d6ee..743457b6127 100644
--- a/dev-libs/glib/glib-2.64.4.ebuild
+++ b/dev-libs/glib/glib-2.64.4.ebuild
@@ -14,7 +14,7 @@ SLOT="2"
 IUSE="dbus debug elibc_glibc fam gtk-doc kernel_linux +mime selinux 
static-libs systemtap test utils xattr"
 RESTRICT="!test? ( test )"
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 # * libelf isn't strictly necessary, but makes gresource tool more useful, and
 # the check is automagic in gio/meson.build. gresource is not a multilib tool



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

2020-08-15 Thread Sam James
commit: 9bce5ed1f79af109104798f5b61031bcc69c2707
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 02:48:32 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 02:52:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bce5ed1

dev-libs/gobject-introspection-common: Stabilize 1.64.1 arm, #736727

Signed-off-by: Sam James  gentoo.org>

 .../gobject-introspection-common-1.64.1.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.64.1.ebuild
 
b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.64.1.ebuild
index c041ebd0fc9..efe5cc89981 100644
--- 
a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.64.1.ebuild
+++ 
b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.64.1.ebuild
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://wiki.gnome.org/Projects/GObjectIntrospection;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="!<${CATEGORY}/${GNOME_ORG_MODULE}-${PV}"



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

2020-08-15 Thread Sam James
commit: 3e08f1afa067a2deebc03f7cd4a55fdaee45f81e
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 02:48:33 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 02:52:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e08f1af

dev-libs/gobject-introspection: Stabilize 1.64.1-r1 arm, #736727

Signed-off-by: Sam James  gentoo.org>

 dev-libs/gobject-introspection/gobject-introspection-1.64.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-libs/gobject-introspection/gobject-introspection-1.64.1-r1.ebuild 
b/dev-libs/gobject-introspection/gobject-introspection-1.64.1-r1.ebuild
index 7c80ef3a73f..e46c93b2e1f 100644
--- a/dev-libs/gobject-introspection/gobject-introspection-1.64.1-r1.ebuild
+++ b/dev-libs/gobject-introspection/gobject-introspection-1.64.1-r1.ebuild
@@ -15,7 +15,7 @@ SLOT="0"
 IUSE="doctool gtk-doc test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # virtual/pkgconfig needed at runtime, bug #505408
 RDEPEND="



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

2020-08-15 Thread Sam James
commit: b9ea31e1a085ba3c169ed00589191f4d23e2f1dd
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 02:48:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 02:52:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9ea31e1

dev-util/gdbus-codegen: Stabilize 2.64.4 arm, #736727

Signed-off-by: Sam James  gentoo.org>

 dev-util/gdbus-codegen/gdbus-codegen-2.64.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.64.4.ebuild 
b/dev-util/gdbus-codegen/gdbus-codegen-2.64.4.ebuild
index a91d08414de..4033ebb783f 100644
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.64.4.ebuild
+++ b/dev-util/gdbus-codegen/gdbus-codegen-2.64.4.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://www.gtk.org/;
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}"



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

2020-08-15 Thread Sam James
commit: 1ff96f83dbbde58ff64cab2c4ea8e2d0abc56253
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 02:48:33 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 02:52:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ff96f83

net-libs/glib-networking: Stabilize 2.64.3 arm, #736727

Signed-off-by: Sam James  gentoo.org>

 net-libs/glib-networking/glib-networking-2.64.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/glib-networking/glib-networking-2.64.3.ebuild 
b/net-libs/glib-networking/glib-networking-2.64.3.ebuild
index 0378610f6d2..6db91129b7e 100644
--- a/net-libs/glib-networking/glib-networking-2.64.3.ebuild
+++ b/net-libs/glib-networking/glib-networking-2.64.3.ebuild
@@ -12,7 +12,7 @@ LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="+gnome +libproxy +ssl test"
 RESTRICT="!test? ( test )"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.64.0:2[${MULTILIB_USEDEP}]



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

2020-08-15 Thread Sam James
commit: 57f93bdddb7ea1080c78bccf89d3bc7f290dd9c7
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 02:48:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 02:52:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57f93bdd

dev-util/gtk-doc: Stabilize 1.32-r2 arm, #736727

Signed-off-by: Sam James  gentoo.org>

 dev-util/gtk-doc/gtk-doc-1.32-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/gtk-doc/gtk-doc-1.32-r2.ebuild 
b/dev-util/gtk-doc/gtk-doc-1.32-r2.ebuild
index 92da7459f7c..3106ef55ea2 100644
--- a/dev-util/gtk-doc/gtk-doc-1.32-r2.ebuild
+++ b/dev-util/gtk-doc/gtk-doc-1.32-r2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://www.gtk.org/gtk-doc/;
 
 LICENSE="GPL-2 FDL-1.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x64-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x64-solaris"
 
 IUSE="debug doc emacs"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2020-08-15 Thread Nick Sarnie
commit: 33b40369b31b55ef4c57b21aa5015974b05ea75f
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 16 02:47:10 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 16 02:49:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33b40369

app-emulation/wine-vanilla: Sync with ::wine

Bump to 5.15

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-5.15.ebuild  | 539 +
 2 files changed, 540 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 91b9211b3bd..0f4af16fef0 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -8,3 +8,4 @@ DIST wine-5.11.tar.xz 23881408 BLAKE2B 
5da8ab91dcb462f6de460ae80830d6006866970fb
 DIST wine-5.12.tar.xz 23939672 BLAKE2B 
97190653a754100fc2832f8bdc544529dc34cae97b6ae68a579dfb529af5c924d2e9b439f304784028ae84a730f3cf9911a20d132f645ab90532479092b39079
 SHA512 
1272b143d64ed6083cd797474f18dbd2bca7a38d488474ae5f054f47789b4fc1d386c7bbf8aa1bd86f9507908fc799b4f45e10e1d8c628c5bd52c42b1d74c8a8
 DIST wine-5.13.tar.xz 23955832 BLAKE2B 
79cdd8d1f34c866ae239a0b876fdb40396bb19038e1e4eb76abeb445e6a72d281b393283deffa53af3e101660317e856febd173cc5564b4ee587cd594d411434
 SHA512 
3093be3b974609f83fe2da6ca724237fa07ada260ec503fc00a8729b74d77e22b329044e411ed1e67f287c4e69ef3b16953ddb3e93599d97d3ad1b608704
 DIST wine-5.14.tar.xz 23975804 BLAKE2B 
bc14b84f4044323cd65c8c0a715a09b296bb8ecad043062513c1a584a7b542bba9934e7563bec8e2d798c27f54683db37ffc227dd4cbf8e58f6ef1931b884c14
 SHA512 
21240d832497ba9a4313613ae27c21316ef383290dfcce81aebfbbf45edb7db6981739fe2ad42138b6df0a75a434d5aa8e4d87f9745f98c5f14000e1949ec342
+DIST wine-5.15.tar.xz 23999688 BLAKE2B 
af462d9e4c9fe5e364fd474bc17b6ea61b3390428762845291271811feab13cf6ccd39c8c5847b0cc922bd273d42227d95b871dfa04cf055560a3cff65349275
 SHA512 
90baf7df915cf1ce88022a4aebe4a6975b4b0defcc043a0c6738fefb9b853e0bfbcc645c39e33cdbb20673fab5df7561ab5b55e38a4e0a68907912a80e556ae3

diff --git a/app-emulation/wine-vanilla/wine-vanilla-5.15.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-5.15.ebuild
new file mode 100644
index 000..fed13ca5bb0
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-5.15.ebuild
@@ -0,0 +1,539 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20200523"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
+   X? ( truetype )
+   elibc_glibc? ( threads )
+   osmesa? ( opengl )
+   test? ( abi_x86_32 )
+   vkd3d? ( vulkan )" # osmesa-opengl #286560 # X-truetype #551124
+
+# FIXME: the test suite is unsuitable for us; many tests require net access
+# or fail due to Xvfb's opengl limitations.
+RESTRICT="test"
+
+COMMON_DEPEND="
+   X? (
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
+   )
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
+   cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
+   faudio? 

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

2020-08-15 Thread Nick Sarnie
commit: 0ad40ade772113c1f3347c34ab52e4ae8c8a4528
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 16 02:48:03 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 16 02:49:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad40ade

app-emulation/wine-vanilla: Drop old

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 -
 .../wine-vanilla/wine-vanilla-5.11.ebuild  | 539 -
 2 files changed, 540 deletions(-)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index 0f4af16fef0..4f552eb23b7 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -4,7 +4,6 @@ DIST gentoo-wine-patches-20200523.tar.xz 59740 BLAKE2B 
951d7f305a6e5b3759c809562
 DIST wine-4.0.3.tar.xz 21680420 BLAKE2B 
a7caf4b82fa2594f77e31f29b2a3da59c08bb58f213268d61bdf48998345162bc36fbfc24db94d11cb07b6da347b3471e9d8976d9abfa0f76c183c0a519aa73e
 SHA512 
a8fde0bcf600eaec56c3ce58c9aa992386784c85cf1c93aa84d50aff4c842b12a6b099c23391d3ad9a0059f3dc9069c0f8e00fad293305ba8a33afc70bf26e14
 DIST wine-5.0.1.tar.xz 22476496 BLAKE2B 
8fd7729812c0144b6c9ec7f28ecc25bca5bc7801d9927346928f43fc46ca0be89ecb4caefb7a93cf2f3365e088d11e6bd53a028ea8cc9e170ef864ff63f21a5a
 SHA512 
d9756f0a74417ea9e05d08a94ff29b83ebff3db3a3cbaa90979d5312754371ddfcab6bded73a246ef980252b908d8a26e93de2779b766c4bff92c91f8c315d98
 DIST wine-5.0.2.tar.xz 22484932 BLAKE2B 
93253a86605b32dc8f7c79a16336643e6f84937094f8c96ea336289c2076a4d9f759fc1ad128f7b1a009da5eb2ed25cdc893da99e338093608bf5fc0ef1a85fc
 SHA512 
9ff902ff929d9ac8c81843eea141c96446d26b14f70781a40a3ea1fdef5f412ca4c87374a5a3af9b42b52236159645e55d6e54f8b06178a4d210a72fb1d5358e
-DIST wine-5.11.tar.xz 23881408 BLAKE2B 
5da8ab91dcb462f6de460ae80830d6006866970fbc4a23bbd6a2243736ff004c0734282b45196d46e97bb8383c99b415c85f941b2ab613c72ae66995e0162460
 SHA512 
fac78a98e03e0305c85fff393b7c5d46a3fbe11aff4a0153771187d3ad0212189d1fa88947fc9fe0da7bd8327eb71283f28ff866c4d8b2bc759a2ad2197fc9a1
 DIST wine-5.12.tar.xz 23939672 BLAKE2B 
97190653a754100fc2832f8bdc544529dc34cae97b6ae68a579dfb529af5c924d2e9b439f304784028ae84a730f3cf9911a20d132f645ab90532479092b39079
 SHA512 
1272b143d64ed6083cd797474f18dbd2bca7a38d488474ae5f054f47789b4fc1d386c7bbf8aa1bd86f9507908fc799b4f45e10e1d8c628c5bd52c42b1d74c8a8
 DIST wine-5.13.tar.xz 23955832 BLAKE2B 
79cdd8d1f34c866ae239a0b876fdb40396bb19038e1e4eb76abeb445e6a72d281b393283deffa53af3e101660317e856febd173cc5564b4ee587cd594d411434
 SHA512 
3093be3b974609f83fe2da6ca724237fa07ada260ec503fc00a8729b74d77e22b329044e411ed1e67f287c4e69ef3b16953ddb3e93599d97d3ad1b608704
 DIST wine-5.14.tar.xz 23975804 BLAKE2B 
bc14b84f4044323cd65c8c0a715a09b296bb8ecad043062513c1a584a7b542bba9934e7563bec8e2d798c27f54683db37ffc227dd4cbf8e58f6ef1931b884c14
 SHA512 
21240d832497ba9a4313613ae27c21316ef383290dfcce81aebfbbf45edb7db6981739fe2ad42138b6df0a75a434d5aa8e4d87f9745f98c5f14000e1949ec342

diff --git a/app-emulation/wine-vanilla/wine-vanilla-5.11.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-5.11.ebuild
deleted file mode 100644
index fed13ca5bb0..000
--- a/app-emulation/wine-vanilla/wine-vanilla-5.11.ebuild
+++ /dev/null
@@ -1,539 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
-PLOCALE_BACKUP="en"
-
-inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
-
-MY_PN="${PN%%-*}"
-MY_P="${MY_PN}-${PV}"
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
-   EGIT_BRANCH="master"
-   inherit git-r3
-   SRC_URI=""
-   #KEYWORDS=""
-else
-   MAJOR_V=$(ver_cut 1)
-   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
-   KEYWORDS="-* ~amd64 ~x86"
-fi
-S="${WORKDIR}/${MY_P}"
-
-GWP_V="20200523"
-PATCHDIR="${WORKDIR}/gentoo-wine-patches"
-
-DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
-HOMEPAGE="https://www.winehq.org/;
-SRC_URI="${SRC_URI}
-   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
-"
-
-LICENSE="LGPL-2.1"
-SLOT="${PV}"
-IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"

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

2020-08-15 Thread Nick Sarnie
commit: 50ed535bb4e130ae3487056d4bda836b24b91924
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 16 02:49:02 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 16 02:49:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ed535b

app-emulation/wine-staging: Drop old

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 -
 .../wine-staging/wine-staging-5.11.ebuild  | 621 -
 2 files changed, 623 deletions(-)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index 0c59094b4bb..0ebfaa270f1 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -1,11 +1,9 @@
 DIST gentoo-wine-patches-20200523.tar.xz 59740 BLAKE2B 
951d7f305a6e5b3759c8095629d48de4830b8a0c9558de859a9e02d9824fe85553fda2bc0820ca97022a0ca63ac28473dadfe827821220445dbf1a7fd15c7c98
 SHA512 
46eea45c982b475e3ff444cbd87c6a0a235fc8dcaf3d83d89655a10ed8841a9ddb09e5a638a05803f3bf2c3bd34165c16067aba561efa4c183ee396dc31cdf75
-DIST wine-5.11.tar.xz 23881408 BLAKE2B 
5da8ab91dcb462f6de460ae80830d6006866970fbc4a23bbd6a2243736ff004c0734282b45196d46e97bb8383c99b415c85f941b2ab613c72ae66995e0162460
 SHA512 
fac78a98e03e0305c85fff393b7c5d46a3fbe11aff4a0153771187d3ad0212189d1fa88947fc9fe0da7bd8327eb71283f28ff866c4d8b2bc759a2ad2197fc9a1
 DIST wine-5.12.tar.xz 23939672 BLAKE2B 
97190653a754100fc2832f8bdc544529dc34cae97b6ae68a579dfb529af5c924d2e9b439f304784028ae84a730f3cf9911a20d132f645ab90532479092b39079
 SHA512 
1272b143d64ed6083cd797474f18dbd2bca7a38d488474ae5f054f47789b4fc1d386c7bbf8aa1bd86f9507908fc799b4f45e10e1d8c628c5bd52c42b1d74c8a8
 DIST wine-5.13.tar.xz 23955832 BLAKE2B 
79cdd8d1f34c866ae239a0b876fdb40396bb19038e1e4eb76abeb445e6a72d281b393283deffa53af3e101660317e856febd173cc5564b4ee587cd594d411434
 SHA512 
3093be3b974609f83fe2da6ca724237fa07ada260ec503fc00a8729b74d77e22b329044e411ed1e67f287c4e69ef3b16953ddb3e93599d97d3ad1b608704
 DIST wine-5.14.tar.xz 23975804 BLAKE2B 
bc14b84f4044323cd65c8c0a715a09b296bb8ecad043062513c1a584a7b542bba9934e7563bec8e2d798c27f54683db37ffc227dd4cbf8e58f6ef1931b884c14
 SHA512 
21240d832497ba9a4313613ae27c21316ef383290dfcce81aebfbbf45edb7db6981739fe2ad42138b6df0a75a434d5aa8e4d87f9745f98c5f14000e1949ec342
 DIST wine-5.15.tar.xz 23999688 BLAKE2B 
af462d9e4c9fe5e364fd474bc17b6ea61b3390428762845291271811feab13cf6ccd39c8c5847b0cc922bd273d42227d95b871dfa04cf055560a3cff65349275
 SHA512 
90baf7df915cf1ce88022a4aebe4a6975b4b0defcc043a0c6738fefb9b853e0bfbcc645c39e33cdbb20673fab5df7561ab5b55e38a4e0a68907912a80e556ae3
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
-DIST wine-staging-5.11.tar.gz 9859071 BLAKE2B 
ae8abb4b48291864ce6ea80300186da77f422da1790bc1a3fb697719fc1bce0f1b1fd41962fc104bf9792f1ac46d99181a1437f52d290e526671b7d5ac43ea75
 SHA512 
a5cff848077f937d8f910d6f8b4efc033435c99bc6eeb8cf2a39e812b09c9fad5602e91e761eb1a006a1487299f7d81ecf7597d104fcafd076a8692e086af1a5
 DIST wine-staging-5.13.tar.gz 9807468 BLAKE2B 
17fea3955affd66082d9cf3d72529b55107fedd86aa7b02c9947f92255042fdab46da2a642977d89a18e05608f7eb7fa1f3ef07df2d52bff450c924bcd30c4d8
 SHA512 
9bdda76524ea97c9847182d912544a2ecd5efddc03511af151c054d6cce933e40c8cf10722d34d8875115aed7c183fdce3e00f481c31116fd33d91304c6d
 DIST wine-staging-5.14.tar.gz 9780843 BLAKE2B 
03b964fd8b71a8a9e54f53074e4be82dd633a6489cdc30bade6e844e458ca43437bbd34c1a629fd0c1090173e37379a048be45561172bfff8e003daaf4104583
 SHA512 
da81b572480a6fc12aa39a93070e2b88593bba1463d5b0545083dbd6eaa306ec57fe39e77f24544d2a1a396a3e64c1687c12b69e0643e11a909e4e31a3e46014
 DIST wine-staging-5.15.tar.gz 9840101 BLAKE2B 
1230f50806833d25125099e204032342806efee636a541b1a246039830042aef6bb4393c07691a417c131836c80973573a9e45fc71c08fc99543038892c7be89
 SHA512 
fe5a7a5d50a8e937658891c1e172c83083e1ccd8d97dffdf858396c83dc5de7334a3752bdbe941f4ceceb17e2e6b2b58a3ba053298fc79818d58439af63dc692

diff --git a/app-emulation/wine-staging/wine-staging-5.11.ebuild 
b/app-emulation/wine-staging/wine-staging-5.11.ebuild
deleted file mode 100644
index 674958ea886..000
--- a/app-emulation/wine-staging/wine-staging-5.11.ebuild
+++ /dev/null
@@ -1,621 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
-PLOCALE_BACKUP="en"
-
-inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib 

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

2020-08-15 Thread Nick Sarnie
commit: dde4e0d845f124dbcfbba039b991ada5e9e9fec4
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 16 02:48:39 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 16 02:49:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dde4e0d8

app-emulation/wine-staging: Sync with ::wine

Bump to 5.15

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-5.15.ebuild  | 621 +
 2 files changed, 623 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index e07cbcab239..0c59094b4bb 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -3,7 +3,9 @@ DIST wine-5.11.tar.xz 23881408 BLAKE2B 
5da8ab91dcb462f6de460ae80830d6006866970fb
 DIST wine-5.12.tar.xz 23939672 BLAKE2B 
97190653a754100fc2832f8bdc544529dc34cae97b6ae68a579dfb529af5c924d2e9b439f304784028ae84a730f3cf9911a20d132f645ab90532479092b39079
 SHA512 
1272b143d64ed6083cd797474f18dbd2bca7a38d488474ae5f054f47789b4fc1d386c7bbf8aa1bd86f9507908fc799b4f45e10e1d8c628c5bd52c42b1d74c8a8
 DIST wine-5.13.tar.xz 23955832 BLAKE2B 
79cdd8d1f34c866ae239a0b876fdb40396bb19038e1e4eb76abeb445e6a72d281b393283deffa53af3e101660317e856febd173cc5564b4ee587cd594d411434
 SHA512 
3093be3b974609f83fe2da6ca724237fa07ada260ec503fc00a8729b74d77e22b329044e411ed1e67f287c4e69ef3b16953ddb3e93599d97d3ad1b608704
 DIST wine-5.14.tar.xz 23975804 BLAKE2B 
bc14b84f4044323cd65c8c0a715a09b296bb8ecad043062513c1a584a7b542bba9934e7563bec8e2d798c27f54683db37ffc227dd4cbf8e58f6ef1931b884c14
 SHA512 
21240d832497ba9a4313613ae27c21316ef383290dfcce81aebfbbf45edb7db6981739fe2ad42138b6df0a75a434d5aa8e4d87f9745f98c5f14000e1949ec342
+DIST wine-5.15.tar.xz 23999688 BLAKE2B 
af462d9e4c9fe5e364fd474bc17b6ea61b3390428762845291271811feab13cf6ccd39c8c5847b0cc922bd273d42227d95b871dfa04cf055560a3cff65349275
 SHA512 
90baf7df915cf1ce88022a4aebe4a6975b4b0defcc043a0c6738fefb9b853e0bfbcc645c39e33cdbb20673fab5df7561ab5b55e38a4e0a68907912a80e556ae3
 DIST wine-staging-3f3a05f91c85cb5ccdc4c8185bcc862c6e96cd52.tar.gz 9835238 
BLAKE2B 
27c0e7fe418e7ee82c7b1cfc13c0c1508a7f4637ef7b8d64675ed4038a42961382170c064221a7bad70a4e168aef7d4e33974d06afc18fc6da4cf5db047b242e
 SHA512 
b2ad84bed89e713f4dc4f01763c40dc785f39f180a8f926c1b9e944a581ffcfd5c422427314201df1359b4b1c27dc2261281353f44ae9408e800d6add7bde366
 DIST wine-staging-5.11.tar.gz 9859071 BLAKE2B 
ae8abb4b48291864ce6ea80300186da77f422da1790bc1a3fb697719fc1bce0f1b1fd41962fc104bf9792f1ac46d99181a1437f52d290e526671b7d5ac43ea75
 SHA512 
a5cff848077f937d8f910d6f8b4efc033435c99bc6eeb8cf2a39e812b09c9fad5602e91e761eb1a006a1487299f7d81ecf7597d104fcafd076a8692e086af1a5
 DIST wine-staging-5.13.tar.gz 9807468 BLAKE2B 
17fea3955affd66082d9cf3d72529b55107fedd86aa7b02c9947f92255042fdab46da2a642977d89a18e05608f7eb7fa1f3ef07df2d52bff450c924bcd30c4d8
 SHA512 
9bdda76524ea97c9847182d912544a2ecd5efddc03511af151c054d6cce933e40c8cf10722d34d8875115aed7c183fdce3e00f481c31116fd33d91304c6d
 DIST wine-staging-5.14.tar.gz 9780843 BLAKE2B 
03b964fd8b71a8a9e54f53074e4be82dd633a6489cdc30bade6e844e458ca43437bbd34c1a629fd0c1090173e37379a048be45561172bfff8e003daaf4104583
 SHA512 
da81b572480a6fc12aa39a93070e2b88593bba1463d5b0545083dbd6eaa306ec57fe39e77f24544d2a1a396a3e64c1687c12b69e0643e11a909e4e31a3e46014
+DIST wine-staging-5.15.tar.gz 9840101 BLAKE2B 
1230f50806833d25125099e204032342806efee636a541b1a246039830042aef6bb4393c07691a417c131836c80973573a9e45fc71c08fc99543038892c7be89
 SHA512 
fe5a7a5d50a8e937658891c1e172c83083e1ccd8d97dffdf858396c83dc5de7334a3752bdbe941f4ceceb17e2e6b2b58a3ba053298fc79818d58439af63dc692

diff --git a/app-emulation/wine-staging/wine-staging-5.15.ebuild 
b/app-emulation/wine-staging/wine-staging-5.15.ebuild
new file mode 100644
index 000..674958ea886
--- /dev/null
+++ b/app-emulation/wine-staging/wine-staging-5.15.ebuild
@@ -0,0 +1,621 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+STAGING_P="wine-staging-${PV}"
+STAGING_DIR="${WORKDIR}/${STAGING_P}"

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

2020-08-15 Thread Sam James
commit: 177f95a6f6c6235ed3586785adb6b25a616c204d
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 01:49:23 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 01:49:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=177f95a6

sys-kernel/gentoo-kernel-bin: force re-fetch for arm64

Apologies for the inconvenience. We need to do this just
for these two versions (5.4.56, 5.7.15) to force a redownload
because of (missing) compression in the original binpkgs.

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 sys-kernel/gentoo-kernel-bin/Manifest   |  4 ++--
 .../gentoo-kernel-bin/gentoo-kernel-bin-5.4.58.ebuild   | 11 +--
 .../gentoo-kernel-bin/gentoo-kernel-bin-5.7.15.ebuild   | 13 +++--
 3 files changed, 22 insertions(+), 6 deletions(-)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 880bac65b43..395a5ffaa0d 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -9,7 +9,7 @@ DIST gentoo-kernel-5.4.55-1.x86.xpak 53203656 BLAKE2B 
4f7a52537a3f2578eeb4275cc2
 DIST gentoo-kernel-5.4.56-1.amd64.xpak 61920923 BLAKE2B 
fabc9003e395bf78d3d4541440787e034d945bc63dd2c4e97f805509a170f32ce2e594f89a343a47d1561b31f40b32c407177060afebe0d189b25aa3efcfd967
 SHA512 
5e27736110c1eaffc37da70f5e30120e8869f768155d7a1de0a731ef1a1822d8d491f1de64849cdafdb6c43b5db289416d7746784f69f7ee0622fd1ad9347e55
 DIST gentoo-kernel-5.4.56-1.x86.xpak 53199861 BLAKE2B 
c0ac8804b81ef6db8ce4d459f5ffdaecedefb3a5bad61391b55915c22a0394cf1f838c063430ed7c384088199960ce0d187819adb00f06719f71539c98fce14d
 SHA512 
8953c187020e4a9995ca148395f789df276c86e6e35b5a2876d2ede3f1123f2310d4644e69ab160c7605ecbfa51c8996b246cc27b9be9c5c8b2bf4d507838d86
 DIST gentoo-kernel-5.4.58-1.amd64.xpak 61957732 BLAKE2B 
543ecd10e5387bd8d58c02a03a4d1a80fcc56d4fc8c4c010a9ae51aa688fa77acb28468c96786f894607d242e50981df10ccdecb8023f60b5007267c7bb3ca29
 SHA512 
bbe7d8d9362c3e73759c1180dbff7fc574511def3beaab5c211b41d262763f26fc9c3dd237a606425f572d38eec4d2eb6c01ea7053c3a8350a406ac03aed2681
-DIST gentoo-kernel-5.4.58-1.arm64.xpak 71010054 BLAKE2B 
a7d7f4805a210d703cf3f8ffe136860a324b9693d0ad3ee808750d6d1ab1229211dd260d046bf8cd333f9596e3f915d3ee16f4adecf6712a9b4cdc985486688c
 SHA512 
e0fc7820446d937500843f76afe25a6c0fc8795ee4a3220cd5b8093e7c0c3a4b6676e87b88b1c48688576f1fefbdbefee0715d96f28d70f8afbf025329d3af15
+DIST gentoo-kernel-5.4.58-1.arm64.1.xpak 57890920 BLAKE2B 
a7d7f4805a210d703cf3f8ffe136860a324b9693d0ad3ee808750d6d1ab1229211dd260d046bf8cd333f9596e3f915d3ee16f4adecf6712a9b4cdc985486688c
 SHA512 
e0fc7820446d937500843f76afe25a6c0fc8795ee4a3220cd5b8093e7c0c3a4b6676e87b88b1c48688576f1fefbdbefee0715d96f28d70f8afbf025329d3af15
 DIST gentoo-kernel-5.4.58-1.x86.xpak 53199773 BLAKE2B 
b92017090e1aecb1b5775c48b826ce15629e12e66d9ee3bec38638a6cd71a35fa3270678a20c1876a959d9bd309187fa6183ebac10941d2c0d044fc1abf643eb
 SHA512 
2d67d6ab8b15c11d5aae20f3cef6f7a1abb09daaea3d85130d94ebf84dccf39cc26f296aff8bfec69863b092c82f5f2ad976e2be5e83686997004c99f41fa560
 DIST gentoo-kernel-5.7.10-1.amd64.xpak 62959097 BLAKE2B 
7d10cd9af73be952e521afd696ecc9cac69e855284997ffc48cfb374ef45e379be721d6d71db6e81911c797597cea54dbca92c64aa1b774be89d6d9c8d64452b
 SHA512 
34db8816fe6f2d125cd737eee207fb16c75ed061837b8e3d67b4aa8887942aa727869a725018bddf9b6b1928d3a0e093a0f441f7c49dc17e46364c523a56135f
 DIST gentoo-kernel-5.7.10-1.x86.xpak 54968846 BLAKE2B 
e33923959281e22b40ca5205097938671aae0967e9a32a5c63628f2ef285b10cb0672ae2a59cbf641fea2521dab439a163e0c624ffb4788b0a8bf333db5efa73
 SHA512 
728d3eeb66c9bc8940cc3d745055d66c368c9bd7f133f903087b09655fd441a47ff75b48d6b2887a2d0be607de3a361c12dc8f5fb1ee58e74dcfa916dfa1f667
@@ -19,7 +19,7 @@ DIST gentoo-kernel-5.7.13-1.amd64.xpak 63493547 BLAKE2B 
38955ee76d650a19f36eb0bd
 DIST gentoo-kernel-5.7.13-1.arm64.xpak 74486569 BLAKE2B 
6fbf270cb0783db1e553d66744d9af9d23679b57e5a7004e386385c7f2dc9fe42b0a37e9f38e746c8a8690bba071229fa44295330428901ee9afb2f0412291fa
 SHA512 
258d1e6d1019043f4aec1b5e8f5d1887c55b76c8334396f606c53d7e63cffa0f7f17360a0d7a7f08dae01f54af451c246375f0295bf18fc34cfa936925e3e99f
 DIST gentoo-kernel-5.7.13-1.x86.xpak 54964807 BLAKE2B 
15760458eae84df260af1b6657ce0e446442c99ca7400cd9cdc3045cebf430f7a3ea1805b3b2859af9e4836f4240e4e4e0f300e6ab2e3c477dab5a9feaa17354
 SHA512 
db666dec94178b4bffe1ee72efdd1b74041b35917d2e2367936cc076cffa832caa8c1a7a5398f49dfb108e60aea3527abdd4d9c8ef2b332b0415ca1e24a2
 DIST gentoo-kernel-5.7.15-1.amd64.xpak 63458161 BLAKE2B 
794d5c3d143c623cd6d5446537a499e6a7902f779eee77e87358e64f18f0f6b8586c382143260cc528e749a8c269b81eb1e5eb9e05cab980827177b9e3ee665b
 SHA512 
713fed1045e158e0faae283419d771f94270acdf91d89a8602e153ddd9199ed42ece0b112c31abb1640952baef089186600fc9d590a3f2f49577542e8b8b2f29
-DIST gentoo-kernel-5.7.15-1.arm64.xpak 74813009 BLAKE2B 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2020-08-15 Thread Nick Sarnie
commit: c49da2ebb370156791200d362035a99a11573ee8
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 16 02:44:02 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 16 02:44:02 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=c49da2eb

app-emulation/wine-vanilla: Bump to 5.15

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/Manifest|   1 +
 .../wine-vanilla/wine-vanilla-5.15.ebuild  | 539 +
 2 files changed, 540 insertions(+)

diff --git a/app-emulation/wine-vanilla/Manifest 
b/app-emulation/wine-vanilla/Manifest
index f33a5c2..0c6f006 100644
--- a/app-emulation/wine-vanilla/Manifest
+++ b/app-emulation/wine-vanilla/Manifest
@@ -37,6 +37,7 @@ DIST wine-5.11.tar.xz 23881408 BLAKE2B 
5da8ab91dcb462f6de460ae80830d6006866970fb
 DIST wine-5.12.tar.xz 23939672 BLAKE2B 
97190653a754100fc2832f8bdc544529dc34cae97b6ae68a579dfb529af5c924d2e9b439f304784028ae84a730f3cf9911a20d132f645ab90532479092b39079
 SHA512 
1272b143d64ed6083cd797474f18dbd2bca7a38d488474ae5f054f47789b4fc1d386c7bbf8aa1bd86f9507908fc799b4f45e10e1d8c628c5bd52c42b1d74c8a8
 DIST wine-5.13.tar.xz 23955832 BLAKE2B 
79cdd8d1f34c866ae239a0b876fdb40396bb19038e1e4eb76abeb445e6a72d281b393283deffa53af3e101660317e856febd173cc5564b4ee587cd594d411434
 SHA512 
3093be3b974609f83fe2da6ca724237fa07ada260ec503fc00a8729b74d77e22b329044e411ed1e67f287c4e69ef3b16953ddb3e93599d97d3ad1b608704
 DIST wine-5.14.tar.xz 23975804 BLAKE2B 
bc14b84f4044323cd65c8c0a715a09b296bb8ecad043062513c1a584a7b542bba9934e7563bec8e2d798c27f54683db37ffc227dd4cbf8e58f6ef1931b884c14
 SHA512 
21240d832497ba9a4313613ae27c21316ef383290dfcce81aebfbbf45edb7db6981739fe2ad42138b6df0a75a434d5aa8e4d87f9745f98c5f14000e1949ec342
+DIST wine-5.15.tar.xz 23999688 BLAKE2B 
af462d9e4c9fe5e364fd474bc17b6ea61b3390428762845291271811feab13cf6ccd39c8c5847b0cc922bd273d42227d95b871dfa04cf055560a3cff65349275
 SHA512 
90baf7df915cf1ce88022a4aebe4a6975b4b0defcc043a0c6738fefb9b853e0bfbcc645c39e33cdbb20673fab5df7561ab5b55e38a4e0a68907912a80e556ae3
 DIST wine-5.2.tar.xz 22837712 BLAKE2B 
ee9d4d4dd6c0669d1585cc6988d933dbc7aa5277a0f13e965dd9eecb621e475d33a832b316e37f1372a965efe517efafa9f857a38d9bf081026d221db96b7a0d
 SHA512 
57fa66885c3b5f43e51324e24b8524f663ad67ff15b464ac7d58096d5921f523a59ef5f1dc1ea7aa65fa10d64b7cd832f421c1b773c72bc312d8544a61c33f8f
 DIST wine-5.3.tar.xz 22918612 BLAKE2B 
dce58aec45f665e1014635eadc9cc00c969e46c87de5d41bc51168237d9fc01011dcfc3fa4c83ed4cbcdfe19a3747e5e32f87946434a6eba2a8547f1929b33f3
 SHA512 
40528f46ad10c11758308e3bf21ba73c7af133d4dda386d542acec3a5cb31e01be0eb102b94f9d82a2358e45597bf49bd1e82c463e3a26aff8c0827b5a0894b6
 DIST wine-5.4.tar.xz 22917904 BLAKE2B 
ceaa8516ddc0c2421b92da0ef047465cfa9fc203dfce93b42ca76409bab5e24709d173a4ed519b78f32d8ee99ffd9f0d06ee4156357f995c75e434b0249a31e2
 SHA512 
892e8b875484ada01eaddab4ea50992f95cf3ced6730f8e2ca1f0765770d7fa53a21080c526772b9b3ac83b3559d3d68e83ad3af3afbe9d6f931d833afde7e98

diff --git a/app-emulation/wine-vanilla/wine-vanilla-5.15.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-5.15.ebuild
new file mode 100644
index 000..fed13ca
--- /dev/null
+++ b/app-emulation/wine-vanilla/wine-vanilla-5.15.ebuild
@@ -0,0 +1,539 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar ast bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja 
ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru si sk sl sr_RS@cyrillic 
sr_RS@latin sv ta te th tr uk wa zh_CN zh_TW"
+PLOCALE_BACKUP="en"
+
+inherit autotools eapi7-ver estack eutils flag-o-matic gnome2-utils l10n 
multilib multilib-minimal pax-utils toolchain-funcs virtualx xdg-utils
+
+MY_PN="${PN%%-*}"
+MY_P="${MY_PN}-${PV}"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   #KEYWORDS=""
+else
+   MAJOR_V=$(ver_cut 1)
+   SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz;
+   KEYWORDS="-* ~amd64 ~x86"
+fi
+S="${WORKDIR}/${MY_P}"
+
+GWP_V="20200523"
+PATCHDIR="${WORKDIR}/gentoo-wine-patches"
+
+DESCRIPTION="Free implementation of Windows(tm) on Unix, without external 
patchsets"
+HOMEPAGE="https://www.winehq.org/;
+SRC_URI="${SRC_URI}
+   
https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
+"
+
+LICENSE="LGPL-2.1"
+SLOT="${PV}"
+IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc 
+faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos 
kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl 
+opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba 
scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind v4l vkd3d 
vulkan +X +xcomposite xinerama +xml"
+REQUIRED_USE="|| ( 

[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2020-08-15 Thread Nick Sarnie
commit: 7dc6091a83ba49d579719629a10fc5c2dbc2232d
Author: Nick Sarnie  gentoo  org>
AuthorDate: Sun Aug 16 02:45:11 2020 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Sun Aug 16 02:45:11 2020 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=7dc6091a

app-emulation/wine-staging: Bump to 5.15

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/Manifest|   2 +
 .../wine-staging/wine-staging-5.15.ebuild  | 621 +
 2 files changed, 623 insertions(+)

diff --git a/app-emulation/wine-staging/Manifest 
b/app-emulation/wine-staging/Manifest
index d4bd438..f673f26 100644
--- a/app-emulation/wine-staging/Manifest
+++ b/app-emulation/wine-staging/Manifest
@@ -33,6 +33,7 @@ DIST wine-5.11.tar.xz 23881408 BLAKE2B 
5da8ab91dcb462f6de460ae80830d6006866970fb
 DIST wine-5.12.tar.xz 23939672 BLAKE2B 
97190653a754100fc2832f8bdc544529dc34cae97b6ae68a579dfb529af5c924d2e9b439f304784028ae84a730f3cf9911a20d132f645ab90532479092b39079
 SHA512 
1272b143d64ed6083cd797474f18dbd2bca7a38d488474ae5f054f47789b4fc1d386c7bbf8aa1bd86f9507908fc799b4f45e10e1d8c628c5bd52c42b1d74c8a8
 DIST wine-5.13.tar.xz 23955832 BLAKE2B 
79cdd8d1f34c866ae239a0b876fdb40396bb19038e1e4eb76abeb445e6a72d281b393283deffa53af3e101660317e856febd173cc5564b4ee587cd594d411434
 SHA512 
3093be3b974609f83fe2da6ca724237fa07ada260ec503fc00a8729b74d77e22b329044e411ed1e67f287c4e69ef3b16953ddb3e93599d97d3ad1b608704
 DIST wine-5.14.tar.xz 23975804 BLAKE2B 
bc14b84f4044323cd65c8c0a715a09b296bb8ecad043062513c1a584a7b542bba9934e7563bec8e2d798c27f54683db37ffc227dd4cbf8e58f6ef1931b884c14
 SHA512 
21240d832497ba9a4313613ae27c21316ef383290dfcce81aebfbbf45edb7db6981739fe2ad42138b6df0a75a434d5aa8e4d87f9745f98c5f14000e1949ec342
+DIST wine-5.15.tar.xz 23999688 BLAKE2B 
af462d9e4c9fe5e364fd474bc17b6ea61b3390428762845291271811feab13cf6ccd39c8c5847b0cc922bd273d42227d95b871dfa04cf055560a3cff65349275
 SHA512 
90baf7df915cf1ce88022a4aebe4a6975b4b0defcc043a0c6738fefb9b853e0bfbcc645c39e33cdbb20673fab5df7561ab5b55e38a4e0a68907912a80e556ae3
 DIST wine-5.2.tar.xz 22837712 BLAKE2B 
ee9d4d4dd6c0669d1585cc6988d933dbc7aa5277a0f13e965dd9eecb621e475d33a832b316e37f1372a965efe517efafa9f857a38d9bf081026d221db96b7a0d
 SHA512 
57fa66885c3b5f43e51324e24b8524f663ad67ff15b464ac7d58096d5921f523a59ef5f1dc1ea7aa65fa10d64b7cd832f421c1b773c72bc312d8544a61c33f8f
 DIST wine-5.3.tar.xz 22918612 BLAKE2B 
dce58aec45f665e1014635eadc9cc00c969e46c87de5d41bc51168237d9fc01011dcfc3fa4c83ed4cbcdfe19a3747e5e32f87946434a6eba2a8547f1929b33f3
 SHA512 
40528f46ad10c11758308e3bf21ba73c7af133d4dda386d542acec3a5cb31e01be0eb102b94f9d82a2358e45597bf49bd1e82c463e3a26aff8c0827b5a0894b6
 DIST wine-5.4.tar.xz 22917904 BLAKE2B 
ceaa8516ddc0c2421b92da0ef047465cfa9fc203dfce93b42ca76409bab5e24709d173a4ed519b78f32d8ee99ffd9f0d06ee4156357f995c75e434b0249a31e2
 SHA512 
892e8b875484ada01eaddab4ea50992f95cf3ced6730f8e2ca1f0765770d7fa53a21080c526772b9b3ac83b3559d3d68e83ad3af3afbe9d6f931d833afde7e98
@@ -70,6 +71,7 @@ DIST wine-staging-5.10-r1.tar.gz 9862728 BLAKE2B 
4d70b0e4d71b4e06a57f9fa43a8d4c9
 DIST wine-staging-5.11.tar.gz 9859071 BLAKE2B 
ae8abb4b48291864ce6ea80300186da77f422da1790bc1a3fb697719fc1bce0f1b1fd41962fc104bf9792f1ac46d99181a1437f52d290e526671b7d5ac43ea75
 SHA512 
a5cff848077f937d8f910d6f8b4efc033435c99bc6eeb8cf2a39e812b09c9fad5602e91e761eb1a006a1487299f7d81ecf7597d104fcafd076a8692e086af1a5
 DIST wine-staging-5.13.tar.gz 9807468 BLAKE2B 
17fea3955affd66082d9cf3d72529b55107fedd86aa7b02c9947f92255042fdab46da2a642977d89a18e05608f7eb7fa1f3ef07df2d52bff450c924bcd30c4d8
 SHA512 
9bdda76524ea97c9847182d912544a2ecd5efddc03511af151c054d6cce933e40c8cf10722d34d8875115aed7c183fdce3e00f481c31116fd33d91304c6d
 DIST wine-staging-5.14.tar.gz 9780843 BLAKE2B 
03b964fd8b71a8a9e54f53074e4be82dd633a6489cdc30bade6e844e458ca43437bbd34c1a629fd0c1090173e37379a048be45561172bfff8e003daaf4104583
 SHA512 
da81b572480a6fc12aa39a93070e2b88593bba1463d5b0545083dbd6eaa306ec57fe39e77f24544d2a1a396a3e64c1687c12b69e0643e11a909e4e31a3e46014
+DIST wine-staging-5.15.tar.gz 9840101 BLAKE2B 
1230f50806833d25125099e204032342806efee636a541b1a246039830042aef6bb4393c07691a417c131836c80973573a9e45fc71c08fc99543038892c7be89
 SHA512 
fe5a7a5d50a8e937658891c1e172c83083e1ccd8d97dffdf858396c83dc5de7334a3752bdbe941f4ceceb17e2e6b2b58a3ba053298fc79818d58439af63dc692
 DIST wine-staging-5.2.tar.gz 9898002 BLAKE2B 
f4dc43223cf89e6c76fc7898a98acdc9eb3d4a8e8279a38135f155d9a3fe6a2f7bbc52ece5c4a07cf801caa91c10e40f172271b442356e52a59c31a8a82db3c3
 SHA512 
dd2066db1eb4d424579bdf8d25f476eae0b86a6bea7b1f7ff2a21d7bf0209b4ef00d9c0ed29a7cab50c5dea4684acb5d342ebf02554b16fd0938a03e607f6270
 DIST wine-staging-5.3.tar.gz 9904213 BLAKE2B 
5a1a9b41a17533238151ad87ec631a9ff78f954fa51baaebac787bd4eba88730a3524e4778a55eb80fd4153302d443d859c0b27c149495cd72ab6263aa583a8a
 SHA512 

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

2020-08-15 Thread Matt Turner
commit: e09bbfaf74805ea6cf8038a13614c01373fd3cb0
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Aug 16 02:19:36 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Aug 16 02:19:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e09bbfaf

sys-auth/sssd: Add base-system@ as primary maintainer

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

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

diff --git a/sys-auth/sssd/metadata.xml b/sys-auth/sssd/metadata.xml
index c338ad161f5..1d06433dd89 100644
--- a/sys-auth/sssd/metadata.xml
+++ b/sys-auth/sssd/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   base-sys...@gentoo.org
+   Gentoo Base System
+   

ale...@gentoo.org
Alexey Shvetsov



[gentoo-commits] repo/proj/matrix:master commit in: net-im/spectral/

2020-08-15 Thread Stefan Strogin
commit: 91a224d08df3d24e01adda46360f49d782f7dfda
Author: Stefan Strogin  gentoo  org>
AuthorDate: Sun Aug 16 02:13:24 2020 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Sun Aug 16 02:14:35 2020 +
URL:https://gitweb.gentoo.org/repo/proj/matrix.git/commit/?id=91a224d0

net-im/spectral: add missing dep

Closes: https://gitlab.com/steils/matrix-overlay/issues/5
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Stefan Strogin  gentoo.org>

 net-im/spectral/metadata.xml | 5 +
 net-im/spectral/spectral-.ebuild | 7 ---
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/net-im/spectral/metadata.xml b/net-im/spectral/metadata.xml
new file mode 100644
index 000..7a38bb9
--- /dev/null
+++ b/net-im/spectral/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+

diff --git a/net-im/spectral/spectral-.ebuild 
b/net-im/spectral/spectral-.ebuild
index b15d66a..a2738f7 100644
--- a/net-im/spectral/spectral-.ebuild
+++ b/net-im/spectral/spectral-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://gitlab.com/b0/spectral.git;
EGIT_SUBMODULES=("include/SortFilterProxyModel")
 else
-   SRC_URI="https://gitlab.com/b0/spectral/-/archive/${PV}/${PN}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI="https://gitlab.com/b0/spectral/-/archive/${PV}/${PN}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
 fi
 
@@ -23,7 +23,8 @@ LICENSE="GPL-3"
 SLOT="0"
 IUSE=""
 
-RDEPEND="dev-qt/qtgui
+RDEPEND="app-text/cmark
+   dev-qt/qtgui
dev-qt/qtmultimedia[qml]
dev-qt/qtwidgets
>=dev-qt/qtquickcontrols2-5.12



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

2020-08-15 Thread Kent Fredric
commit: 718e746de9728f24f346870c6652bbdece559965
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun Aug 16 02:04:03 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun Aug 16 02:04:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=718e746d

dev-perl/BerkeleyDB: Fix libdir re bug #737190

Bug: https://bugs.gentoo.org/737190
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r2.ebuild | 64 
 1 file changed, 64 insertions(+)

diff --git a/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r2.ebuild 
b/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r2.ebuild
new file mode 100644
index 000..8a644c1a2e6
--- /dev/null
+++ b/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r2.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=PMQS
+DIST_VERSION=0.63
+inherit perl-module db-use multilib
+
+DESCRIPTION="This module provides Berkeley DB interface for Perl"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+# Install DB_File if you want older support. BerkleyDB no longer
+# supports less than 2.0.
+
+RDEPEND="
+   >=sys-libs/db-2.0:=
+"${S}"/config.in || die "Can't write config.in"
+
+   perl-module_src_prepare
+}
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}



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

2020-08-15 Thread Stefan Strogin
commit: 6281d7d248df208bb1660cca4ecabd3a18503576
Author: Stefan Strogin  gentoo  org>
AuthorDate: Sun Aug 16 01:49:59 2020 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Sun Aug 16 01:49:59 2020 +
URL:https://gitweb.gentoo.org/repo/proj/matrix.git/commit/?id=6281d7d2

README.md: add link to matrix.org

Signed-off-by: Stefan Strogin  gentoo.org>

 README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 4fdaffa..03df8f8 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
 # Matrix Gentoo overlay
 
-This Gentoo overlay contains clients and servers for the Matrix protocol
+This Gentoo overlay contains clients and servers for the 
[Matrix](https://matrix.org/)
+protocol.
 
 ## Installation
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Authen-Libwrap/files/, dev-perl/Authen-Libwrap/

2020-08-15 Thread Kent Fredric
commit: 8cd94a41de24204614aa921c19262c8e5a26
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun Aug 16 01:26:19 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun Aug 16 01:29:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd94a41

dev-perl/Authen-Libwrap: -r bump fix for bug #737212

This overrides the magic detection in Build.PL, which was previously
creating problems for LD=lld due to the inclusion of "/usr/lib/" instead
of "/usr/lib64/".

This employs get_libdir to resolve the right version, and passes
expected config into Build.PL, and patches Build.PL to simply die when
the passed values don't look usable, instead of doing some weird config
discovery which could possibly do wrong things.

Bug: https://bugs.gentoo.org/737212
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 .../Authen-Libwrap-0.230.0-r2.ebuild   | 46 ++
 .../files/Authen-Libwrap-0.23-inc-paths.patch  | 98 ++
 2 files changed, 144 insertions(+)

diff --git a/dev-perl/Authen-Libwrap/Authen-Libwrap-0.230.0-r2.ebuild 
b/dev-perl/Authen-Libwrap/Authen-Libwrap-0.230.0-r2.ebuild
new file mode 100644
index 000..79aaf42ae9b
--- /dev/null
+++ b/dev-perl/Authen-Libwrap/Authen-Libwrap-0.230.0-r2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=DMUEY
+DIST_VERSION=0.23
+DIST_EXAMPLES=("example.pl")
+inherit perl-module multilib
+
+DESCRIPTION="A Perl access to the TCP Wrappers interface"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="sys-apps/tcp-wrappers"
+DEPEND="dev-perl/Module-Build"
+BDEPEND="${RDEPEND}
+   >=dev-perl/Module-Build-0.420.0
+   virtual/perl-ExtUtils-CBuilder
+   test? (
+   virtual/perl-Test-Simple
+   dev-perl/Test-Exception
+   )
+"
+PATCHES=(
+   "${FILESDIR}/${PN}-0.23-inc-paths.patch"
+)
+PERL_RM_FILES=(
+   t/03_pod.t
+   t/02_maintainer.t
+)
+src_configure() {
+   unset LD
+   if [[ -n "${CCLD}" ]]; then
+   export LD="${CCLD}"
+   fi
+   GENTOO_INCDIR="${EPREFIX}/usr/include" \
+   GENTOO_LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+   perl-module_src_configure
+}
+src_compile() {
+   ./Build --config optimize="${CFLAGS}" build || die
+}

diff --git a/dev-perl/Authen-Libwrap/files/Authen-Libwrap-0.23-inc-paths.patch 
b/dev-perl/Authen-Libwrap/files/Authen-Libwrap-0.23-inc-paths.patch
new file mode 100644
index 000..e6b2998b5eb
--- /dev/null
+++ b/dev-perl/Authen-Libwrap/files/Authen-Libwrap-0.23-inc-paths.patch
@@ -0,0 +1,98 @@
+From 012d607fa5ca2dd8d7b48110a9639841cd3db704 Mon Sep 17 00:00:00 2001
+From: Kent Fredric 
+Date: Sun, 16 Aug 2020 12:59:38 +1200
+Subject: Remove libdir/incdir autodetection magic
+
+Instead, in favour of gentoo controled paths and hard-erroring when
+they're wrong.
+
+Bug: https://bugs.gentoo.org/737212
+---
+ Build.PL | 70 +++-
+ 1 file changed, 13 insertions(+), 57 deletions(-)
+
+diff --git a/Build.PL b/Build.PL
+index c76c1d8..d2179de 100644
+--- a/Build.PL
 b/Build.PL
+@@ -9,64 +9,20 @@ use Module::Build;
+ 
+ use File::Spec;
+ 
+-my $inc_dir;
+-my $lib_dir;
+-
+-# possible prefixes where we might find libwrap.a
+-# if you know of other common ones please let me know
+-my @prefixes = (
+-File::Spec->catdir( File::Spec->rootdir, 'usr' ),
+-File::Spec->catdir( File::Spec->rootdir, 'usr', 'local' ),
+-File::Spec->catdir( File::Spec->rootdir, 'opt' ),
+-File::Spec->catdir( File::Spec->rootdir, 'opt', 'local' ),
+-File::Spec->catdir( File::Spec->rootdir, 'opt', 'libwrap' ),
+-File::Spec->catdir( File::Spec->rootdir, 'opt', 'tcpwrappers' ),
+-);
+-
+-# try to figure out where libwrap.a is
+-for my $prefix( @prefixes ) {
+-for my $libname( qw|libwrap.so libwrap.a| ) {
+-my $candidate = File::Spec->catfile( $prefix, 'lib', $libname );
+-if( -e $candidate && -f _ && -r _ ) {
+-my $y_n = Module::Build->y_n(
+-"do you want to link against $candidate?", "y"
+-);
+-if( $y_n ) {
+-$lib_dir = File::Spec->catdir( $prefix, 'lib' );
+-last;
+-}
+-}
+-}
+-}
+-
+-# try to figure out where tcpd.h is
+-for my $prefix( @prefixes ) {
+-my $candidate = File::Spec->catfile( $prefix, 'include', 'tcpd.h' );
+-if( -e $candidate && -f _ && -r _ ) {
+-my $y_n = Module::Build->y_n(
+-"do you want to use $candidate as your header?", "y"
+-);
+-if( $y_n ) {
+-$inc_dir = File::Spec->catdir( $prefix, 'include' );
+-last;
+-}
+-}
+-}
+-
+-# if we can't find it, prompt
+-unless( $inc_dir ) {
+-$inc_dir = Module::Build->prompt(
+-   

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

2020-08-15 Thread Thomas Deutschmann
commit: 085dd00ce3ba1fb38ac4fcc6b33114bfe5f9a558
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug 16 00:53:12 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug 16 00:53:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=085dd00c

sys-apps/logwatch: update HOMEPAGE

logwatch.org is no longer under control by upstream.

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

 sys-apps/logwatch/logwatch-7.5.3.ebuild | 2 +-
 sys-apps/logwatch/logwatch-7.5.4.ebuild | 2 +-
 sys-apps/logwatch/logwatch-.ebuild  | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-apps/logwatch/logwatch-7.5.3.ebuild 
b/sys-apps/logwatch/logwatch-7.5.3.ebuild
index 82d7ba396df..4118164aa81 100644
--- a/sys-apps/logwatch/logwatch-7.5.3.ebuild
+++ b/sys-apps/logwatch/logwatch-7.5.3.ebuild
@@ -16,7 +16,7 @@ else
 fi
 
 DESCRIPTION="Analyzes and Reports on system logs"
-HOMEPAGE="http://www.logwatch.org/;
+HOMEPAGE="https://sourceforge.net/projects/logwatch/;
 
 LICENSE="MIT"
 SLOT="0"

diff --git a/sys-apps/logwatch/logwatch-7.5.4.ebuild 
b/sys-apps/logwatch/logwatch-7.5.4.ebuild
index 6b03d4907f5..247b3915d88 100644
--- a/sys-apps/logwatch/logwatch-7.5.4.ebuild
+++ b/sys-apps/logwatch/logwatch-7.5.4.ebuild
@@ -16,7 +16,7 @@ else
 fi
 
 DESCRIPTION="Analyzes and Reports on system logs"
-HOMEPAGE="http://www.logwatch.org/;
+HOMEPAGE="https://sourceforge.net/projects/logwatch/;
 
 LICENSE="MIT"
 SLOT="0"

diff --git a/sys-apps/logwatch/logwatch-.ebuild 
b/sys-apps/logwatch/logwatch-.ebuild
index 73de997ba96..247b3915d88 100644
--- a/sys-apps/logwatch/logwatch-.ebuild
+++ b/sys-apps/logwatch/logwatch-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -16,7 +16,7 @@ else
 fi
 
 DESCRIPTION="Analyzes and Reports on system logs"
-HOMEPAGE="http://www.logwatch.org/;
+HOMEPAGE="https://sourceforge.net/projects/logwatch/;
 
 LICENSE="MIT"
 SLOT="0"



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

2020-08-15 Thread Thomas Deutschmann
commit: 3a9888686fc59463837a4253490b674d264d061e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug 16 00:45:17 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug 16 00:53:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a988868

dev-util/checkbashisms: bump to v2.20.4

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

 dev-util/checkbashisms/Manifest|  1 +
 dev-util/checkbashisms/checkbashisms-2.20.4.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-util/checkbashisms/Manifest b/dev-util/checkbashisms/Manifest
index 224d681349a..cfbcc2c6a81 100644
--- a/dev-util/checkbashisms/Manifest
+++ b/dev-util/checkbashisms/Manifest
@@ -2,3 +2,4 @@ DIST devscripts_2.19.7.tar.xz 847488 BLAKE2B 
b3c76d9b0899c01f08d0432f8de0a65d143
 DIST devscripts_2.20.1.tar.xz 854932 BLAKE2B 
b9523b2882625b66c7972db7c10f7d3f6055cb791b5697f92fc0e362c1b2a89ac26fc2a45739989ae9f9981c956d90ceefd514645649d1b7fca6d7eeaff9df7d
 SHA512 
6e9505f491bf87df6c0ac384cbf307959fd86e3aea1aecd7e70e88bbe57757035612235bad0244dc7aeedcf964605508f7fd5db582b410dd715380a064389d1d
 DIST devscripts_2.20.2.tar.xz 854948 BLAKE2B 
ca36f2d8d4f3d975479134d02ee4c035f7f32e087be523560c2c06d7625047fcf78d0428d1e4addcfa38a299befdd23b88ab3fbbef2028f67f8b7c9f8851c29f
 SHA512 
d9147604a718582a19c036a040c62612427163146048dbf9e3665545072e8132d08f51dccfd3f0a01453c0405a0326dad8f83afd10270eec5c69fa0612cb8510
 DIST devscripts_2.20.3.tar.xz 859612 BLAKE2B 
074905e621234c60e26a014831a021b51f5f8fbdac4d6fa3a17aa98f994b4c171404a2326f5b00565f365469b41f1c7e5f03b6efa29f809b51bbabde209cafc2
 SHA512 
6d86deeecff82fc16df7d978678f5b88293164688078bf0732a7e6b844cf8845868be31c107518cf43b8dbcbadcd12a9691585f5725abd397f63ff9456fbdd8f
+DIST devscripts_2.20.4.tar.xz 860604 BLAKE2B 
05c486ed024964ec03f9e5396e739389010a2c51a4d01be14b4959aa86bd09ca426bbfbfa7657c87e54aec8497fbfc90064073310fb1af916b32142ff63d3137
 SHA512 
49e9ae38ca3682f399a17f2108a7ee15198dc955d8c7c4c1b043456c19cb35b47b6116de9a2cfaccbdd7560e79426ca0953674e5a89ac226d21af2c1cf847e5c

diff --git a/dev-util/checkbashisms/checkbashisms-2.20.4.ebuild 
b/dev-util/checkbashisms/checkbashisms-2.20.4.ebuild
new file mode 100644
index 000..a0d64f24d4d
--- /dev/null
+++ b/dev-util/checkbashisms/checkbashisms-2.20.4.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="devscripts"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Perl script to check for commonly used bash features not defined 
by POSIX"
+HOMEPAGE="https://packages.debian.org/devscripts 
https://anonscm.debian.org/cgit/collab-maint/devscripts.git;
+SRC_URI="mirror://debian/pool/main/d/${MY_PN}/${MY_P/-/_}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# Requires python packages to check tools we don't need anyway
+RESTRICT="test"
+
+RDEPEND="dev-lang/perl
+   virtual/perl-Getopt-Long"
+
+S="${WORKDIR}/${MY_P}/scripts"
+
+src_prepare() {
+   default
+
+   sed "s@###VERSION###@${PV}@" -i checkbashisms.pl || die
+}
+
+src_compile() { :; }
+
+src_install() {
+   newbin ${PN}.pl ${PN}
+   doman ${PN}.1
+}



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

2020-08-15 Thread Thomas Deutschmann
commit: 2c12ab68bae327cd381dc81ac84de5451d25ae85
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug 16 00:50:47 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug 16 00:53:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c12ab68

sys-apps/logwatch: drop old

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

 sys-apps/logwatch/Manifest  |  2 -
 sys-apps/logwatch/logwatch-7.5.1.ebuild | 95 -
 sys-apps/logwatch/logwatch-7.5.2.ebuild | 95 -
 3 files changed, 192 deletions(-)

diff --git a/sys-apps/logwatch/Manifest b/sys-apps/logwatch/Manifest
index 032d1f21a70..724bde2b08e 100644
--- a/sys-apps/logwatch/Manifest
+++ b/sys-apps/logwatch/Manifest
@@ -1,3 +1 @@
-DIST logwatch-7.5.1.tar.gz 469715 BLAKE2B 
706352c60370d13b4f72047d08965ab0dd36837194a03bf44e08ec43641eddb8d80d655c783d4f25c8fa757853a4e069997b80676b781561c5e0a23b44a393c9
 SHA512 
945e66192a9e198169426497f7b5167fcbec2af9565dfead728aa91bfdac5f7e1b2ce2f5f404b6f03841fe6b978f70fb969b47d4f60f02f9a8ccea865c5c782c
-DIST logwatch-7.5.2.tar.gz 475277 BLAKE2B 
e3d841749af4776da84646444dd90bb084dc33712c1a6eeab87d46cb267656527008505f78506168b7ded40f3d0f8209c205249c2f953e6ee8af7a6cd82833d9
 SHA512 
157486143ba12167f6c50c778372a4295db3744878607bceba8e0813357651bffd8924ef5ef41a4fbd20811c020dcc031eb354a0f52b8eb6d9aac197087c2bc5
 DIST logwatch-7.5.3.tar.gz 495110 BLAKE2B 
b28d7381d259a132de7d9fd347ac4bafb0b187aa811f3d3f65d7b1ccbb00c6b5bb660229cd8155fa5d7bc9668e7b4dd1ebe7bbb909b48367c6a6dd6793e5
 SHA512 
ad404f031fe016599a8f8d8c0820b23db61a9ad102815d3713e5d13e9a810c819ca7ad9cea50891852982e073ef033dbe7595fde8846971336148e32cbbe29ca

diff --git a/sys-apps/logwatch/logwatch-7.5.1.ebuild 
b/sys-apps/logwatch/logwatch-7.5.1.ebuild
deleted file mode 100644
index 82d7ba396df..000
--- a/sys-apps/logwatch/logwatch-7.5.1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit tmpfiles
-
-PATCHES=()
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/logwatch/git ${PN}"
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 sparc x86"
-fi
-
-DESCRIPTION="Analyzes and Reports on system logs"
-HOMEPAGE="http://www.logwatch.org/;
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND="virtual/cron
-   virtual/mta
-   virtual/mailx
-   dev-lang/perl
-   dev-perl/Date-Calc
-   dev-perl/Date-Manip
-   dev-perl/Tie-IxHash
-   dev-perl/Sys-CPU
-   dev-perl/Sys-MemInfo"
-
-src_install() {
-   dodir /usr/share/logwatch/lib
-   dodir /usr/share/logwatch/scripts/services
-   dodir /usr/share/logwatch/scripts/shared
-   dodir /usr/share/logwatch/default.conf/logfiles
-   dodir /usr/share/logwatch/default.conf/services
-   dodir /usr/share/logwatch/default.conf/html
-   keepdir /etc/logwatch
-
-   # logwatch.pl requires cache dir (bug #607668)
-   newtmpfiles "${FILESDIR}"/logwatch.tmpfile ${PN}.conf
-
-   newsbin scripts/logwatch.pl logwatch.pl
-
-   exeinto /usr/share/logwatch/lib
-   doexe lib/*.pm
-
-   exeinto /usr/share/logwatch/scripts/services
-   doexe scripts/services/*
-
-   exeinto /usr/share/logwatch/scripts/shared
-   doexe scripts/shared/*
-
-   insinto /usr/share/logwatch/default.conf
-   doins conf/logwatch.conf
-
-   insinto /usr/share/logwatch/default.conf/logfiles
-   doins conf/logfiles/*
-
-   insinto /usr/share/logwatch/default.conf/services
-   doins conf/services/*
-
-   insinto /usr/share/logwatch/default.conf/html
-   doins conf/html/*
-
-   # Make sure logwatch is run before anything else #100243
-   exeinto /etc/cron.daily
-   newexe "${FILESDIR}"/logwatch 00-logwatch
-
-   doman logwatch.8
-   dodoc README HOWTO-Customize-LogWatch
-
-   # Do last due to insopts modification.
-   insinto /usr/share/logwatch/scripts/logfiles
-   insopts -m755
-   doins -r scripts/logfiles/*
-}
-
-pkg_postinst() {
-   # Migration from /etc/cron.daily/logwatch -> 
/etc/cron.daily/00-logwatch (bug #100243)
-   if [[ -e ${ROOT}/etc/cron.daily/logwatch ]] ; then
-   local md5=$(md5sum "${ROOT}"/etc/cron.daily/logwatch)
-   [[ ${md5} == "edb003cbc0686ed4cf37db16025635f3" ]] \
-   && rm -f "${ROOT}"/etc/cron.daily/logwatch \
-   || ewarn "You have two logwatch files in 
/etc/cron.daily/"
-   fi
-
-   # Trigger cache dir creation to allow immediate use of logwatch (bug 
#607668)
-   tmpfiles_process ${PN}.conf
-}

diff --git a/sys-apps/logwatch/logwatch-7.5.2.ebuild 
b/sys-apps/logwatch/logwatch-7.5.2.ebuild

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

2020-08-15 Thread Thomas Deutschmann
commit: 9592c7dbfb4460198368d0e91406038fd439f669
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug 16 00:51:29 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug 16 00:53:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9592c7db

sys-apps/logwatch: bump to v7.5.4

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

 sys-apps/logwatch/Manifest  |  1 +
 sys-apps/logwatch/logwatch-7.5.4.ebuild | 95 +
 2 files changed, 96 insertions(+)

diff --git a/sys-apps/logwatch/Manifest b/sys-apps/logwatch/Manifest
index 724bde2b08e..079b34e6eb1 100644
--- a/sys-apps/logwatch/Manifest
+++ b/sys-apps/logwatch/Manifest
@@ -1 +1,2 @@
 DIST logwatch-7.5.3.tar.gz 495110 BLAKE2B 
b28d7381d259a132de7d9fd347ac4bafb0b187aa811f3d3f65d7b1ccbb00c6b5bb660229cd8155fa5d7bc9668e7b4dd1ebe7bbb909b48367c6a6dd6793e5
 SHA512 
ad404f031fe016599a8f8d8c0820b23db61a9ad102815d3713e5d13e9a810c819ca7ad9cea50891852982e073ef033dbe7595fde8846971336148e32cbbe29ca
+DIST logwatch-7.5.4.tar.gz 481766 BLAKE2B 
d86ae3afc33a100fc353948be3591cd13566568d47cad02fa5f390882a223ca9d4d78692214f2f0898fa8bf8687314f60ad9ce02f0987bb86dd7136150a1d2b9
 SHA512 
6e6a5e8b7ae977244ea97895e06cccde320fce3dfbd2b1c58c945fc8872325a9676c8afe122b1f7230cb6617b64813caf90ef37fc472a1b200eb0b24ea72fa9b

diff --git a/sys-apps/logwatch/logwatch-7.5.4.ebuild 
b/sys-apps/logwatch/logwatch-7.5.4.ebuild
new file mode 100644
index 000..6b03d4907f5
--- /dev/null
+++ b/sys-apps/logwatch/logwatch-7.5.4.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit tmpfiles
+
+PATCHES=()
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/logwatch/git ${PN}"
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+fi
+
+DESCRIPTION="Analyzes and Reports on system logs"
+HOMEPAGE="http://www.logwatch.org/;
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+DEPEND=""
+RDEPEND="virtual/cron
+   virtual/mta
+   virtual/mailx
+   dev-lang/perl
+   dev-perl/Date-Calc
+   dev-perl/Date-Manip
+   dev-perl/Tie-IxHash
+   dev-perl/Sys-CPU
+   dev-perl/Sys-MemInfo"
+
+src_install() {
+   dodir /usr/share/logwatch/lib
+   dodir /usr/share/logwatch/scripts/services
+   dodir /usr/share/logwatch/scripts/shared
+   dodir /usr/share/logwatch/default.conf/logfiles
+   dodir /usr/share/logwatch/default.conf/services
+   dodir /usr/share/logwatch/default.conf/html
+   keepdir /etc/logwatch
+
+   # logwatch.pl requires cache dir (bug #607668)
+   newtmpfiles "${FILESDIR}"/logwatch.tmpfile ${PN}.conf
+
+   newsbin scripts/logwatch.pl logwatch.pl
+
+   exeinto /usr/share/logwatch/lib
+   doexe lib/*.pm
+
+   exeinto /usr/share/logwatch/scripts/services
+   doexe scripts/services/*
+
+   exeinto /usr/share/logwatch/scripts/shared
+   doexe scripts/shared/*
+
+   insinto /usr/share/logwatch/default.conf
+   doins conf/logwatch.conf
+
+   insinto /usr/share/logwatch/default.conf/logfiles
+   doins conf/logfiles/*
+
+   insinto /usr/share/logwatch/default.conf/services
+   doins conf/services/*
+
+   insinto /usr/share/logwatch/default.conf/html
+   doins conf/html/*
+
+   # Make sure logwatch is run before anything else #100243
+   exeinto /etc/cron.daily
+   newexe "${FILESDIR}"/logwatch 00-logwatch
+
+   doman logwatch.8
+   dodoc README HOWTO-Customize-LogWatch
+
+   # Do last due to insopts modification.
+   insinto /usr/share/logwatch/scripts/logfiles
+   insopts -m755
+   doins -r scripts/logfiles/*
+}
+
+pkg_postinst() {
+   # Migration from /etc/cron.daily/logwatch -> 
/etc/cron.daily/00-logwatch (bug #100243)
+   if [[ -e ${ROOT}/etc/cron.daily/logwatch ]] ; then
+   local md5=$(md5sum "${ROOT}"/etc/cron.daily/logwatch)
+   [[ ${md5} == "edb003cbc0686ed4cf37db16025635f3" ]] \
+   && rm -f "${ROOT}"/etc/cron.daily/logwatch \
+   || ewarn "You have two logwatch files in 
/etc/cron.daily/"
+   fi
+
+   # Trigger cache dir creation to allow immediate use of logwatch (bug 
#607668)
+   tmpfiles_process ${PN}.conf
+}



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

2020-08-15 Thread Zac Medico
commit: 164efc2db431e8052597c40cd17e3c38e24a7f8f
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Aug 16 00:37:17 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Aug 16 00:42:15 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=164efc2d

repoman/lib/repoman/scanner.py: Remove unneeded y_ebuild_continue var

Since commit 203bc84894d76f4e17e47b9373e84bebc217a246, this variable
has triggered a continue statement which no longer bypassed any
relevant code in the containing loop.

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

 repoman/lib/repoman/scanner.py | 5 -
 1 file changed, 5 deletions(-)

diff --git a/repoman/lib/repoman/scanner.py b/repoman/lib/repoman/scanner.py
index f9663e013..2e5e5ef31 100644
--- a/repoman/lib/repoman/scanner.py
+++ b/repoman/lib/repoman/scanner.py
@@ -372,7 +372,6 @@ class Scanner:
for y_ebuild in ebuildlist:
self.reset_futures(dynamic_data)
dynamic_data['y_ebuild'] = y_ebuild
-   y_ebuild_continue = False
 
# initialize per ebuild plugin checks here
# need to set it up for ==> self.modules_list or some 
other ordered list
@@ -395,13 +394,9 @@ class Scanner:
# Do not try to do any 
more QA checks on this package since missing
# metadata leads to 
false positives for several checks, and false
# positives confuse 
users.
-   y_ebuild_continue = True
# logging.debug("\t>>> 
Continuing")
break
 
-   if y_ebuild_continue:
-   continue
-
logging.debug("Finished ebuild plugin loop, 
continuing...")
 
# Final checks



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/gemserv/

2020-08-15 Thread Ronny Gutbrod
commit: 0ad63c19a8e97a8b49ff564f6b30f134f8b623c7
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sun Aug 16 00:20:33 2020 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sun Aug 16 00:25:10 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0ad63c19

net-misc/gemserv: Version bump 0.4.5.

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 net-misc/gemserv/Manifest |  17 
 net-misc/gemserv/gemserv-0.4.5.ebuild | 143 ++
 2 files changed, 160 insertions(+)

diff --git a/net-misc/gemserv/Manifest b/net-misc/gemserv/Manifest
index b27f7ce..3c474d8 100644
--- a/net-misc/gemserv/Manifest
+++ b/net-misc/gemserv/Manifest
@@ -3,10 +3,13 @@ DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856
 DIST autocfg-1.0.0.crate 12870 BLAKE2B 
79e495d53298574afd3b292da7c9c363dcb3ea434fd44258efaf3628e95ebfc731f03083f8a1060272a2a3478a6452cdc41539e2dac08465cc6e6283844bf260
 SHA512 
451fc63148792ba1952b884170e3481359b01bacca5ec0456f43ca58f8e092b8f81c9764f8b00d4104059ff608089be5858220ee868127c064cc890c767ec3a3
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
 DIST bytes-0.5.5.crate 46424 BLAKE2B 
08cd9bff57f6f546bcc4df72fe9f2ad16a81c89e6141353b687518d2d3a3953b1aad0105a57f0245aad8aef005c2b5be58226f3b22516f0d74744a9f44d3ca88
 SHA512 
c16c4a3e4c2105a99bc30358b387f6f17de3e45f6a0ce98c3469ef3721bc7bc6732be2db6ac546a54a09f1e7442798296a58108620b67057a3e42e784c5c8351
+DIST bytes-0.5.6.crate 46291 BLAKE2B 
6d33ab47d04f2e469db2add31db118f95cad53002be7969738923d62a4fe3605ccbe9fbcae6d8741310c543625e80d9adac7d9e9fed01b71cb3943ddd015d920
 SHA512 
a1caa1f58754f4d2e54b8df8d0ca0083ee5282f5e4d3bb5b1735022933dd2e66fb3f39c7a82216bf7a7e29591695c2e10c8b7144c83ac598e34193f2425a32cc
 DIST cc-1.0.57.crate 52820 BLAKE2B 
e43bc7e17b0b4bb09b2e15ae1bd9b8244470cb26e431bdc4c228c0e0e78b51f2bab92e31872ca744b83459e8d76d83bac9764048a100122a065120fce236fca2
 SHA512 
2613adbc4383d722f227789d190f93032907c03e93dd2f281e516ccbb782a739f166239a79478ec270682da6e28d1116ae68ea7eeb0c2ea85a6c0ef9128bb0bb
+DIST cc-1.0.58.crate 52896 BLAKE2B 
118619bbe306aef5cb83350ea04a7660a4af2c365a5f0c30d045cdca73f7d68d6646889295590dff29cbf003b44f9b00d5eab22fcde8a57483aec615278dfbb8
 SHA512 
0a208c4dd7700ba92337ad0044c0ae1614b105d6e799fc660d07e7745c60d8e4c8d3688af7ced77734a2a695ac2e7c565c2f2b7a886d71714c2f7675ea2a22f7
 DIST cfg-if-0.1.10.crate 7933 BLAKE2B 
063a96ed176f34f788666b40adc483d147fc011dee941ab60569ddd0e57502b5dd06ed71090f4e14ce005d06e240500a286f74652615e9d068fba649610d8cf8
 SHA512 
9d22616bfb4a75770a828a0a3cddac6787297a5fdc53eb17e25811cc94de717f2de8bd66d53c5d65ba1c83d8892aefee5ae758cf56a1ef0a0c3120f70b244339
 DIST chrono-0.4.12.crate 142736 BLAKE2B 
66268675e6201dc66f8851efb5da6b57f313350b7fe1b211b5360f69adf59517fb00a15c2303564130ed79b1e182191722a8cef7454dea022bbd2b16d78d3a17
 SHA512 
58d205fab70802903c1a689d8942f148fdd971385c29bbbf7087956bf97baa579cffb44212f5a31a1e934892a1e913ad666a8540dc331dc8f870f9ad6d53421e
 DIST chrono-0.4.13.crate 144286 BLAKE2B 
6ff59ebcd58761852a38fe490a1b2c407d1ca07b046a0980bd1ead9973091de0518e49f4777c8b132e4f82e68b51b4a3624d90e2e09fbc5214df7f2a8a8b9e00
 SHA512 
02933602df1964df8e91dbab8d1b5baead493ec73d1da4a4e090eeabb3e37b818f0b800a580c13a14aae9c20df83c9f66a713bed02800f5022b2999881dc2f23
+DIST chrono-0.4.15.crate 150581 BLAKE2B 
89f1fb1840e7d25e226f4ca1100d85a8d02e0e386a5820bc68c8b5fca8eb94eafa01d90ad895a8b3e2c237f79593056f48a4a0954b6bee1a6eebb5d6f53e7cde
 SHA512 
64ec4c7fad26ce7dd107e3e1b176507cd8f4b10c3ff47940c45ccec0b882858dc35d5cebed36b64e2bd1b611ad8b48dfaa7cfe4a7b687887b4f0a8be1de24dbc
 DIST colored-1.9.3.crate 20062 BLAKE2B 
43bea2edb35df0382def6b0d37a55ce0214732bb152eddafae0c23fae05c5f4c6f9f3b88c6f271c778d80990eedc52e02a46289abdf2b1e0ba692bd83d9913b6
 SHA512 
72a77360148b960662d62aa63313e235c155c761948ecc67d92f244a99fefc92ad133e1820634358130db841095027cd99b64a79aa6fa41a279e0d5d505aacd6
 DIST foreign-types-0.3.2.crate 7504 BLAKE2B 
520818b702d990d296ecd31a8646850202509ccfa18edd0e1b260289619a6c351e758f317ec0824bd76eccb209b6f087057c25f1bd01a47897715013dd834867
 SHA512 
bf27b8243ed482c202d120383374f19ff09422535e24b9c1aebccc66529bf300ca17b8bbc76d67f98ac092e614497afe3add9dc68aa69c93074df05762f91232
 DIST foreign-types-shared-0.1.1.crate 5672 BLAKE2B 
d2e42e04b6657e7a69fe0bd20c672176629c743e49a55fd007bb30e289710b70045d445ae9cae0eeaa747ee708c90e8abd9b5fc39bad8ec0666befe1b696d4f1
 SHA512 
bafdb2143e136fb0818e2ffd90b5c862b7181647d6568947d4e4531012bbf7a57b597221ec7056c1b562dfc0c3b5dead26d1a4111ebc15e7863737a873518a4a
@@ -18,6 +21,7 @@ DIST futures-task-0.3.5.crate 11030 BLAKE2B 
272de7f0a923bab04071b705b3b396830225
 DIST futures-util-0.3.5.crate 132197 BLAKE2B 

[gentoo-commits] repo/proj/guru:dev commit in: net-misc/gemserv/

2020-08-15 Thread Ronny Gutbrod
commit: ccf56c4a9811581870e669293ed7f70e4f6aeccb
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sun Aug 16 00:26:05 2020 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sun Aug 16 00:26:05 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ccf56c4a

net-misc/gemserv: Remove old ebuilds.

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 net-misc/gemserv/Manifest |   2 -
 net-misc/gemserv/gemserv-0.4.2.ebuild | 149 --
 2 files changed, 151 deletions(-)

diff --git a/net-misc/gemserv/Manifest b/net-misc/gemserv/Manifest
index 3c474d8..bed6bdb 100644
--- a/net-misc/gemserv/Manifest
+++ b/net-misc/gemserv/Manifest
@@ -8,7 +8,6 @@ DIST cc-1.0.57.crate 52820 BLAKE2B 
e43bc7e17b0b4bb09b2e15ae1bd9b8244470cb26e431b
 DIST cc-1.0.58.crate 52896 BLAKE2B 
118619bbe306aef5cb83350ea04a7660a4af2c365a5f0c30d045cdca73f7d68d6646889295590dff29cbf003b44f9b00d5eab22fcde8a57483aec615278dfbb8
 SHA512 
0a208c4dd7700ba92337ad0044c0ae1614b105d6e799fc660d07e7745c60d8e4c8d3688af7ced77734a2a695ac2e7c565c2f2b7a886d71714c2f7675ea2a22f7
 DIST cfg-if-0.1.10.crate 7933 BLAKE2B 
063a96ed176f34f788666b40adc483d147fc011dee941ab60569ddd0e57502b5dd06ed71090f4e14ce005d06e240500a286f74652615e9d068fba649610d8cf8
 SHA512 
9d22616bfb4a75770a828a0a3cddac6787297a5fdc53eb17e25811cc94de717f2de8bd66d53c5d65ba1c83d8892aefee5ae758cf56a1ef0a0c3120f70b244339
 DIST chrono-0.4.12.crate 142736 BLAKE2B 
66268675e6201dc66f8851efb5da6b57f313350b7fe1b211b5360f69adf59517fb00a15c2303564130ed79b1e182191722a8cef7454dea022bbd2b16d78d3a17
 SHA512 
58d205fab70802903c1a689d8942f148fdd971385c29bbbf7087956bf97baa579cffb44212f5a31a1e934892a1e913ad666a8540dc331dc8f870f9ad6d53421e
-DIST chrono-0.4.13.crate 144286 BLAKE2B 
6ff59ebcd58761852a38fe490a1b2c407d1ca07b046a0980bd1ead9973091de0518e49f4777c8b132e4f82e68b51b4a3624d90e2e09fbc5214df7f2a8a8b9e00
 SHA512 
02933602df1964df8e91dbab8d1b5baead493ec73d1da4a4e090eeabb3e37b818f0b800a580c13a14aae9c20df83c9f66a713bed02800f5022b2999881dc2f23
 DIST chrono-0.4.15.crate 150581 BLAKE2B 
89f1fb1840e7d25e226f4ca1100d85a8d02e0e386a5820bc68c8b5fca8eb94eafa01d90ad895a8b3e2c237f79593056f48a4a0954b6bee1a6eebb5d6f53e7cde
 SHA512 
64ec4c7fad26ce7dd107e3e1b176507cd8f4b10c3ff47940c45ccec0b882858dc35d5cebed36b64e2bd1b611ad8b48dfaa7cfe4a7b687887b4f0a8be1de24dbc
 DIST colored-1.9.3.crate 20062 BLAKE2B 
43bea2edb35df0382def6b0d37a55ce0214732bb152eddafae0c23fae05c5f4c6f9f3b88c6f271c778d80990eedc52e02a46289abdf2b1e0ba692bd83d9913b6
 SHA512 
72a77360148b960662d62aa63313e235c155c761948ecc67d92f244a99fefc92ad133e1820634358130db841095027cd99b64a79aa6fa41a279e0d5d505aacd6
 DIST foreign-types-0.3.2.crate 7504 BLAKE2B 
520818b702d990d296ecd31a8646850202509ccfa18edd0e1b260289619a6c351e758f317ec0824bd76eccb209b6f087057c25f1bd01a47897715013dd834867
 SHA512 
bf27b8243ed482c202d120383374f19ff09422535e24b9c1aebccc66529bf300ca17b8bbc76d67f98ac092e614497afe3add9dc68aa69c93074df05762f91232
@@ -19,7 +18,6 @@ DIST futures-core-0.3.5.crate 13541 BLAKE2B 
5eaee458fffdc57105e33c17e7d2b8eab82d
 DIST futures-macro-0.3.5.crate 9673 BLAKE2B 
5ceee18ca00098ae9b44f909c0f96b1eb08978a3bcaa460c00683ac3c49727c94983faaa4618f747600e52ec4b8f43acb78fd261cad62d79d35b36b9fbfd20f2
 SHA512 
413acd01d2e8e849c9425646f0c7eca95972139b61d233bc615791ea4cbd0eac908c949e15587de7ac7c260837cc312b8b3d428011df23bd2e7c36875d4ade0d
 DIST futures-task-0.3.5.crate 11030 BLAKE2B 
272de7f0a923bab04071b705b3b39683022538a756ccc22a8582f048c83155d6da12ab804e70cd32767c318b94f0f71ea0e7aa6d1f77491aabfc6ebae08f710e
 SHA512 
9affcfe1c64ff66cef77615d39c2e69e40480aa7fb0d1a0b136edeb9533b336e3e1156bc0bb14120a812f0f8d3d3266c556d9f0e4eec147fdcc175b3183dba52
 DIST futures-util-0.3.5.crate 132197 BLAKE2B 
07cf5f757cd9bc663266b18025efe200fc911c6d829bca139db4c5dcddce5f5e5dbe62968c6c7b328a63a5f23d0a232087e162f926716029ff52c24923bb7c53
 SHA512 
f71bd29e113fc8aa3795904b3130dd6f09076e6a19e52e34702973b6428a1834d300fdd3c48259e7f27fc1252dcefc80a4b104962fe7e6e4e536322d0aa9c5a2
-DIST gemserv-0.4.2.tar.gz 11034 BLAKE2B 
f8a2f8492f0db9268e15809b98a19df6ab085239beee35fc6e8fae9bd51042c644e10297b45768ad37336c485cf0d58e107f79b7afe00c8c601d35f05fea3ccd
 SHA512 
7c6f18d2d1260903f2c63ec27080172f81357c349988644f7f846f8aa27ea45bc6a68fbe5808870b8d2a7eee56d5568998b9189914f74ffef0cf52b7521fca9f
 DIST gemserv-0.4.4.tar.gz 17027 BLAKE2B 
6c31df8bd505b67ea060af4a4121ff3c1ae1d9e75a8d0c8260e2a788e65d31fc04ff5133157e064cdde42bd196a6b37407920847c52a45aa8133d6a0977e756e
 SHA512 
d73237d43b59fb44bbf037171ca65400a6b0c8f4196ffa368d2f08ce2afe5c200fbcc452c2f8e6157d035981ec045ba79bae29f1ec6fb2a7c1fd69b49c6c966d
 DIST gemserv-0.4.5.tar.gz 16699 BLAKE2B 
7637faf9e547858f13a8f0de7917545db598b931042c4ab2383fc8d46d77227ce455133127a86851e2335184e3188de2d7b31fba13a6477cecfdab83d47ea273
 SHA512 
03b843f46fa17a33499519253d29e3cc0615d881b0ee612c5b7845200eb400b42bb2eb81c4000df7373b8e5a4e87cfbfe4760e06c780d5aa8833c5b3b4fb284a
 DIST generator-0.6.21.crate 28473 BLAKE2B 

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

2020-08-15 Thread Sam James
commit: 3ae8f10dc772e07ef9c3aa91c42e273efe2914da
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug 16 00:01:41 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 16 00:01:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ae8f10d

sys-kernel/gentoo-kernel-bin: regenerate 5.4.56 manifest for arm64

Needed to fix compression.

Signed-off-by: Sam James  gentoo.org>

 sys-kernel/gentoo-kernel-bin/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index c77bb77f1c2..880bac65b43 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -9,7 +9,7 @@ DIST gentoo-kernel-5.4.55-1.x86.xpak 53203656 BLAKE2B 
4f7a52537a3f2578eeb4275cc2
 DIST gentoo-kernel-5.4.56-1.amd64.xpak 61920923 BLAKE2B 
fabc9003e395bf78d3d4541440787e034d945bc63dd2c4e97f805509a170f32ce2e594f89a343a47d1561b31f40b32c407177060afebe0d189b25aa3efcfd967
 SHA512 
5e27736110c1eaffc37da70f5e30120e8869f768155d7a1de0a731ef1a1822d8d491f1de64849cdafdb6c43b5db289416d7746784f69f7ee0622fd1ad9347e55
 DIST gentoo-kernel-5.4.56-1.x86.xpak 53199861 BLAKE2B 
c0ac8804b81ef6db8ce4d459f5ffdaecedefb3a5bad61391b55915c22a0394cf1f838c063430ed7c384088199960ce0d187819adb00f06719f71539c98fce14d
 SHA512 
8953c187020e4a9995ca148395f789df276c86e6e35b5a2876d2ede3f1123f2310d4644e69ab160c7605ecbfa51c8996b246cc27b9be9c5c8b2bf4d507838d86
 DIST gentoo-kernel-5.4.58-1.amd64.xpak 61957732 BLAKE2B 
543ecd10e5387bd8d58c02a03a4d1a80fcc56d4fc8c4c010a9ae51aa688fa77acb28468c96786f894607d242e50981df10ccdecb8023f60b5007267c7bb3ca29
 SHA512 
bbe7d8d9362c3e73759c1180dbff7fc574511def3beaab5c211b41d262763f26fc9c3dd237a606425f572d38eec4d2eb6c01ea7053c3a8350a406ac03aed2681
-DIST gentoo-kernel-5.4.58-1.arm64.xpak 71010054 BLAKE2B 
214728e0c4c72e29998c3664e33719fa9dc9f3b1ccad7bb9c2c220196ba8528968d9108ce0126b2c873a949997593118f70c084074b35aa721fde667820abe4c
 SHA512 
94fb3d2fa2391b616a1630ccda9e3540cb4ccf9334fa9b5faf1ac1489f5981fbc55dde7a85240ca62f5cebcf38e463953d500dffdc216a2288c742100759667f
+DIST gentoo-kernel-5.4.58-1.arm64.xpak 71010054 BLAKE2B 
a7d7f4805a210d703cf3f8ffe136860a324b9693d0ad3ee808750d6d1ab1229211dd260d046bf8cd333f9596e3f915d3ee16f4adecf6712a9b4cdc985486688c
 SHA512 
e0fc7820446d937500843f76afe25a6c0fc8795ee4a3220cd5b8093e7c0c3a4b6676e87b88b1c48688576f1fefbdbefee0715d96f28d70f8afbf025329d3af15
 DIST gentoo-kernel-5.4.58-1.x86.xpak 53199773 BLAKE2B 
b92017090e1aecb1b5775c48b826ce15629e12e66d9ee3bec38638a6cd71a35fa3270678a20c1876a959d9bd309187fa6183ebac10941d2c0d044fc1abf643eb
 SHA512 
2d67d6ab8b15c11d5aae20f3cef6f7a1abb09daaea3d85130d94ebf84dccf39cc26f296aff8bfec69863b092c82f5f2ad976e2be5e83686997004c99f41fa560
 DIST gentoo-kernel-5.7.10-1.amd64.xpak 62959097 BLAKE2B 
7d10cd9af73be952e521afd696ecc9cac69e855284997ffc48cfb374ef45e379be721d6d71db6e81911c797597cea54dbca92c64aa1b774be89d6d9c8d64452b
 SHA512 
34db8816fe6f2d125cd737eee207fb16c75ed061837b8e3d67b4aa8887942aa727869a725018bddf9b6b1928d3a0e093a0f441f7c49dc17e46364c523a56135f
 DIST gentoo-kernel-5.7.10-1.x86.xpak 54968846 BLAKE2B 
e33923959281e22b40ca5205097938671aae0967e9a32a5c63628f2ef285b10cb0672ae2a59cbf641fea2521dab439a163e0c624ffb4788b0a8bf333db5efa73
 SHA512 
728d3eeb66c9bc8940cc3d745055d66c368c9bd7f133f903087b09655fd441a47ff75b48d6b2887a2d0be607de3a361c12dc8f5fb1ee58e74dcfa916dfa1f667



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

2020-08-15 Thread Sam James
commit: b8b63e83d7a59dedd42850fb2a71b004f7f67ac9
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 15 20:06:46 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 15 20:07:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8b63e83

sys-kernel/gentoo-kernel-bin: regenerate 5.7.15 manifest for arm64

Needed to fix compression.

Signed-off-by: Sam James  gentoo.org>

 sys-kernel/gentoo-kernel-bin/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index c94640db697..c77bb77f1c2 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -19,7 +19,7 @@ DIST gentoo-kernel-5.7.13-1.amd64.xpak 63493547 BLAKE2B 
38955ee76d650a19f36eb0bd
 DIST gentoo-kernel-5.7.13-1.arm64.xpak 74486569 BLAKE2B 
6fbf270cb0783db1e553d66744d9af9d23679b57e5a7004e386385c7f2dc9fe42b0a37e9f38e746c8a8690bba071229fa44295330428901ee9afb2f0412291fa
 SHA512 
258d1e6d1019043f4aec1b5e8f5d1887c55b76c8334396f606c53d7e63cffa0f7f17360a0d7a7f08dae01f54af451c246375f0295bf18fc34cfa936925e3e99f
 DIST gentoo-kernel-5.7.13-1.x86.xpak 54964807 BLAKE2B 
15760458eae84df260af1b6657ce0e446442c99ca7400cd9cdc3045cebf430f7a3ea1805b3b2859af9e4836f4240e4e4e0f300e6ab2e3c477dab5a9feaa17354
 SHA512 
db666dec94178b4bffe1ee72efdd1b74041b35917d2e2367936cc076cffa832caa8c1a7a5398f49dfb108e60aea3527abdd4d9c8ef2b332b0415ca1e24a2
 DIST gentoo-kernel-5.7.15-1.amd64.xpak 63458161 BLAKE2B 
794d5c3d143c623cd6d5446537a499e6a7902f779eee77e87358e64f18f0f6b8586c382143260cc528e749a8c269b81eb1e5eb9e05cab980827177b9e3ee665b
 SHA512 
713fed1045e158e0faae283419d771f94270acdf91d89a8602e153ddd9199ed42ece0b112c31abb1640952baef089186600fc9d590a3f2f49577542e8b8b2f29
-DIST gentoo-kernel-5.7.15-1.arm64.xpak 74813009 BLAKE2B 
128c670e102d65a2ac8b0812b9980aeb71bdb1cdae820d0930043c35ae4403421a2b22c1a9b18369517d21fe6c7440eefcd34dc8483aa167288157923588d806
 SHA512 
c1ffedf8e0924b6e6a01bc2dcbcabaa5d6d207bad74b3e6e86ee3d04109c03d31489542f6cc9f1df4850fd255bba2ca378f6a3c90d67e3fad4f9e45f062180d6
+DIST gentoo-kernel-5.7.15-1.arm64.xpak 74813009 BLAKE2B 
02cb962faad93148d01c0da4c78cf72b8673c1e38c9bd3885eee4709ad9fdec32ffab6f4a360e5c2568213dab5f690acef514d41aacb01b0ec2b6bead84bbbad
 SHA512 
8faf248616c92f2a753c3b5d72712ef90c775325ef869c498264d4ed4a6c0208eab8ed8c3ceb9f5b89fedf0d9871a3956f5b8d825ab39bd8d280b8b6b20a4b83
 DIST gentoo-kernel-5.7.15-1.x86.xpak 54960037 BLAKE2B 
80c38017a830ad1c50b02d4b313b84ca9584598c26fa831b822c7148cb79b5d767895b71935a6def7123b5f8255d764bc6d1688215b9d0994c6f76ffaf9927be
 SHA512 
1676d0eb2408a062bc6539ea3eb244b834f9cdc69cf2d3bc5ea6b27d8dda4cec5f66c36801aaba79611bde51f3b0375380a3c8e9b321e219cba655a472680d74
 DIST tinycorelinux-10.1-amd64.qcow2 16842752 BLAKE2B 
e013e76503c335739a9623c0901ca791937a0e6b177854535cadec1e2c2cd2df588283ed3128cf652595f32264fbfe5b3bd3a8c97665fd4da344e308535be366
 SHA512 
c3aeb20ff8769da9211694b7f701907cc7ae7582cdfad2c2fdc008d97ebcbd9dc08245b4e8f8450e1cb304bd705345a11fe79f901a47979fee91443841d55641
 DIST tinycorelinux-10.1-x86.qcow2 14876672 BLAKE2B 
3c760eb7438b13261e52ecfaa33a53649ced95f1ab40aae52134b8cdc31a16d7aa0d6a6dd716e268ed148e9d77a10b7c700b141b61d70c82d271ffe88e8e2a3c
 SHA512 
9964538dc42f232a11949f74b61d46422ea5da3bdc253a217119bd0b8a750c40fd2da0b07157067be9ac0226472614f210a1248114df0d331df390979867a895



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

2020-08-15 Thread Zac Medico
commit: a6f90ba17202518ab0c976a32cb216a8e719f8fa
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Aug 15 23:55:50 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Aug 15 23:56:01 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=a6f90ba1

repoman/lib/repoman/scanner.py: Fix useless-return

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

 repoman/lib/repoman/scanner.py | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/repoman/lib/repoman/scanner.py b/repoman/lib/repoman/scanner.py
index f9df73d83..f9663e013 100644
--- a/repoman/lib/repoman/scanner.py
+++ b/repoman/lib/repoman/scanner.py
@@ -365,7 +365,6 @@ class Scanner:
dynamic_data["changelog_modified"] = changelog_path in 
self.changed.changelogs
 
self._scan_ebuilds(ebuildlist, dynamic_data)
-   return
 
 
def _scan_ebuilds(self, ebuildlist, dynamic_data):
@@ -408,7 +407,6 @@ class Scanner:
# Final checks
# initialize per pkg plugin final checks here
# need to set it up for ==> self.modules_list or some other 
ordered list
-   xpkg_complete = False
for mod in self.moduleconfig.final_loop:
if mod:
mod_class = 
self.moduleconfig.controller.get_class(mod)
@@ -423,10 +421,5 @@ class Scanner:
logging.debug("\tRunning function: %s", 
func)
_continue = 
func(**self.set_func_kwargs(mod, dynamic_data))
if _continue:
-   xpkg_complete = True
# logging.debug("\t>>> 
Continuing")
break
-
-   if xpkg_complete:
-   return
-   return



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

2020-08-15 Thread Matthew Thode
commit: 66649372b9b553d293212861545b4656d9c45c98
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 23:20:29 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 23:20:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66649372

dev-python/eventlet: 0.26.1 bump

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

 dev-python/eventlet/Manifest   |  1 +
 dev-python/eventlet/eventlet-0.26.1.ebuild | 65 ++
 2 files changed, 66 insertions(+)

diff --git a/dev-python/eventlet/Manifest b/dev-python/eventlet/Manifest
index 52d19056861..6e8f112415e 100644
--- a/dev-python/eventlet/Manifest
+++ b/dev-python/eventlet/Manifest
@@ -1 +1,2 @@
 DIST eventlet-0.25.1.tar.gz 392719 BLAKE2B 
7dbc23e63e9dc8b8bb0b4a53fc07cb467661bd695b6c778b973bd690bd24f3dd0f867d7ed803e1a89ffd36e5597fd244ef2c616c663d3d9130033f5f5928e816
 SHA512 
936aac45e24b2797cc8b6cd6238d493ce5eb60a47096e13827b8be145bd8dd14503f5ae624485c87b163718a85733b2317688366ef5fdf347f7d367fbf4d521d
+DIST eventlet-0.26.1.tar.gz 398200 BLAKE2B 
f14024d0825fb5530929766c63dceea7446057d9ad5dfb98ab013e96cab9b0eef5440f2d4d7ceeef17691c8a2a9055cac2b93fb23653a6facba4967c4e7cb0b3
 SHA512 
55b9b214130d0482ea005ea570a5aa3eafdf66e6d315a95c5ba60186a2d9a9df5c2638c86d886968954ce39e5ac2153e1f9e11631e6aef237078c3776af7d6c5

diff --git a/dev-python/eventlet/eventlet-0.26.1.ebuild 
b/dev-python/eventlet/eventlet-0.26.1.ebuild
new file mode 100644
index 000..9b2eb99eebe
--- /dev/null
+++ b/dev-python/eventlet/eventlet-0.26.1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Highly concurrent networking library"
+HOMEPAGE="https://pypi.org/project/eventlet/ 
https://github.com/eventlet/eventlet/;
+SRC_URI="mirror://pypi/e/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="doc examples test"
+
+RDEPEND="
+   >=dev-python/dnspython-1.15.0[${PYTHON_USEDEP}]
+   =dev-python/greenlet-0.3[${PYTHON_USEDEP}]
+   >=dev-python/monotonic-1.4[${PYTHON_USEDEP}]
+   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]"
+DEPEND="doc? ( >=dev-python/python-docs-2.7.6-r1:2.7 )
+   test? ( ${RDEPEND}
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}] )"
+
+PATCHES=(
+   "${FILESDIR}/eventlet-0.25.1-tests.patch"
+)
+
+distutils_enable_sphinx doc
+distutils_enable_tests nose
+
+python_prepare_all() {
+   if use doc; then
+   local PYTHON_DOC_ATOM=$(best_version -b 
dev-python/python-docs:2.7)
+   local 
PYTHON_DOC_VERSION="${PYTHON_DOC_ATOM#dev-python/python-docs-}"
+   local 
PYTHON_DOC="/usr/share/doc/python-docs-${PYTHON_DOC_VERSION}/html"
+   local PYTHON_DOC_INVENTORY="${PYTHON_DOC}/objects.inv"
+   sed -i "s|'https://docs.python.org/': None|'${PYTHON_DOC}': 
'${PYTHON_DOC_INVENTORY}'|" doc/conf.py || die
+   fi
+
+   if use test; then
+#  sed -i '/This is a Python 3 module/d' 
eventlet/green/http/__init__.py || die
+#  sed -i 's/^import/from OpenSSL import/g' 
eventlet/green/OpenSSL/__init__.py || die
+#  sed -i 's/^from version/from OpenSSL.version/' 
eventlet/green/OpenSSL/__init__.py || die
+   sed -i 's/TEST_TIMEOUT = 1/TEST_TIMEOUT = 10/' 
tests/__init__.py || die
+   fi
+
+   # Prevent file collisions from teestsuite
+   sed -e "s:'tests', :'tests', 'tests.*', :" -i setup.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_install_all() {
+   if use examples; then
+   docompress -x "/usr/share/doc/${PF}/examples"
+   docinto examples
+   dodoc -r examples/.
+   fi
+   distutils-r1_python_install_all
+}



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

2020-08-15 Thread David Seifert
commit: c3cc0776ebce565a7003ab14400217c18e4583f2
Author: Mark Wright  gentoo  org>
AuthorDate: Sat Aug 15 13:17:22 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Aug 15 23:19:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3cc0776

dev-libs/boost: Bump to 1.74.0

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Closes: https://github.com/gentoo/gentoo/pull/17129
Signed-off-by: Mark Wright  gentoo.org>
Signed-off-by: David Seifert  gentoo.org>

 dev-libs/boost/Manifest|   1 +
 dev-libs/boost/boost-1.74.0.ebuild | 358 +
 2 files changed, 359 insertions(+)

diff --git a/dev-libs/boost/Manifest b/dev-libs/boost/Manifest
index 464a9d9c3eb..811974e5ba9 100644
--- a/dev-libs/boost/Manifest
+++ b/dev-libs/boost/Manifest
@@ -1,2 +1,3 @@
 DIST boost_1_72_0.tar.bz2 106907358 BLAKE2B 
ab270a0e3cb24da687d86785e2d2e6d7731b4dbc07bd839eadb642dfa5a428ad584acb1f3529661a8de9a986008ff3427491041059ea2b742348d02e00761cd8
 SHA512 
63bbd1743e7c904b2e69fdc2eafd1c2a8a30fd70d960dcd366059d0100f000cb605d56cbd9397bb18421631f1c9552a772c434d0f0caddbe56302273f51fd1f6
 DIST boost_1_73_0.tar.bz2 109247910 BLAKE2B 
5995ff6ca21f45988b187b94bf743795cca97531baa8355f488be0987b9426289dd85d6ce25b7eb03ccd690109f05ba56252a95bca50505ad9cd66f4e0e234e8
 SHA512 
86c296511c0766145097625a62bf099c3d155284d250ad6e528e788bc90b2945838498dfe473c6c6c78d1694b6fba8e19f7dee0d064a043841e6231603fff668
+DIST boost_1_74_0.tar.bz2 109600630 BLAKE2B 
2982f64fccf6fdb3b4b74452e603f459242d7abb42df4162278d9b558b637786a2eb97442126967b19088d591777c64ced8f60a23e71eaa0b7545e80f800de63
 SHA512 
4ec9c1164ec9b95ce46ba1c073e586c94b3882dce5b7347ea14bbef0c1da230e12aa5328a501ce38cae1b1d7623daa3246325625899179b4cc309242540982a4

diff --git a/dev-libs/boost/boost-1.74.0.ebuild 
b/dev-libs/boost/boost-1.74.0.ebuild
new file mode 100644
index 000..ed0bc9519c8
--- /dev/null
+++ b/dev-libs/boost/boost-1.74.0.ebuild
@@ -0,0 +1,358 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} )
+
+inherit flag-o-matic multiprocessing python-r1 toolchain-funcs multilib-minimal
+
+MY_PV="$(ver_rs 1- _)"
+MAJOR_V="$(ver_cut 1-2)"
+
+DESCRIPTION="Boost Libraries for C++"
+HOMEPAGE="https://www.boost.org/;
+SRC_URI="https://dl.bintray.com/boostorg/release/${PV}/source/boost_${MY_PV}.tar.bz2;
+
+LICENSE="Boost-1.0"
+SLOT="0/${PV}" # ${PV} instead ${MAJOR_V} due to bug 486122
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt"
+IUSE="bzip2 context debug doc icu lzma +nls mpi numpy python static-libs 
+threads tools zlib zstd"
+REQUIRED_USE="
+   mpi? ( threads )
+   python? ( ${PYTHON_REQUIRED_USE} )"
+
+# the tests will never fail because these are not intended as sanity
+# tests at all. They are more a way for upstream to check their own code
+# on new compilers. Since they would either be completely unreliable
+# (failing for no good reason) or completely useless (never failing)
+# there is no point in having them in the ebuild to begin with.
+RESTRICT="test"
+
+RDEPEND="
+   !app-admin/eselect-boost
+   !dev-libs/boost-numpy
+   !=dev-libs/icu-3.6:=[${MULTILIB_USEDEP}] )
+   !icu? ( virtual/libiconv[${MULTILIB_USEDEP}] )
+   lzma? ( app-arch/xz-utils:=[${MULTILIB_USEDEP}] )
+   mpi? ( >=virtual/mpi-2.0-r4[${MULTILIB_USEDEP},cxx,threads] )
+   python? (
+   ${PYTHON_DEPS}
+   numpy? ( $(python_gen_cond_dep 
'dev-python/numpy[${PYTHON_USEDEP}]' -3) )
+   )
+   zlib? ( sys-libs/zlib:=[${MULTILIB_USEDEP}] )
+   zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}"
+BDEPEND="=dev-util/boost-build-${MAJOR_V}*"
+
+S="${WORKDIR}/${PN}_${MY_PV}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.71.0-disable_icu_rpath.patch
+   "${FILESDIR}"/${PN}-1.71.0-context-x32.patch
+   "${FILESDIR}"/${PN}-1.71.0-build-auto_index-tool.patch
+   # upstream unresponsive to pull request
+   # https://github.com/boostorg/python/pull/286
+   "${FILESDIR}"/${PN}-1.73-boost-python-cleanup.patch
+   # Boost.MPI's __init__.py doesn't work on Py3
+   "${FILESDIR}"/${PN}-1.73-boost-mpi-python-PEP-328.patch
+   # Remove annoying #pragma message
+   "${FILESDIR}"/${PN}-1.73-property-tree-include.patch
+)
+
+python_bindings_needed() {
+   multilib_is_native_abi && use python
+}
+
+tools_needed() {
+   multilib_is_native_abi && use tools
+}
+
+create_user-config.jam() {
+   local user_config_jam="${BUILD_DIR}"/user-config.jam
+   if [[ -s ${user_config_jam} ]]; then
+   einfo "${user_config_jam} already exists, skipping 
configuration"
+   return
+   else
+   einfo "Creating configuration 

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

2020-08-15 Thread David Seifert
commit: 5f5f811457168d6072bb301086e16cbfbaea7419
Author: Mark Wright  gentoo  org>
AuthorDate: Sat Aug 15 12:54:08 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Aug 15 23:19:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f5f8114

dev-util/boost-build: Bump to 1.74.0

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Mark Wright  gentoo.org>
Signed-off-by: David Seifert  gentoo.org>

 dev-util/boost-build/Manifest  |   1 +
 dev-util/boost-build/boost-build-1.74.0.ebuild |  74 ++
 ...oost-build-1.74.0-no-implicit-march-flags.patch | 279 +
 3 files changed, 354 insertions(+)

diff --git a/dev-util/boost-build/Manifest b/dev-util/boost-build/Manifest
index 464a9d9c3eb..811974e5ba9 100644
--- a/dev-util/boost-build/Manifest
+++ b/dev-util/boost-build/Manifest
@@ -1,2 +1,3 @@
 DIST boost_1_72_0.tar.bz2 106907358 BLAKE2B 
ab270a0e3cb24da687d86785e2d2e6d7731b4dbc07bd839eadb642dfa5a428ad584acb1f3529661a8de9a986008ff3427491041059ea2b742348d02e00761cd8
 SHA512 
63bbd1743e7c904b2e69fdc2eafd1c2a8a30fd70d960dcd366059d0100f000cb605d56cbd9397bb18421631f1c9552a772c434d0f0caddbe56302273f51fd1f6
 DIST boost_1_73_0.tar.bz2 109247910 BLAKE2B 
5995ff6ca21f45988b187b94bf743795cca97531baa8355f488be0987b9426289dd85d6ce25b7eb03ccd690109f05ba56252a95bca50505ad9cd66f4e0e234e8
 SHA512 
86c296511c0766145097625a62bf099c3d155284d250ad6e528e788bc90b2945838498dfe473c6c6c78d1694b6fba8e19f7dee0d064a043841e6231603fff668
+DIST boost_1_74_0.tar.bz2 109600630 BLAKE2B 
2982f64fccf6fdb3b4b74452e603f459242d7abb42df4162278d9b558b637786a2eb97442126967b19088d591777c64ced8f60a23e71eaa0b7545e80f800de63
 SHA512 
4ec9c1164ec9b95ce46ba1c073e586c94b3882dce5b7347ea14bbef0c1da230e12aa5328a501ce38cae1b1d7623daa3246325625899179b4cc309242540982a4

diff --git a/dev-util/boost-build/boost-build-1.74.0.ebuild 
b/dev-util/boost-build/boost-build-1.74.0.ebuild
new file mode 100644
index 000..40e1b4993f7
--- /dev/null
+++ b/dev-util/boost-build/boost-build-1.74.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic prefix toolchain-funcs
+
+MY_PV="$(ver_rs 1- _)"
+
+DESCRIPTION="A system for large project software construction, simple to use 
and powerful"
+HOMEPAGE="https://boostorg.github.io/build/;
+SRC_URI="https://dl.bintray.com/boostorg/release/${PV}/source/boost_${MY_PV}.tar.bz2;
+
+LICENSE="Boost-1.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="examples"
+RESTRICT="test"
+
+S="${WORKDIR}/boost_${MY_PV}/tools/build/src"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.71.0-disable_python_rpath.patch
+   "${FILESDIR}"/${PN}-1.71.0-darwin-gentoo-toolchain.patch
+   "${FILESDIR}"/${PN}-1.73.0-add-none-feature-options.patch
+   "${FILESDIR}"/${PN}-1.71.0-respect-c_ld-flags.patch
+   "${FILESDIR}"/${PN}-1.74.0-no-implicit-march-flags.patch
+)
+
+src_unpack() {
+   tar xojf "${DISTDIR}/${A}" boost_${MY_PV}/tools/build || die "unpacking 
tar failed"
+}
+
+src_prepare() {
+   default
+
+   pushd .. >/dev/null || die
+   eapply "${FILESDIR}"/${PN}-1.71.0-fix-test.patch
+   popd >/dev/null || die
+}
+
+src_configure() {
+   hprefixify engine/Jambase
+   tc-export CXX
+}
+
+src_compile() {
+   cd engine || die
+   ./build.sh cxx -d+2 --without-python || die "building bjam failed"
+}
+
+src_test() {
+   # Forget tests, bjam is a lost cause
+   :
+}
+
+src_install() {
+   dobin engine/{bjam,b2}
+
+   insinto /usr/share/boost-build
+   doins -r "${FILESDIR}/site-config.jam" \
+   ../boost-build.jam bootstrap.jam build-system.jam 
../example/user-config.jam *.py \
+   build kernel options tools util
+
+   find "${ED}"/usr/share/boost-build -iname '*.py' -delete || die
+
+   dodoc 
../notes/{changes,release_procedure,build_dir_option,relative_source_paths}.txt
+
+   if use examples; then
+   docinto examples
+   dodoc -r ../example/.
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}

diff --git 
a/dev-util/boost-build/files/boost-build-1.74.0-no-implicit-march-flags.patch 
b/dev-util/boost-build/files/boost-build-1.74.0-no-implicit-march-flags.patch
new file mode 100644
index 000..894af8f62c2
--- /dev/null
+++ 
b/dev-util/boost-build/files/boost-build-1.74.0-no-implicit-march-flags.patch
@@ -0,0 +1,279 @@
+--- a/tools/gcc.jam
 b/tools/gcc.jam
+@@ -1224,135 +1224,9 @@
+ # x86 and compatible
+ # The 'native' option appeared in gcc 4.2 so we cannot safely use it as 
default.
+ # Use i686 instead for 32-bit.
+-toolset.flags gcc OPTIONS 
x86/32/ : -march=i686 ;
+-cpu-flags gcc OPTIONS 

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

2020-08-15 Thread Thomas Deutschmann
commit: 2ebf4186f4228c00da4199fde8e205e9c9c803de
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Aug 15 22:53:19 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Aug 15 22:53:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ebf4186

sys-kernel/genkernel: rollover keywords

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

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

diff --git a/sys-kernel/genkernel/genkernel-4.1.0.ebuild 
b/sys-kernel/genkernel/genkernel-4.1.0.ebuild
index e9d3133ce6f..f4f851fba1a 100644
--- a/sys-kernel/genkernel/genkernel-4.1.0.ebuild
+++ b/sys-kernel/genkernel/genkernel-4.1.0.ebuild
@@ -84,7 +84,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://dev.gentoo.org/~whissi/dist/genkernel/${P}.tar.xz
${COMMON_URI}"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86"
 fi
 
 DESCRIPTION="Gentoo automatic kernel building scripts"



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

2020-08-15 Thread Matt Turner
commit: a1efe958a133a49275b359e78cde0f222166cbcd
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Aug 15 21:11:10 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Aug 15 21:11:10 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a1efe958

stagebase: Run autopep8 to remove tabs

Fixes: 22f59e6d758b (Add "interpreter" parameter for qemu-user build support)
Signed-off-by: Matt Turner  gentoo.org>

 catalyst/base/stagebase.py | 49 +-
 1 file changed, 27 insertions(+), 22 deletions(-)

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 345fe1db..df1cb844 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -939,23 +939,26 @@ class StageBase(TargetBase, ClearBase, GenBase):
 shutil.copy('/etc/resolv.conf',
 self.settings['chroot_path'] + '/etc/')
 
-   # Copy over the binary interpreter (qemu), if 
applicable; note that it's given
-   # as full path and goes to the same place in the chroot
-   if "interpreter" in self.settings:
-   if not 
os.path.exists(self.settings["interpreter"]):
-   raise CatalystError(
-   "Can't find interpreter " + 
self.settings["interpreter"],
-   print_traceback=True)
+# Copy over the binary interpreter (qemu), if applicable; note 
that it's given
+# as full path and goes to the same place in the chroot
+if "interpreter" in self.settings:
+if not os.path.exists(self.settings["interpreter"]):
+raise CatalystError(
+"Can't find interpreter " +
+self.settings["interpreter"],
+print_traceback=True)
 
-   log.notice('Copying binary interpreter %s into 
chroot', self.settings['interpreter'])
+log.notice('Copying binary interpreter %s into chroot',
+   self.settings['interpreter'])
 
-   if os.path.exists(self.settings['chroot_path'] 
+ '/' + self.settings['interpreter']):
-   os.rename(
-   self.settings['chroot_path'] + 
'/' + self.settings['interpreter'], 
-   self.settings['chroot_path'] + 
'/' + self.settings['interpreter'] + '.catalyst')
+if os.path.exists(self.settings['chroot_path'] + '/' + 
self.settings['interpreter']):
+os.rename(
+self.settings['chroot_path'] +
+'/' + self.settings['interpreter'],
+self.settings['chroot_path'] + '/' + 
self.settings['interpreter'] + '.catalyst')
 
-   shutil.copy(self.settings['interpreter'],
-   self.settings['chroot_path'] + '/' + 
self.settings['interpreter'])
+shutil.copy(self.settings['interpreter'],
+self.settings['chroot_path'] + '/' + 
self.settings['interpreter'])
 
 # Copy over the envscript, if applicable
 if "envscript" in self.settings:
@@ -1124,14 +1127,16 @@ class StageBase(TargetBase, ClearBase, GenBase):
 if os.path.exists(hosts_file + '.catalyst'):
 os.rename(hosts_file + '.catalyst', hosts_file)
 
-   # optionally clean up binary interpreter
-   if "interpreter" in self.settings:
-   if os.path.exists(self.settings['chroot_path'] + '/' + 
self.settings['interpreter'] + '.catalyst'):
-   os.rename(
-   self.settings['chroot_path'] + '/' + 
self.settings['interpreter'] + '.catalyst', 
-   self.settings['chroot_path'] + '/' + 
self.settings['interpreter'])
-   else:
-   os.remove(self.settings['chroot_path'] + '/' + 
self.settings['interpreter'])
+# optionally clean up binary interpreter
+if "interpreter" in self.settings:
+if os.path.exists(self.settings['chroot_path'] + '/' + 
self.settings['interpreter'] + '.catalyst'):
+os.rename(
+self.settings['chroot_path'] + '/' +
+self.settings['interpreter'] + '.catalyst',
+self.settings['chroot_path'] + '/' + 
self.settings['interpreter'])
+else:
+os.remove(
+self.settings['chroot_path'] + '/' + 
self.settings['interpreter'])

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

2020-08-15 Thread David Seifert
commit: 8e31cbf758673271ca84f5c65f004ca2236ada23
Author: David Seifert  gentoo  org>
AuthorDate: Sat Aug 15 20:31:49 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Aug 15 20:31:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e31cbf7

sys-libs/ldb: Require python at build-time unconditionally

* waf requires setting up a valid python interpreter
  before calling waf-utils_src_configure.

Closes: https://bugs.gentoo.org/733188
Closes: https://bugs.gentoo.org/737238
Closes: https://github.com/gentoo/gentoo/pull/17126
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: David Seifert  gentoo.org>

 sys-libs/ldb/ldb-2.0.12-r1.ebuild | 8 +---
 sys-libs/ldb/ldb-2.1.4-r1.ebuild  | 8 +---
 sys-libs/ldb/ldb-2.2.0-r1.ebuild  | 8 +---
 3 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/sys-libs/ldb/ldb-2.0.12-r1.ebuild 
b/sys-libs/ldb/ldb-2.0.12-r1.ebuild
index 22e302e558d..e436f29893c 100644
--- a/sys-libs/ldb/ldb-2.0.12-r1.ebuild
+++ b/sys-libs/ldb/ldb-2.0.12-r1.ebuild
@@ -32,12 +32,13 @@ RDEPEND="
 
 DEPEND="dev-libs/libxslt
doc? ( app-doc/doxygen )
-   python? ( ${PYTHON_DEPS} )
virtual/pkgconfig
+   ${PYTHON_DEPS}
${RDEPEND}
 "
 
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
test? ( python )"
 
 WAF_BINARY="${S}/buildtools/bin/waf"
@@ -53,7 +54,8 @@ pkg_setup() {
# Package fails to build with distcc
export DISTCC_DISABLE=1
 
-   use python && python-single-r1_pkg_setup
+   # waf requires a python interpreter
+   python-single-r1_pkg_setup
 }
 
 src_prepare() {

diff --git a/sys-libs/ldb/ldb-2.1.4-r1.ebuild b/sys-libs/ldb/ldb-2.1.4-r1.ebuild
index 91e258a2a01..ac64906fee1 100644
--- a/sys-libs/ldb/ldb-2.1.4-r1.ebuild
+++ b/sys-libs/ldb/ldb-2.1.4-r1.ebuild
@@ -32,12 +32,13 @@ RDEPEND="
 
 DEPEND="dev-libs/libxslt
doc? ( app-doc/doxygen )
-   python? ( ${PYTHON_DEPS} )
virtual/pkgconfig
+   ${PYTHON_DEPS}
${RDEPEND}
 "
 
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
test? ( python )"
 
 WAF_BINARY="${S}/buildtools/bin/waf"
@@ -53,7 +54,8 @@ pkg_setup() {
# Package fails to build with distcc
export DISTCC_DISABLE=1
 
-   use python && python-single-r1_pkg_setup
+   # waf requires a python interpreter
+   python-single-r1_pkg_setup
 }
 
 src_prepare() {

diff --git a/sys-libs/ldb/ldb-2.2.0-r1.ebuild b/sys-libs/ldb/ldb-2.2.0-r1.ebuild
index 91e258a2a01..ac64906fee1 100644
--- a/sys-libs/ldb/ldb-2.2.0-r1.ebuild
+++ b/sys-libs/ldb/ldb-2.2.0-r1.ebuild
@@ -32,12 +32,13 @@ RDEPEND="
 
 DEPEND="dev-libs/libxslt
doc? ( app-doc/doxygen )
-   python? ( ${PYTHON_DEPS} )
virtual/pkgconfig
+   ${PYTHON_DEPS}
${RDEPEND}
 "
 
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
test? ( python )"
 
 WAF_BINARY="${S}/buildtools/bin/waf"
@@ -53,7 +54,8 @@ pkg_setup() {
# Package fails to build with distcc
export DISTCC_DISABLE=1
 
-   use python && python-single-r1_pkg_setup
+   # waf requires a python interpreter
+   python-single-r1_pkg_setup
 }
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/darcs/files/, dev-vcs/darcs/

2020-08-15 Thread Sergei Trofimovich
commit: 21bdeddb28b45dc1f9ca0c09496136f99c116d1b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Aug 15 20:15:00 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Aug 15 20:15:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21bdeddb

dev-vcs/darcs: fix PACKAG_VERSION definition

Reported-by: Toralf Förster
Closes: https://bugs.gentoo.org/737236
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-vcs/darcs/darcs-2.16.1.ebuild   |  2 ++
 dev-vcs/darcs/files/darcs-2.16.1-curl.patch | 25 +
 2 files changed, 27 insertions(+)

diff --git a/dev-vcs/darcs/darcs-2.16.1.ebuild 
b/dev-vcs/darcs/darcs-2.16.1.ebuild
index f1a923a53c4..e33373b0340 100644
--- a/dev-vcs/darcs/darcs-2.16.1.ebuild
+++ b/dev-vcs/darcs/darcs-2.16.1.ebuild
@@ -70,6 +70,8 @@ DEPEND="${RDEPEND}
curl? ( virtual/pkgconfig )
 "
 
+PATCHES=("${FILESDIR}"/${PN}-2.16.1-curl.patch)
+
 src_configure() {
haskell-cabal_src_configure \
$(cabal_flag curl curl) \

diff --git a/dev-vcs/darcs/files/darcs-2.16.1-curl.patch 
b/dev-vcs/darcs/files/darcs-2.16.1-curl.patch
new file mode 100644
index 000..8216ce2e8c4
--- /dev/null
+++ b/dev-vcs/darcs/files/darcs-2.16.1-curl.patch
@@ -0,0 +1,25 @@
+https://bugs.gentoo.org/737236
+
+--- a/src/hscurl.c
 b/src/hscurl.c
+@@ -11,6 +11,9 @@
+ #define ENABLE_PIPELINING
+ #endif
+ 
++/* workaround for https://bugs.gentoo.org/737236 */
++#include "cabal_macros.h"
++
+ enum RESULT_CODES
+   {
+ RESULT_OK = 0,
+@@ -46,6 +49,10 @@ struct UrlData
+ 
+ static int debug = 0;
+ #ifndef _WIN32
++#ifndef PACKAGE_VERSION
++/* workaround for https://bugs.gentoo.org/737236 */
++#define PACKAGE_VERSION CURRENT_PACKAGE_VERSION
++#endif
+ static const char user_agent[] =
+   "darcs/" PACKAGE_VERSION " libcurl/" LIBCURL_VERSION;
+ #else



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

2020-08-15 Thread Sergei Trofimovich
commit: ccb49cce9d136c0ed372d2f291d212abe7dfa8af
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Aug 15 19:50:58 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Aug 15 19:51:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccb49cce

profiles/package.mask: mask dev-haskell/crypto-conduit for removal

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

 profiles/package.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index be1287ef9df..1040292be00 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Sergei Trofimovich  (2020-08-15)
+# Obsolete package without reverse dependencies.
+# Does not compile against current ghc-8.8. Removal in 30 days.
+dev-haskell/crypto-conduit
+
 # Mart Raudsepp  (2020-08-15)
 # Development release, needs testing to ensure valac-0.50
 # works for existing packages



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

2020-08-15 Thread Matthew Thode
commit: 0fc2f41b743dc53ddc0d1be5c667353f7e6776d3
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 19:50:13 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fc2f41b

app-admin/ansible: 2.10.0 bump

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

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

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index 041fd51ed27..296fa16a7bd 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -2,3 +2,4 @@ DIST ansible-2.9.10.tar.gz 14237929 BLAKE2B 
52230b18efa94dbcbd6e4fba3d0915e2375f
 DIST ansible-2.9.11.tar.gz 14243995 BLAKE2B 
afd60d69f53c79c778f122db902ba149030fd995650566f6edcfa41178e92d56cf200089b76de3c6999a824725c793e57c222733ed5b9d9c401bccea942cde5b
 SHA512 
b157a5cfb5ba7cb651c7afc0dc92cfe3b8f9eebd06de6d7a1e4917ffca3c542c5207c8e1820acc5be840190c8754f111e2501304ad7e64867247e5b973aec81e
 DIST ansible-2.9.12.tar.gz 14260349 BLAKE2B 
6d7fdc82489df755196b890b39c166e9639c94e4238b4bf33686a3ab17fcc92c6b3a05f80e1276795b966aaa318ec7d9003099950102c014adb1a5d730928633
 SHA512 
6c05c49e363d4d68516dfea448cead3e2c281d1288c9467a0b6dd083504f303df694ed1c5957ae6582b28acc937d12d1254328e13bac430b9b7fa4354f23
 DIST ansible-2.9.9.tar.gz 14222889 BLAKE2B 
bcacd9271aa0275cff8090819ee5c2832c7b59a287d976ced7e4dad52b5af85350baa1de30f56fdbb92e237c1dd3a9f6ff86cd1af5cb20167331b3f846649d4a
 SHA512 
327c5ece277096f71f10fec2b33a8d2c94ee59b0e22b15bb5ca449da2331b8158239bdbc8e3afd093af358a787f410c7c2e0942010de65a8d9c8719cf83e4abd
+DIST ansible-base-2.10.0.tar.gz 5775091 BLAKE2B 
2a087b1a9d675c5218e8700f5b455ff280a5dc6e66b575a47755b9936c54594300e3c22acadbe14acfd335c3be788e3d63f6ad3c5c51650cbc036c77ceec41ef
 SHA512 
f9e9631f9ce77e55b06d01814422cbc0ca170e3fbbbd5886e4f87065b68b4d7eefe1c782f6dce14241cc548192c7b06ef778446636be02a342d4bd112000126e

diff --git a/app-admin/ansible/ansible-2.10.0.ebuild 
b/app-admin/ansible/ansible-2.10.0.ebuild
new file mode 100644
index 000..98ae9f94b8a
--- /dev/null
+++ b/app-admin/ansible/ansible-2.10.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
+HOMEPAGE="https://ansible.com/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}-base/${PN}-base-${PV}.tar.gz"
+S="${WORKDIR}/${PN}-base-${PV}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~x64-macos"
+IUSE="doc test"
+RESTRICT="test"
+
+RDEPEND="
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/httplib2[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/netaddr[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   net-misc/sshpass
+   virtual/ssh
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx-notfound-page[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.4.0[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${RDEPEND}
+   dev-python/nose[${PYTHON_USEDEP}]
+   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+   dev-python/passlib[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/unittest2[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )"
+
+python_compile_all() {
+   if use doc; then
+   cd docs/docsite || die
+   export CPUS=4
+   emake -f Makefile.sphinx html
+   fi
+}
+
+python_test() {
+   nosetests -d -w test/units -v --with-coverage --cover-package=ansible 
--cover-branches || die
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
+   distutils-r1_python_install_all
+
+   dodoc -r examples
+}



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

2020-08-15 Thread Matthew Thode
commit: e966f24ba17e9d412d2f42d23a7165584a461e1a
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Aug 13 22:20:23 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e966f24b

app-admin/glance: 20.0.1 bump

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

 app-admin/glance/Manifest |   1 +
 app-admin/glance/glance-20.0.1.ebuild | 144 ++
 2 files changed, 145 insertions(+)

diff --git a/app-admin/glance/Manifest b/app-admin/glance/Manifest
index 2a024a8398b..613adc1c61b 100644
--- a/app-admin/glance/Manifest
+++ b/app-admin/glance/Manifest
@@ -1 +1,2 @@
 DIST glance-20.0.0.tar.gz 1961501 BLAKE2B 
81ecbf1dccb1b7cbc33481825cd1de65556e9950ea8fca71565380df27c5ca967b001f811bede483b8b0e05ddf01dcb39ef4474d29d10e530d8b3cd0218dae32
 SHA512 
37497c5705040f3f667e0352fb620731feac91a729d77e5049feea6f4fef73cc58ef84bc6c12e84773c5013aa24a06fff8d9a56f079c716357c84823fa5690b1
+DIST glance-20.0.1.tar.gz 1959665 BLAKE2B 
8d51a9e46361b2b4a1fd1642e14a6fb8bd2bc4eade58279b90eb676f49d7ac649897faf837852cdac318eab87b6daa396008c5f98c2f5aac2e2425e975014eec
 SHA512 
19ee3313f465ff0c010389d72050ec72a4ec4dcaa075b1b0db2c7e591a9f598d9a552cc7f89b1c2bed6b2b83883783ae306fff429177d7d728c7b0a70481233d

diff --git a/app-admin/glance/glance-20.0.1.ebuild 
b/app-admin/glance/glance-20.0.1.ebuild
new file mode 100644
index 000..3136ae3593d
--- /dev/null
+++ b/app-admin/glance/glance-20.0.1.ebuild
@@ -0,0 +1,144 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_7 )
+inherit distutils-r1
+
+DESCRIPTION="Services for discovering, registering, and retrieving VM images"
+HOMEPAGE="https://launchpad.net/glance;
+
+if [[ ${PV} == * ]];then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/openstack/glance.git;
+   EGIT_BRANCH="stable/ussuri"
+else
+   SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz;
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc mysql postgres +sqlite +swift"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+   !~dev-python/pbr-2.1.0"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}"
+
+#note to self, wsgiref is a python builtin, no need to package it
+#>=dev-python/wsgiref-0.1.2[${PYTHON_USEDEP}]
+
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/defusedxml-0.5.0[${PYTHON_USEDEP}]
+   sqlite? (
+   >=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.5[sqlite,${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.6[sqlite,${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.7[sqlite,${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.8[sqlite,${PYTHON_USEDEP}]
+   )
+   mysql? (
+   >=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
+   !~dev-python/pymysql-0.7.7[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}]
+   )
+   postgres? (
+   >=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}]
+   !~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}]
+   )
+   >=dev-python/eventlet-0.22.0[${PYTHON_USEDEP}]
+   !~dev-python/eventlet-0.23.0[${PYTHON_USEDEP}]
+   !~dev-python/eventlet-0.25.0[${PYTHON_USEDEP}]
+   >=dev-python/pastedeploy-1.5.0[${PYTHON_USEDEP}]
+   >=dev-python/routes-2.3.1[${PYTHON_USEDEP}]
+   >=dev-python/webob-1.8.1[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-migrate-0.11.0[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.2.2[${PYTHON_USEDEP}]
+   >=dev-python/alembic-0.8.10[${PYTHON_USEDEP}]
+   >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-concurrency-3.26.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-context-2.19.2[${PYTHON_USEDEP}]
+   >=dev-python/oslo-upgradecheck-0.1.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
+   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
+   >=dev-python/futurist-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/taskflow-2.16.0[${PYTHON_USEDEP}]
+   >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}]
+

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

2020-08-15 Thread Matthew Thode
commit: 4f53e2ecf747a45fd620d0b6a9415ee48a949687
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 19:31:53 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f53e2ec

app-admin/puppet-agent: 6.17.0 stable amd64

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

 app-admin/puppet-agent/puppet-agent-6.17.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppet-agent/puppet-agent-6.17.0.ebuild 
b/app-admin/puppet-agent/puppet-agent-6.17.0.ebuild
index d2a6b4ff967..c33a9ee73c4 100644
--- a/app-admin/puppet-agent/puppet-agent-6.17.0.ebuild
+++ b/app-admin/puppet-agent/puppet-agent-6.17.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://apt.puppetlabs.com/pool/focal/puppet/${PN:0:1}/${PN}/${PN}_${PV}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="puppetdb selinux"
 RESTRICT="strip"
 



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

2020-08-15 Thread Matthew Thode
commit: df6e2912f3f476f3ed9ee8df851d0a94313154a1
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 19:40:37 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df6e2912

media-sound/pulseeffects: 4.8.0 bump

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

 media-sound/pulseeffects/Manifest  | 1 +
 .../{pulseeffects-.ebuild => pulseeffects-4.8.0.ebuild}| 7 +++
 media-sound/pulseeffects/pulseeffects-.ebuild  | 7 +++
 3 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/media-sound/pulseeffects/Manifest 
b/media-sound/pulseeffects/Manifest
index d0a8f0af18c..b39ab6f1e90 100644
--- a/media-sound/pulseeffects/Manifest
+++ b/media-sound/pulseeffects/Manifest
@@ -1,2 +1,3 @@
 DIST pulseeffects-4.7.2.tar.gz 1998420 BLAKE2B 
6ac9d4b416ffac73f874fafcfd07b990ead7a2645832fd35eae23b3c9e9acb8663718b9cbb5fd0c1066c1f75272d0473257e711602d2646742785fe2c6ca5ea9
 SHA512 
f235504ca6edddf7a18f2c909ba58578a3d70e6fdab5ad0882f831c9d148f4fd35d0e55617305d787feefdba7a7544e1a72dac3dbc0e03bb9183e0937cdeaef2
 DIST pulseeffects-4.7.3.tar.gz 2010399 BLAKE2B 
a77a24fe9f8708564b146d65eb10a0021a05f102bacd25ac137ce6a2d21017c4b5c68a57c5cb2345cc228280460f1163d5dbce038d3bd427829335c8aa78d9f4
 SHA512 
0170ae0fbc3f72120545657ad7013f81afb40a96224c690c41206b91ae7ac2637f17b19238ef7d8a9f21a361cb9e76a0e2bf83e84d1404cc69733e7ad156c3f4
+DIST pulseeffects-4.8.0.tar.gz 2003382 BLAKE2B 
4ec1089d0d3051a9697c08adf8305ce9c0ef794d6cffe25a36ffdc174d5b63ac94dee09cca0970948c25fa948c8ec521bc750a2b2e08f7f204889eceb65c0de9
 SHA512 
1fa32f34d2e1aa9fc87eaaecc73a5aad017f2bfd26228edb0cba938e2ab0146e8882fef4b8d74364030d7a78467e728f4e517870be422619d87be2c964b55492

diff --git a/media-sound/pulseeffects/pulseeffects-.ebuild 
b/media-sound/pulseeffects/pulseeffects-4.8.0.ebuild
similarity index 92%
copy from media-sound/pulseeffects/pulseeffects-.ebuild
copy to media-sound/pulseeffects/pulseeffects-4.8.0.ebuild
index 4ebaa69f954..cbfd497f5e7 100644
--- a/media-sound/pulseeffects/pulseeffects-.ebuild
+++ b/media-sound/pulseeffects/pulseeffects-4.8.0.ebuild
@@ -19,18 +19,18 @@ fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="bs2b calf mda-lv2 rubberband"
+IUSE="bs2b calf rubberband"
 
 #TODO: optional : lilv, zam-plugins (check from archlinux pkg)
 RDEPEND="
>=dev-libs/boost-1.41:=
>=dev-cpp/glibmm-2.56.0
-   >=dev-cpp/gtkmm-3.20:3.0
+   >=dev-cpp/gtkmm-3.24:3.0
>=dev-libs/glib-2.56:2
>=dev-libs/libsigc++-2.10:2
>=x11-libs/gtk+-3.18:3
>=media-libs/lilv-0.24.2-r1
-   >=media-libs/lsp-plugins-1.1.7[lv2]
+   >=media-libs/lsp-plugins-1.1.24[lv2]
>=media-libs/gstreamer-1.12.0:1.0
>=media-libs/gst-plugins-good-1.12.0:1.0
>=media-libs/gst-plugins-bad-1.12.0:1.0
@@ -39,7 +39,6 @@ RDEPEND="
>=media-plugins/gst-plugins-lv2-1.12.0:1.0
>=media-plugins/gst-plugins-pulse-1.12.0:1.0
calf? ( >=media-plugins/calf-0.90.0[lv2] )
-   mda-lv2? ( media-plugins/mda-lv2 )
rubberband? ( media-libs/rubberband )
>=media-libs/zita-convolver-3.0.0
media-libs/libebur128

diff --git a/media-sound/pulseeffects/pulseeffects-.ebuild 
b/media-sound/pulseeffects/pulseeffects-.ebuild
index 4ebaa69f954..cbfd497f5e7 100644
--- a/media-sound/pulseeffects/pulseeffects-.ebuild
+++ b/media-sound/pulseeffects/pulseeffects-.ebuild
@@ -19,18 +19,18 @@ fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="bs2b calf mda-lv2 rubberband"
+IUSE="bs2b calf rubberband"
 
 #TODO: optional : lilv, zam-plugins (check from archlinux pkg)
 RDEPEND="
>=dev-libs/boost-1.41:=
>=dev-cpp/glibmm-2.56.0
-   >=dev-cpp/gtkmm-3.20:3.0
+   >=dev-cpp/gtkmm-3.24:3.0
>=dev-libs/glib-2.56:2
>=dev-libs/libsigc++-2.10:2
>=x11-libs/gtk+-3.18:3
>=media-libs/lilv-0.24.2-r1
-   >=media-libs/lsp-plugins-1.1.7[lv2]
+   >=media-libs/lsp-plugins-1.1.24[lv2]
>=media-libs/gstreamer-1.12.0:1.0
>=media-libs/gst-plugins-good-1.12.0:1.0
>=media-libs/gst-plugins-bad-1.12.0:1.0
@@ -39,7 +39,6 @@ RDEPEND="
>=media-plugins/gst-plugins-lv2-1.12.0:1.0
>=media-plugins/gst-plugins-pulse-1.12.0:1.0
calf? ( >=media-plugins/calf-0.90.0[lv2] )
-   mda-lv2? ( media-plugins/mda-lv2 )
rubberband? ( media-libs/rubberband )
>=media-libs/zita-convolver-3.0.0
media-libs/libebur128



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

2020-08-15 Thread Matthew Thode
commit: 1063ac54c9870e8b1b1f132d3b336b50a935ad88
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 19:31:01 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1063ac54

app-admin/puppet: 6.17.0 stable amd64 / x86

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

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

diff --git a/app-admin/puppet/puppet-6.17.0.ebuild 
b/app-admin/puppet/puppet-6.17.0.ebuild
index f50ee1410b0..11fd2d3c508 100644
--- a/app-admin/puppet/puppet-6.17.0.ebuild
+++ b/app-admin/puppet/puppet-6.17.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz;
 
 LICENSE="Apache-2.0 GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86"
 IUSE="augeas diff doc emacs ldap rrdtool selinux shadow sqlite vim-syntax"
 RESTRICT="test"
 



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

2020-08-15 Thread Matthew Thode
commit: 021fdd5e133fc06611ae3ecce9e8bdeada227d8b
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 19:33:59 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=021fdd5e

dev-ruby/puppetdb-termini: 6.11.2 stable amd64 / x86

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

 dev-ruby/puppetdb-termini/puppetdb-termini-6.11.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-6.11.2.ebuild 
b/dev-ruby/puppetdb-termini/puppetdb-termini-6.11.2.ebuild
index a7f2b53b2dd..7919b7b236e 100644
--- a/dev-ruby/puppetdb-termini/puppetdb-termini-6.11.2.ebuild
+++ b/dev-ruby/puppetdb-termini/puppetdb-termini-6.11.2.ebuild
@@ -15,7 +15,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE=""
 # will need the same keywords as puppet
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 
 RDEPEND+=""
 DEPEND+=""



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

2020-08-15 Thread Matthew Thode
commit: 1bf4126b33bba472a6448e94629f14495f3ef0ad
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 19:32:30 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf4126b

app-admin/puppetdb: 6.11.2 stable amd64 / x86

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

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

diff --git a/app-admin/puppetdb/puppetdb-6.11.2.ebuild 
b/app-admin/puppetdb/puppetdb-6.11.2.ebuild
index 5a7a32bcf49..784885ac312 100644
--- a/app-admin/puppetdb/puppetdb-6.11.2.ebuild
+++ b/app-admin/puppetdb/puppetdb-6.11.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://downloads.puppetlabs.com/${PN}/${P}.tar.gz;
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE=""
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND+=">=virtual/jdk-1.8.0"
 DEPEND+="acct-user/puppetdb



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

2020-08-15 Thread Matthew Thode
commit: 42ea754d9c6d1e655ab1955f45352d05c47900a1
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 19:33:18 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42ea754d

app-admin/puppetserver: 6.12.1 stable amd64 / x86

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

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

diff --git a/app-admin/puppetserver/puppetserver-6.12.1.ebuild 
b/app-admin/puppetserver/puppetserver-6.12.1.ebuild
index 94b63776bb9..5385eacc0c9 100644
--- a/app-admin/puppetserver/puppetserver-6.12.1.ebuild
+++ b/app-admin/puppetserver/puppetserver-6.12.1.ebuild
@@ -13,7 +13,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="puppetdb"
 # will need the same keywords as puppet
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND+="
>=virtual/jdk-1.8.0



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

2020-08-15 Thread Matthew Thode
commit: 5b491c330de8fd06f46ba7571f9a7dbecf0a5217
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Aug 15 19:39:31 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 15 19:50:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b491c33

media-libs/lsp-plugins: 1.1.24 bump

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

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

diff --git a/media-libs/lsp-plugins/Manifest b/media-libs/lsp-plugins/Manifest
index 73e6138b62d..b9c48d5463f 100644
--- a/media-libs/lsp-plugins/Manifest
+++ b/media-libs/lsp-plugins/Manifest
@@ -1,4 +1,5 @@
 DIST lsp-plugins-1.1.10.tar.gz 53837323 BLAKE2B 
d890e80d2c6bf871053bd53994af597e653c19894b64df8396c54e1b70bd716adacb8ff7ce7946098d96ca64fe0e03aafc7d4d52af342b67b2551fb0dadaff42
 SHA512 
aedc6a6a421bfb1ad964f6963793cdb2616456044736745a1c3dc27e947b1d6395de1942c2525bc983e654df5335d35466eed16b8f31612119284b024bdce6c2
 DIST lsp-plugins-1.1.22.tar.gz 61694018 BLAKE2B 
5c14140af797624cf67d61618d22a006c4b02232cef92533244f36b108b58461c56c28379cbdefc8d967de34c3bae91450bc787a0e6ab2ae41f53e4e431a17ff
 SHA512 
6004136b55a990033d22e60af6c418a5ee708aaf0f4263fc3af8097876f7eea6e125a44392468ed8e30a92c0fa44eb65f40d80b25a5f243d3fd4f1c0f3af70d6
+DIST lsp-plugins-1.1.24.tar.gz 63809276 BLAKE2B 
3d623d4a5b21f2b4dbd7263805b50c9cd9bf19733aeab774983d7a79695015d1e30201f3de46dde950adadcced347f878a272c1c3da9c5f0721c6effda05d9b4
 SHA512 
20a82594aec51877255ca2808b6c8af03fcfc2f393fdbc6ae6826dd0da17c4a5cb14f02658c1f102600477d7d4d4fc9e24ee3c6a6ef704afc443499a43bd65ec
 DIST lsp-plugins-1.1.5.tar.gz 51911033 BLAKE2B 
ec9b6f3715f1043537ebe35d14abda85b8dfe23d52d335c54c02eb2867753c9b256a5acd71537c95d6da273d054f0e0c9439fe2f81f6d6ced3087de93bfaef60
 SHA512 
42b9cd102247a0165a32f82a5a7ce05928a9703c80f215783ad67020d1f975d1c334af1f86c9f17e76bea3fd90bcf5c47fff5618875038b3655621880b60a699
 DIST lsp-plugins-1.1.7.tar.gz 52408312 BLAKE2B 
1763d7aaff60c4bf3185325789925dc7e5ea1052907f0d1ee3af7c09d39d1f49dfdda537c29d1d2e1ed2bd041345fb3f32a444aa403521f6d4fbd7a952f9f7cb
 SHA512 
e98000c98464abc1db75e044bc1b7adb535b94fbe1025a52baf0a2c92bcd21039c9b330e790f0607b4747356aff3f7d4ae20e666a9135108e875057c5459c8ae

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



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

2020-08-15 Thread Matt Turner
commit: 6b02cde6714794bd80b77db589ee294a87d57aec
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Aug 15 19:10:11 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Aug 15 19:10:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b02cde6

sys-auth/sssd: Depend on sys-libs/pam_wrapper for tests

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

 sys-auth/sssd/sssd-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/sssd/sssd-2.3.1.ebuild b/sys-auth/sssd/sssd-2.3.1.ebuild
index d86b7fb3008..130b9d7ecbf 100644
--- a/sys-auth/sssd/sssd-2.3.1.ebuild
+++ b/sys-auth/sssd/sssd-2.3.1.ebuild
@@ -57,7 +57,6 @@ RDEPEND="${COMMON_DEP}
>=sys-libs/glibc-2.17[nscd]
selinux? ( >=sec-policy/selinux-sssd-2.20120725-r9 )
"
-# FIXME: Add pam_wrapper when it enters the tree. Bug #730974
 DEPEND="${COMMON_DEP}
test? (
app-crypt/p11-kit
@@ -67,6 +66,7 @@ DEPEND="${COMMON_DEP}
net-libs/gnutls[pkcs11,tools]
sys-libs/libfaketime
sys-libs/nss_wrapper
+   sys-libs/pam_wrapper
sys-libs/uid_wrapper
valgrind? ( dev-util/valgrind )
)



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

2020-08-15 Thread Matt Turner
commit: f703af0874edebde27531376271ebc18c487adcd
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Aug 15 04:24:34 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Aug 15 19:10:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f703af08

sys-libs/pam_wrapper: Add new package

Closes: https://bugs.gentoo.org/730974
Signed-off-by: Matt Turner  gentoo.org>

 sys-libs/pam_wrapper/Manifest |  1 +
 sys-libs/pam_wrapper/metadata.xml |  8 ++
 sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild | 40 +++
 3 files changed, 49 insertions(+)

diff --git a/sys-libs/pam_wrapper/Manifest b/sys-libs/pam_wrapper/Manifest
new file mode 100644
index 000..d4f66f3a2a4
--- /dev/null
+++ b/sys-libs/pam_wrapper/Manifest
@@ -0,0 +1 @@
+DIST pam_wrapper-1.1.3.tar.gz 118034 BLAKE2B 
3c05e74959f3c6dfd35575cc5f9187f4a328bfd7ce002e327fc135c82a4ff1513add87678360992d2010c124f7fd95e4bdb3c0a4d63418d9711069cbc200e417
 SHA512 
3b7cbd25ae7dd73f4a0c64a7762cdeb38cc7ba6e8b4e18e79aceffea09241d520aa884de88e4105b5957b2b18ec682be6568a6bfccf82b9354a3510cd2cd98eb

diff --git a/sys-libs/pam_wrapper/metadata.xml 
b/sys-libs/pam_wrapper/metadata.xml
new file mode 100644
index 000..48f6ca46f45
--- /dev/null
+++ b/sys-libs/pam_wrapper/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+sa...@gentoo.org
+Samba Team
+  
+

diff --git a/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild 
b/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild
new file mode 100644
index 000..517f2391cbe
--- /dev/null
+++ b/sys-libs/pam_wrapper/pam_wrapper-1.1.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+CMAKE_ECLASS=cmake
+inherit cmake-multilib python-single-r1
+
+DESCRIPTION="A tool to test PAM applications and PAM modules"
+HOMEPAGE="https://cwrap.org/pam_wrapper.html;
+SRC_URI="https://www.samba.org/ftp/pub/cwrap/${P}.tar.gz
+   https://ftp.samba.org/pub/cwrap/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   sys-libs/pam:0=[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? ( dev-util/cmocka[${MULTILIB_USEDEP}] )"
+
+multilib_src_configure() {
+   local libpam="${EPREFIX}"
+   multilib_is_native_abi || libpam+="/usr"
+   libpam+="/$(get_libdir)/libpam.so.0"
+
+   local mycmakeargs=(
+   -DPAM_LIBRARY="${libpam}"
+   -DUNIT_TESTING=$(usex test)
+   -DPYTHON2_LIBRARY="/dev/null" # Disabled
+   -DPYTHON3_INCLUDE_DIR="$(python_get_includedir)"
+   -DPYTHON3_SITELIB="$(python_get_sitedir)"
+   )
+   cmake_src_configure
+}



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

2020-08-15 Thread Sergei Trofimovich
commit: 1a77141ba62be897a7ba042af92ae826b67f21f7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Aug 15 17:35:56 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Aug 15 19:07:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a77141b

dev-db/postgresql: stable 10.14 for hppa, bug #737032

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

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

diff --git a/dev-db/postgresql/postgresql-10.14.ebuild 
b/dev-db/postgresql/postgresql-10.14.ebuild
index 44d2db27a0b..8d442461446 100644
--- a/dev-db/postgresql/postgresql-10.14.ebuild
+++ b/dev-db/postgresql/postgresql-10.14.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7} )
 
 inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 
~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 
~ppc-macos ~x86-solaris"
 
 SLOT=$(ver_cut 1)
 



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

2020-08-15 Thread Sergei Trofimovich
commit: e651ada33030b4d9d4b45503d10d215c7cf080d9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Aug 15 17:36:53 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Aug 15 19:07:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e651ada3

dev-db/postgresql: stable 9.6.19 for hppa, bug #737032

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

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

diff --git a/dev-db/postgresql/postgresql-9.6.19.ebuild 
b/dev-db/postgresql/postgresql-9.6.19.ebuild
index fbe03a61b02..f5ccbb9888c 100644
--- a/dev-db/postgresql/postgresql-9.6.19.ebuild
+++ b/dev-db/postgresql/postgresql-9.6.19.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7} )
 
 inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 SLOT=$(ver_cut 1-2)
 



[gentoo-commits] repo/proj/guru:master commit in: sys-boot/customrescuecd-x86-grub/, sys-boot/customrescuecd-x86_64-grub/

2020-08-15 Thread Andrew Ammerlaan
commit: dee0c3130ea9f51f5530ace24d6a62ebf45a5eca
Author: Andrea Postiglione  gmail  com>
AuthorDate: Sat Aug 15 15:50:49 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 15:50:49 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dee0c313

sys-boot/customrescuecd-x86_64-grub : fix metadata
sys-boot/customrescuecd-x86-grub : fix metadata

Signed-off-by: Andrea Postiglione  gmail.com>

 sys-boot/customrescuecd-x86-grub/metadata.xml| 13 -
 sys-boot/customrescuecd-x86_64-grub/metadata.xml | 13 -
 2 files changed, 8 insertions(+), 18 deletions(-)

diff --git a/sys-boot/customrescuecd-x86-grub/metadata.xml 
b/sys-boot/customrescuecd-x86-grub/metadata.xml
index 2e146c3..17e7a0a 100644
--- a/sys-boot/customrescuecd-x86-grub/metadata.xml
+++ b/sys-boot/customrescuecd-x86-grub/metadata.xml
@@ -2,16 +2,11 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   gentoob...@milaw.biz
-   Michael Lange
-   Accepts only mails from Gentoo's 
Bugzilla
-   
-   
-   mgo...@gentoo.org
-   Michał Górny
+   andrea.postigli...@gmail.com
+   Andrea Postiglione


-   This package adds menu entries in GRUB for the SystemRescueCD. 
You can
-   add custom bootoptions for SystemRescueCD in a special config 
file.
+   This package adds menu entries in GRUB for the CustomRescueCD. 
You can
+   add custom bootoptions for CustomRescueCD in a special config 
file.

 

diff --git a/sys-boot/customrescuecd-x86_64-grub/metadata.xml 
b/sys-boot/customrescuecd-x86_64-grub/metadata.xml
index 2e146c3..17e7a0a 100644
--- a/sys-boot/customrescuecd-x86_64-grub/metadata.xml
+++ b/sys-boot/customrescuecd-x86_64-grub/metadata.xml
@@ -2,16 +2,11 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   gentoob...@milaw.biz
-   Michael Lange
-   Accepts only mails from Gentoo's 
Bugzilla
-   
-   
-   mgo...@gentoo.org
-   Michał Górny
+   andrea.postigli...@gmail.com
+   Andrea Postiglione


-   This package adds menu entries in GRUB for the SystemRescueCD. 
You can
-   add custom bootoptions for SystemRescueCD in a special config 
file.
+   This package adds menu entries in GRUB for the CustomRescueCD. 
You can
+   add custom bootoptions for CustomRescueCD in a special config 
file.

 



[gentoo-commits] repo/proj/guru:master commit in: sys-boot/customrescuecd-x86_64-grub/, sys-boot/customrescuecd-x86_64-grub/files/

2020-08-15 Thread Andrew Ammerlaan
commit: 319314e50aaf8308b1a5ad878bac888dcdf95b6b
Author: Andrea Postiglione  gmail  com>
AuthorDate: Sat Aug 15 11:09:40 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 11:09:40 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=319314e5

sys-boot/customrescuecd-x86_64-grub : initial ebuild

Signed-off-by: Andrea Postiglione  gmail.com>

 .../customrescuecd-x86_64-grub-0.1.ebuild  | 31 
 .../files/customrescuecd.default   |  7 
 .../files/customrescuecd.grub  | 43 ++
 sys-boot/customrescuecd-x86_64-grub/metadata.xml   | 17 +
 4 files changed, 98 insertions(+)

diff --git 
a/sys-boot/customrescuecd-x86_64-grub/customrescuecd-x86_64-grub-0.1.ebuild 
b/sys-boot/customrescuecd-x86_64-grub/customrescuecd-x86_64-grub-0.1.ebuild
new file mode 100644
index 000..2cbc487
--- /dev/null
+++ b/sys-boot/customrescuecd-x86_64-grub/customrescuecd-x86_64-grub-0.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Grub menu entries for the .iso image of customrescuecd"
+HOMEPAGE="https://sourceforge.net/projects/customrescuecd/;
+SRC_URI=""
+
+LICENSE="GPL-2"
+SLOT=0
+KEYWORDS="~amd64"
+
+S=${WORKDIR}
+
+RDEPEND="app-admin/customrescuecd-x86_64
+   sys-boot/grub"
+
+src_install() {
+   exeinto /etc/grub.d
+   newexe "${FILESDIR}"/customrescuecd.grub 39_customrescuecd
+
+   insinto /etc/default
+   newins "${FILESDIR}"/customrescuecd.default customrescuecd
+}
+
+pkg_postinst() {
+   elog "To add the menu entries for customrescuecd to grub, you should 
now run"
+   elog "  grub-mkconfig -o /boot/grub/grub.cfg"
+   elog "You can set custom bootoptions in /etc/default/customrescuecd"
+}

diff --git a/sys-boot/customrescuecd-x86_64-grub/files/customrescuecd.default 
b/sys-boot/customrescuecd-x86_64-grub/files/customrescuecd.default
new file mode 100644
index 000..4392c33
--- /dev/null
+++ b/sys-boot/customrescuecd-x86_64-grub/files/customrescuecd.default
@@ -0,0 +1,7 @@
+Here you can set custom bootoptions for the CustomRescueCD
+#
+# You can add for example in a space separated list:
+#  copytoram: causes the iso file to be fully loaded into memory
+#   this requires 1.5GB of memory to cache everything
+
+CRCD_BOOTOPTIONS=""

diff --git a/sys-boot/customrescuecd-x86_64-grub/files/customrescuecd.grub 
b/sys-boot/customrescuecd-x86_64-grub/files/customrescuecd.grub
new file mode 100644
index 000..5087ebd
--- /dev/null
+++ b/sys-boot/customrescuecd-x86_64-grub/files/customrescuecd.grub
@@ -0,0 +1,43 @@
+#!/bin/sh
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+. /usr/share/grub/grub-mkconfig_lib
+
+if [ -r /etc/default/customrescuecd ] ; then
+  . /etc/default/customrescuecd
+fi
+
+# crcd = path of newest link to iso of customrescuecd, created by the ebuild
+#of customrescuecd-x86_64
+
+crcd="/usr/share/systemrescuecd/systemrescuecd-x86_64-newest.iso"
+
+longname="CustomRescueCD"
+bootops=")"
+
+if [ ! -z "${CRCD_BOOTOPTIONS}" ]; then
+   bootops=" with bootoptions)"
+fi
+
+if [ -f "${crcd}" ]; then
+
+   device=$(${grub_probe} --target=device "${crcd}")
+   path=$(make_system_path_relative_to_its_root "${crcd}")
+   grub_string=$(prepare_grub_to_access_device "${device}" | grub_add_tab 
| grub_add_tab)
+
+   gettext_printf "Found %s on %s\n" "${longname}" "${device}" >&2
+   onstr=$(gettext_printf "(on %s)" "${device}")
+
+   cat << EOF
+submenu "${longname}" --class submenu {
+   menuentry "${longname} (64bit ${bootops}" --class rescue {
+${grub_string}
+   set isofile=${path}
+   loopback loop \${isofile}
+   linux (loop)/boot/x86_64/customrescue64 ${CRCD_BOOTOPTIONS} 
customisobasedir=customresccd customisolabel=CRC64 vga=791 net.ifnames=0
+   }
+}
+EOF
+
+fi

diff --git a/sys-boot/customrescuecd-x86_64-grub/metadata.xml 
b/sys-boot/customrescuecd-x86_64-grub/metadata.xml
new file mode 100644
index 000..2e146c3
--- /dev/null
+++ b/sys-boot/customrescuecd-x86_64-grub/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gentoob...@milaw.biz
+   Michael Lange
+   Accepts only mails from Gentoo's 
Bugzilla
+   
+   
+   mgo...@gentoo.org
+   Michał Górny
+   
+   
+   This package adds menu entries in GRUB for the SystemRescueCD. 
You can
+   add custom bootoptions for SystemRescueCD in a special config 
file.
+   
+



[gentoo-commits] repo/proj/guru:master commit in: dev-embedded/rauc/, dev-embedded/rauc/files/

2020-08-15 Thread Andrew Ammerlaan
commit: 5180dd14e1b9eb11e7d7a95e93984e82d2e928aa
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Aug 15 06:49:17 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 06:49:17 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5180dd14

dev-embedded/rauc: Drop old

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>

 dev-embedded/rauc/Manifest   |  1 -
 dev-embedded/rauc/files/rauc-1.3-tests.patch | 56 ---
 dev-embedded/rauc/rauc-1.3.ebuild| 57 
 3 files changed, 114 deletions(-)

diff --git a/dev-embedded/rauc/Manifest b/dev-embedded/rauc/Manifest
index 2bd0fb6..6e64fb6 100644
--- a/dev-embedded/rauc/Manifest
+++ b/dev-embedded/rauc/Manifest
@@ -1,2 +1 @@
-DIST rauc-1.3.tar.xz 1336420 BLAKE2B 
79d8cc081b7871a7c4cf7eee47c042cb57723c60dad0cfefcb194048fe1c9a52261e1ef037f397ec80e7c1f1690fd34e4ce44a2d7cb427a5a48632760215e48b
 SHA512 
044f679f81c0af58d5620a16c3a0fd7bc8ae50dccc403dd26f201735e0d7488e485b84ac38329b5f091648ae1173088a4e14976f6d28ef185a07daed82cc5b65
 DIST rauc-1.4.tar.xz 807676 BLAKE2B 
e8dc46daf861c4ff5e80ac5af08eb03afb071b313dce38cbc127205f24c2f25793f51812c95ae4a0d914ea4cfec257ee06e3776b78b20488a6a33edd9b08e5c0
 SHA512 
6ac572d396cae609060ff4a7d2a26f5b8ed839504e76628f47388b1dac93ad1794114a9c105c5a9eb070478f9bd1b6f2cd6aeb5e84c64fdce4d7cbe30bb9ea31

diff --git a/dev-embedded/rauc/files/rauc-1.3-tests.patch 
b/dev-embedded/rauc/files/rauc-1.3-tests.patch
deleted file mode 100644
index 1fed632..000
--- a/dev-embedded/rauc/files/rauc-1.3-tests.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From 2c5300478b288ef8aa627280cca691312ac75a9e Mon Sep 17 00:00:00 2001
-From: Kurt Kanzenbach 
-Date: Fri, 1 May 2020 13:25:51 +0200
-Subject: [PATCH] tests: Disable failing tests
-
-Some tests are failing inside portage. Disable them.
-
-Signed-off-by: Kurt Kanzenbach 

- Makefile.am | 12 
- 1 file changed, 12 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index 4d9a0687aec2..7ddc38e836a1 100644
 a/Makefile.am
-+++ b/Makefile.am
-@@ -139,15 +139,10 @@ check_PROGRAMS = \
-   test/update_handler.test \
-   test/utils.test \
-   test/install.test \
--  test/service.test \
-   test/bundle.test \
-   test/progress.test \
-   test/slot.test
- 
--if WANT_NETWORK
--check_PROGRAMS += test/network.test
--endif
--
- noinst_PROGRAMS = test/fakerand
- 
- test_fakerand_SOURCES = test/fakerand.c
-@@ -201,10 +196,6 @@ test_context_test_LDADD = librauctest.la
- test_manifest_test_SOURCES = test/manifest.c
- test_manifest_test_LDADD = librauctest.la
- 
--test_service_test_CFLAGS = $(AM_CFLAGS) 
-DTEST_SERVICES=\""$(abs_top_builddir)"\"
--test_service_test_SOURCES = test/service.c rauc-installer-generated.h
--test_service_test_LDADD = librauctest.la
--
- test_signature_test_SOURCES = test/signature.c
- test_signature_test_LDADD = librauctest.la
- 
-@@ -217,9 +208,6 @@ test_utils_test_LDADD = librauctest.la
- test_install_test_SOURCES = test/install.c
- test_install_test_LDADD = librauctest.la
- 
--test_network_test_SOURCES = test/network.c
--test_network_test_LDADD = librauctest.la
--
- test_progress_test_SOURCES = test/progress.c
- test_progress_test_LDADD = librauctest.la
- 
--- 
-2.26.2
-

diff --git a/dev-embedded/rauc/rauc-1.3.ebuild 
b/dev-embedded/rauc/rauc-1.3.ebuild
deleted file mode 100644
index 8172482..000
--- a/dev-embedded/rauc/rauc-1.3.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DOCBUILDER="sphinx"
-DOCDIR="${S}/docs"
-
-inherit autotools docs
-
-DESCRIPTION="Lightweight update client that runs on your Embedded Linux device"
-HOMEPAGE="https://rauc.io/;
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
-
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="json network service test"
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   dev-util/gdbus-codegen
-   virtual/pkgconfig
-   test? ( sys-fs/squashfs-tools )
-"
-RDEPEND="
-   dev-libs/glib:2
-   dev-libs/openssl:0=
-   json? ( dev-libs/json-glib )
-   network? ( net-misc/curl )
-   service? ( sys-apps/dbus )
-"
-DEPEND="
-   ${RDEPEND}
-"
-
-PATCHES=( "${FILESDIR}/${P}-tests.patch" )
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable json)
-   $(use_enable network)
-   $(use_enable service)
-   )
-   econf "${myconf[@]}"
-}
-
-src_compile() {
-   default
-   docs_compile
-}



[gentoo-commits] repo/proj/guru:master commit in: app-admin/customrescuecd-x86_64/

2020-08-15 Thread Andrew Ammerlaan
commit: 2b3f9846ef74ac866097cba990d02f564f03f66e
Author: Andrea Postiglione  gmail  com>
AuthorDate: Fri Aug 14 19:24:29 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Aug 14 19:24:29 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2b3f9846

app-admin/customrescuecd-x86_64 : initial ebuild

Signed-off-by: Andrea Postiglione  gmail.com>

 app-admin/customrescuecd-x86_64/Manifest   |  1 +
 .../customrescuecd-x86_64-0.10.3.ebuild| 55 ++
 app-admin/customrescuecd-x86_64/metadata.xml   | 12 +
 3 files changed, 68 insertions(+)

diff --git a/app-admin/customrescuecd-x86_64/Manifest 
b/app-admin/customrescuecd-x86_64/Manifest
new file mode 100644
index 000..3a08f60
--- /dev/null
+++ b/app-admin/customrescuecd-x86_64/Manifest
@@ -0,0 +1 @@
+DIST CUSTOMRESCUECD-x86_64-0.10.3.iso 1537474560 BLAKE2B 
d4812074013323d8372bd71bea1c81cbe8cb88e0cf87dd1ec7c4373a1c4f4023cfec383ea3327cb75aa903021d929ac7a29290a2a9a7a75857c591827af7a148
 SHA512 
1092dc85a82c1f17c362b19e91d36602debaab7d52a98945ebb494f9d8bec03fb07b16649c7401233a060ce95905c3f9259107c2eb9f80bd63d759740754105e

diff --git 
a/app-admin/customrescuecd-x86_64/customrescuecd-x86_64-0.10.3.ebuild 
b/app-admin/customrescuecd-x86_64/customrescuecd-x86_64-0.10.3.ebuild
new file mode 100644
index 000..96d32df
--- /dev/null
+++ b/app-admin/customrescuecd-x86_64/customrescuecd-x86_64-0.10.3.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="CUSTOMRESCUECD-x86_64"
+DESCRIPTION="A system rescue cd or usbstick for desktop and server based on 
gentoo"
+HOMEPAGE="https://sourceforge.net/projects/customrescuecd;
+SRC_URI="mirror://sourceforge/customrescuecd/"${MY_P}"-"${PV}".iso"
+
+LICENSE="GPL-3"
+SLOT="${PV}"
+KEYWORDS="~amd64"
+RESTRICT="bindist mirror"
+
+S=${WORKDIR}
+
+src_unpack() { :; }
+
+src_install() {
+   insinto "/usr/share/${PN%-*}"
+   doins "${DISTDIR}/${MY_P}-${PV}.iso"
+}
+
+pkg_postinst() {
+   local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
+
+   # no version newer than ours? we're the newest!
+   if ! has_version ">${CATEGORY}/${PF}"; then
+   ln -f -s -v "${MY_P}-${PV}.iso" "${f}" || die
+   fi
+}
+
+pkg_postrm() {
+   local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
+
+   # if there is no version newer than ours installed
+   if ! has_version ">${CATEGORY}/${PF}"; then
+   # and we are truly and completely uninstalled...
+   if [[ ! ${REPLACED_BY_VERSION} ]]; then
+   # then find an older version to set the symlink to
+   local newest_version=$(best_version 
"<${CATEGORY}/${PF}")
+
+   if [[ ${newest_version} ]]; then
+   # update the symlink
+   ln -f -s -v "${newest_version%-r*}.iso" "${f}" 
|| die
+   else
+   # last version removed? clean up the symlink
+   rm -v "${f}" || die
+   # and the parent directory
+   rmdir "${f%/*}" || die
+   fi
+   fi
+   fi
+}

diff --git a/app-admin/customrescuecd-x86_64/metadata.xml 
b/app-admin/customrescuecd-x86_64/metadata.xml
new file mode 100644
index 000..002f90c
--- /dev/null
+++ b/app-admin/customrescuecd-x86_64/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+andrea.postigli...@gmail.com
+Andrea Postiglione
+  
+  
+  
+customrescuecd
+  
+



[gentoo-commits] repo/proj/guru:master commit in: net-im/nheko/

2020-08-15 Thread Andrew Ammerlaan
commit: 8d48c4e2221cca354735589d67215e1af1a6258b
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sat Aug 15 12:11:37 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 12:11:37 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d48c4e2

net-im/nheko: Don't call base_src_prepare() 2 times.

cmake_src_prepare() and xdg_src_prepare() both call default()
a.k.a. base_src_prepare(). That would result in the attempt to apply
each patch 2 times.

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 net-im/nheko/nheko-0.7.1.ebuild | 2 +-
 net-im/nheko/nheko-0.7.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-im/nheko/nheko-0.7.1.ebuild b/net-im/nheko/nheko-0.7.1.ebuild
index 16b387a..43287ca 100644
--- a/net-im/nheko/nheko-0.7.1.ebuild
+++ b/net-im/nheko/nheko-0.7.1.ebuild
@@ -34,7 +34,7 @@ BDEPEND="dev-qt/linguist-tools:5"
 
 src_prepare() {
cmake_src_prepare
-   xdg_src_prepare
+   xdg_environment_reset
 
# TODO: Unbundle SingleApplication, blurhash and cpp-httplib.
 }

diff --git a/net-im/nheko/nheko-0.7.2.ebuild b/net-im/nheko/nheko-0.7.2.ebuild
index b226c0c..e6ce8bd 100644
--- a/net-im/nheko/nheko-0.7.2.ebuild
+++ b/net-im/nheko/nheko-0.7.2.ebuild
@@ -34,7 +34,7 @@ BDEPEND="dev-qt/linguist-tools:5"
 
 src_prepare() {
cmake_src_prepare
-   xdg_src_prepare
+   xdg_environment_reset
 
# TODO: Unbundle SingleApplication, blurhash and cpp-httplib.
 }



[gentoo-commits] repo/proj/guru:master commit in: dev-embedded/rauc/files/, dev-embedded/rauc/

2020-08-15 Thread Andrew Ammerlaan
commit: 59bc932e4b3011d0ddc09ea71b581dbd1aac6133
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Aug 15 06:48:35 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 06:48:35 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=59bc932e

dev-embedded/rauc: Bump version

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>

 dev-embedded/rauc/Manifest   |  1 +
 dev-embedded/rauc/files/rauc-1.4-tests.patch | 40 +++
 dev-embedded/rauc/rauc-1.4.ebuild| 57 
 3 files changed, 98 insertions(+)

diff --git a/dev-embedded/rauc/Manifest b/dev-embedded/rauc/Manifest
index 502637a..2bd0fb6 100644
--- a/dev-embedded/rauc/Manifest
+++ b/dev-embedded/rauc/Manifest
@@ -1 +1,2 @@
 DIST rauc-1.3.tar.xz 1336420 BLAKE2B 
79d8cc081b7871a7c4cf7eee47c042cb57723c60dad0cfefcb194048fe1c9a52261e1ef037f397ec80e7c1f1690fd34e4ce44a2d7cb427a5a48632760215e48b
 SHA512 
044f679f81c0af58d5620a16c3a0fd7bc8ae50dccc403dd26f201735e0d7488e485b84ac38329b5f091648ae1173088a4e14976f6d28ef185a07daed82cc5b65
+DIST rauc-1.4.tar.xz 807676 BLAKE2B 
e8dc46daf861c4ff5e80ac5af08eb03afb071b313dce38cbc127205f24c2f25793f51812c95ae4a0d914ea4cfec257ee06e3776b78b20488a6a33edd9b08e5c0
 SHA512 
6ac572d396cae609060ff4a7d2a26f5b8ed839504e76628f47388b1dac93ad1794114a9c105c5a9eb070478f9bd1b6f2cd6aeb5e84c64fdce4d7cbe30bb9ea31

diff --git a/dev-embedded/rauc/files/rauc-1.4-tests.patch 
b/dev-embedded/rauc/files/rauc-1.4-tests.patch
new file mode 100644
index 000..fda7fc8
--- /dev/null
+++ b/dev-embedded/rauc/files/rauc-1.4-tests.patch
@@ -0,0 +1,40 @@
+From 0b0cbdd4e376b60a2974c502c100395a381249e8 Mon Sep 17 00:00:00 2001
+From: Kurt Kanzenbach 
+Date: Sat, 15 Aug 2020 08:45:21 +0200
+Subject: [PATCH] tests: Disable network tests
+
+The network tests won't work within portage. Disable them.
+
+Signed-off-by: Kurt Kanzenbach 
+---
+ Makefile.am | 7 ---
+ 1 file changed, 7 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index efe55792fabb..2c6d8080e992 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -150,10 +150,6 @@ check_PROGRAMS = \
+   test/progress.test \
+   test/slot.test
+ 
+-if WANT_NETWORK
+-check_PROGRAMS += test/network.test
+-endif
+-
+ if WANT_JSON
+ check_PROGRAMS += test/boot_switch.test
+ endif
+@@ -233,9 +229,6 @@ test_utils_test_LDADD = librauctest.la
+ test_install_test_SOURCES = test/install.c
+ test_install_test_LDADD = librauctest.la
+ 
+-test_network_test_SOURCES = test/network.c
+-test_network_test_LDADD = librauctest.la
+-
+ test_progress_test_SOURCES = test/progress.c
+ test_progress_test_LDADD = librauctest.la
+ 
+-- 
+2.26.2
+

diff --git a/dev-embedded/rauc/rauc-1.4.ebuild 
b/dev-embedded/rauc/rauc-1.4.ebuild
new file mode 100644
index 000..8172482
--- /dev/null
+++ b/dev-embedded/rauc/rauc-1.4.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DOCBUILDER="sphinx"
+DOCDIR="${S}/docs"
+
+inherit autotools docs
+
+DESCRIPTION="Lightweight update client that runs on your Embedded Linux device"
+HOMEPAGE="https://rauc.io/;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
+
+SLOT="0"
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="json network service test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   dev-util/gdbus-codegen
+   virtual/pkgconfig
+   test? ( sys-fs/squashfs-tools )
+"
+RDEPEND="
+   dev-libs/glib:2
+   dev-libs/openssl:0=
+   json? ( dev-libs/json-glib )
+   network? ( net-misc/curl )
+   service? ( sys-apps/dbus )
+"
+DEPEND="
+   ${RDEPEND}
+"
+
+PATCHES=( "${FILESDIR}/${P}-tests.patch" )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable json)
+   $(use_enable network)
+   $(use_enable service)
+   )
+   econf "${myconf[@]}"
+}
+
+src_compile() {
+   default
+   docs_compile
+}



[gentoo-commits] repo/proj/guru:master commit in: sys-boot/customrescuecd-x86-grub/files/, sys-boot/customrescuecd-x86-grub/

2020-08-15 Thread Andrew Ammerlaan
commit: 39ac902251b2984330f84e81af76aaf6d93171fc
Author: Andrea Postiglione  gmail  com>
AuthorDate: Sat Aug 15 11:13:58 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 11:13:58 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=39ac9022

sys-boot/customrescuecd-x86-grub : initial ebuild

Signed-off-by: Andrea Postiglione  gmail.com>

 .../customrescuecd-x86-grub-0.1.ebuild | 31 
 .../files/customrescuecd.default   |  7 
 .../files/customrescuecd.grub  | 43 ++
 sys-boot/customrescuecd-x86-grub/metadata.xml  | 17 +
 4 files changed, 98 insertions(+)

diff --git 
a/sys-boot/customrescuecd-x86-grub/customrescuecd-x86-grub-0.1.ebuild 
b/sys-boot/customrescuecd-x86-grub/customrescuecd-x86-grub-0.1.ebuild
new file mode 100644
index 000..7c07616
--- /dev/null
+++ b/sys-boot/customrescuecd-x86-grub/customrescuecd-x86-grub-0.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Grub menu entries for the .iso image of customrescuecd"
+HOMEPAGE="https://sourceforge.net/projects/customrescuecd/;
+SRC_URI=""
+
+LICENSE="GPL-2"
+SLOT=0
+KEYWORDS="~x86"
+
+S=${WORKDIR}
+
+RDEPEND="app-admin/customrescuecd-x86
+   sys-boot/grub"
+
+src_install() {
+   exeinto /etc/grub.d
+   newexe "${FILESDIR}"/customrescuecd.grub 39_customrescuecd
+
+   insinto /etc/default
+   newins "${FILESDIR}"/customrescuecd.default customrescuecd
+}
+
+pkg_postinst() {
+   elog "To add the menu entries for customrescuecd to grub, you should 
now run"
+   elog "  grub-mkconfig -o /boot/grub/grub.cfg"
+   elog "You can set custom bootoptions in /etc/default/customrescuecd"
+}

diff --git a/sys-boot/customrescuecd-x86-grub/files/customrescuecd.default 
b/sys-boot/customrescuecd-x86-grub/files/customrescuecd.default
new file mode 100644
index 000..ce093e3
--- /dev/null
+++ b/sys-boot/customrescuecd-x86-grub/files/customrescuecd.default
@@ -0,0 +1,7 @@
+Here you can set custom bootoptions for the CustomRescueCD
+#
+# You can add for example in a space separated list:
+#  copytoram: causes the iso file to be fully loaded into memory
+#   this requires 1.5G of memory to cache everything
+#
+CRCD_BOOTOPTIONS=""

diff --git a/sys-boot/customrescuecd-x86-grub/files/customrescuecd.grub 
b/sys-boot/customrescuecd-x86-grub/files/customrescuecd.grub
new file mode 100644
index 000..7c5965d
--- /dev/null
+++ b/sys-boot/customrescuecd-x86-grub/files/customrescuecd.grub
@@ -0,0 +1,43 @@
+#!/bin/sh
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+. /usr/share/grub/grub-mkconfig_lib
+
+if [ -r /etc/default/customrescuecd ] ; then
+  . /etc/default/customrescuecd
+fi
+
+# srcd = path of newest link to iso of customrescuecd, created by the ebuild
+#of customrescuecd-x86
+
+crcd="/usr/share/systemrescuecd/systemrescuecd-x86-newest.iso"
+
+longname="CustomRescueCD"
+bootops=")"
+
+if [ ! -z "${CRCD_BOOTOPTIONS}" ]; then
+   bootops=" with bootoptions)"
+fi
+
+if [ -f "${crcd}" ]; then
+
+   device=$(${grub_probe} --target=device "${crcd}")
+   path=$(make_system_path_relative_to_its_root "${crcd}")
+   grub_string=$(prepare_grub_to_access_device "${device}" | grub_add_tab 
| grub_add_tab)
+
+   gettext_printf "Found %s on %s\n" "${longname}" "${device}" >&2
+   onstr=$(gettext_printf "(on %s)" "${device}")
+
+   cat << EOF
+submenu "${longname}" --class submenu {
+   menuentry "${longname} (32bit standard${bootops}" --class rescue {
+${grub_string}
+   set isofile=${path}
+   loopback loop \${isofile}
+   linux (loop)/boot/x86/customrescue32 ${CRCD_BOOTOPTIONS} 
customisobasedir=customresccd customisolabel=CRC32 vga=791 net.ifnames=0
+   }
+}
+EOF
+
+fi

diff --git a/sys-boot/customrescuecd-x86-grub/metadata.xml 
b/sys-boot/customrescuecd-x86-grub/metadata.xml
new file mode 100644
index 000..2e146c3
--- /dev/null
+++ b/sys-boot/customrescuecd-x86-grub/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gentoob...@milaw.biz
+   Michael Lange
+   Accepts only mails from Gentoo's 
Bugzilla
+   
+   
+   mgo...@gentoo.org
+   Michał Górny
+   
+   
+   This package adds menu entries in GRUB for the SystemRescueCD. 
You can
+   add custom bootoptions for SystemRescueCD in a special config 
file.
+   
+



[gentoo-commits] repo/proj/guru:master commit in: net-im/nheko/

2020-08-15 Thread Andrew Ammerlaan
commit: edbacefb52d3992741406ede9cbe1aef5d3e8036
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sat Aug 15 12:08:26 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 12:09:27 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=edbacefb

net-im/nheko: Move dev-qt/linguist-tools to BDEPEND.

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 net-im/nheko/nheko-0.7.1.ebuild | 2 +-
 net-im/nheko/nheko-0.7.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-im/nheko/nheko-0.7.1.ebuild b/net-im/nheko/nheko-0.7.1.ebuild
index e5dcde9..16b387a 100644
--- a/net-im/nheko/nheko-0.7.1.ebuild
+++ b/net-im/nheko/nheko-0.7.1.ebuild
@@ -28,9 +28,9 @@ RDEPEND="
 "
 DEPEND="
${RDEPEND}
-   dev-qt/linguist-tools:5
dev-libs/spdlog
 "
+BDEPEND="dev-qt/linguist-tools:5"
 
 src_prepare() {
cmake_src_prepare

diff --git a/net-im/nheko/nheko-0.7.2.ebuild b/net-im/nheko/nheko-0.7.2.ebuild
index 54b3b78..b226c0c 100644
--- a/net-im/nheko/nheko-0.7.2.ebuild
+++ b/net-im/nheko/nheko-0.7.2.ebuild
@@ -28,9 +28,9 @@ RDEPEND="
 "
 DEPEND="
${RDEPEND}
-   dev-qt/linguist-tools:5
dev-libs/spdlog
 "
+BDEPEND="dev-qt/linguist-tools:5"
 
 src_prepare() {
cmake_src_prepare



[gentoo-commits] repo/proj/guru:master commit in: sys-libs/nss-tls/

2020-08-15 Thread Andrew Ammerlaan
commit: 60336b57a77f7cede28ac960018f2813c046f48d
Author: Andrea Postiglione  gmail  com>
AuthorDate: Sat Aug 15 13:25:59 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 13:26:44 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=60336b57

sys-libs/nss-tls : fix binary strip

Signed-off-by: Andrea Postiglione  gmail.com>

 sys-libs/nss-tls/nss-tls-1.0.ebuild  | 5 -
 sys-libs/nss-tls/nss-tls-.ebuild | 5 -
 2 files changed, 10 deletions(-)

diff --git a/sys-libs/nss-tls/nss-tls-1.0.ebuild 
b/sys-libs/nss-tls/nss-tls-1.0.ebuild
index 0c7ea1e..fb386f9 100644
--- a/sys-libs/nss-tls/nss-tls-1.0.ebuild
+++ b/sys-libs/nss-tls/nss-tls-1.0.ebuild
@@ -22,10 +22,6 @@ BDEPEND="${DEPEND}
dev-util/meson
dev-util/ninja"
 
-QA_PRESTRIPPED="/usr/bin/tlslookup
-   /usr/lib64/libnss_tls.so.2
-   /usr/sbin/nss-tlsd"
-
 src_prepare() {
default
sed -e "s/@0@\/run\/nss-tls/\/var\/run\/nss-tls/" -i 
"${S}"/meson.build || die
@@ -34,7 +30,6 @@ src_prepare() {
 src_configure() {
local emesonargs=(
--buildtype=release
-   -Dstrip=true
)
meson_src_configure
 }

diff --git a/sys-libs/nss-tls/nss-tls-.ebuild 
b/sys-libs/nss-tls/nss-tls-.ebuild
index cbce974..ac8fe9c 100644
--- a/sys-libs/nss-tls/nss-tls-.ebuild
+++ b/sys-libs/nss-tls/nss-tls-.ebuild
@@ -22,10 +22,6 @@ BDEPEND="${DEPEND}
dev-util/meson
dev-util/ninja"
 
-QA_PRESTRIPPED="/usr/bin/tlslookup
-   /usr/lib64/libnss_tls.so.2
-   /usr/sbin/nss-tlsd"
-
 EGIT_REPO_URI="https://github.com/dimkr/nss-tls.git;
 EGIT_BRANCH="master"
 
@@ -37,7 +33,6 @@ src_prepare() {
 src_configure() {
local emesonargs=(
--buildtype=release
-   -Dstrip=true
)
meson_src_configure
 }



[gentoo-commits] repo/proj/guru:master commit in: app-admin/customrescuecd-x86/

2020-08-15 Thread Andrew Ammerlaan
commit: bc6b76c53ce768f2651581738ed6619b3b7f9e00
Author: Andrea Postiglione  gmail  com>
AuthorDate: Fri Aug 14 19:40:53 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Aug 14 19:40:53 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc6b76c5

app-admin/customrescuecd-x86: initial ebuild

Signed-off-by: Andrea Postiglione  gmail.com>

 app-admin/customrescuecd-x86/Manifest  |  1 +
 .../customrescuecd-x86-0.3.1.ebuild| 55 ++
 app-admin/customrescuecd-x86/metadata.xml  | 19 
 3 files changed, 75 insertions(+)

diff --git a/app-admin/customrescuecd-x86/Manifest 
b/app-admin/customrescuecd-x86/Manifest
new file mode 100644
index 000..047efe1
--- /dev/null
+++ b/app-admin/customrescuecd-x86/Manifest
@@ -0,0 +1 @@
+DIST CUSTOMRESCUECD-x86-0.3.1.iso 1426063360 BLAKE2B 
8116b657aed9f5fb9ac0d56f6284bc45a4e050ad7e84cd4cb7c5217b07c9151c82776589aefa3c030cf766106bca7948d48cde2055c408c4e32ea081297b6117
 SHA512 
3aa0d2ab54920a19046fc1038313e01a99287301b06f25b1346c54d680c4ca2395e9c9010b3299cdc94a0198ec0f63209d09a1d086243e3b82216e7f4d63e0e6

diff --git a/app-admin/customrescuecd-x86/customrescuecd-x86-0.3.1.ebuild 
b/app-admin/customrescuecd-x86/customrescuecd-x86-0.3.1.ebuild
new file mode 100644
index 000..4c3a5f6
--- /dev/null
+++ b/app-admin/customrescuecd-x86/customrescuecd-x86-0.3.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="CUSTOMRESCUECD-x86"
+DESCRIPTION="A system rescue cd or usbstick for desktop and server based on 
gentoo"
+HOMEPAGE="https://sourceforge.net/projects/customrescuecd;
+SRC_URI="mirror://sourceforge/customrescuecd/"${MY_P}"-"${PV}".iso"
+
+LICENSE="GPL-3"
+SLOT="${PV}"
+KEYWORDS="~x86"
+RESTRICT="bindist mirror"
+
+S=${WORKDIR}
+
+src_unpack() { :; }
+
+src_install() {
+   insinto "/usr/share/${PN%-*}"
+   doins "${DISTDIR}/${MY_P}-${PV}.iso"
+}
+
+pkg_postinst() {
+   local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
+
+   # no version newer than ours? we're the newest!
+   if ! has_version ">${CATEGORY}/${PF}"; then
+   ln -f -s -v "${MY_P}-${PV}.iso" "${f}" || die
+   fi
+}
+
+pkg_postrm() {
+   local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
+
+   # if there is no version newer than ours installed
+   if ! has_version ">${CATEGORY}/${PF}"; then
+   # and we are truly and completely uninstalled...
+   if [[ ! ${REPLACED_BY_VERSION} ]]; then
+   # then find an older version to set the symlink to
+   local newest_version=$(best_version 
"<${CATEGORY}/${PF}")
+
+   if [[ ${newest_version} ]]; then
+   # update the symlink
+   ln -f -s -v "${newest_version%-r*}.iso" "${f}" 
|| die
+   else
+   # last version removed? clean up the symlink
+   rm -v "${f}" || die
+   # and the parent directory
+   rmdir "${f%/*}" || die
+   fi
+   fi
+   fi
+}

diff --git a/app-admin/customrescuecd-x86/metadata.xml 
b/app-admin/customrescuecd-x86/metadata.xml
new file mode 100644
index 000..47af661
--- /dev/null
+++ b/app-admin/customrescuecd-x86/metadata.xml
@@ -0,0 +1,19 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+andrea.postigli...@gmail.com
+Andrea Postiglione
+  
+  
+  
+
+  Pass downloaded images through isohybrid in order to make it
+  possible to copy them directly to USB media and boot (requires
+  sys-boot/syslinux at build time).
+
+  
+  
+customrescuecd
+  
+



[gentoo-commits] repo/proj/guru:master commit in: app-admin/customrescuecd-x86/

2020-08-15 Thread Andrew Ammerlaan
commit: 9492c002cb0605c503e949100c6c648033d2773d
Author: Andrea Postiglione  gmail  com>
AuthorDate: Sat Aug 15 14:50:59 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sat Aug 15 14:50:59 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9492c002

app-admin/customrescuecd-x86 : fix metadata

Signed-off-by: Andrea Postiglione  gmail.com>

 app-admin/customrescuecd-x86/metadata.xml | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/app-admin/customrescuecd-x86/metadata.xml 
b/app-admin/customrescuecd-x86/metadata.xml
index 47af661..002f90c 100644
--- a/app-admin/customrescuecd-x86/metadata.xml
+++ b/app-admin/customrescuecd-x86/metadata.xml
@@ -6,13 +6,6 @@
 Andrea Postiglione
   
   
-  
-
-  Pass downloaded images through isohybrid in order to make it
-  possible to copy them directly to USB media and boot (requires
-  sys-boot/syslinux at build time).
-
-  
   
 customrescuecd
   



[gentoo-commits] repo/user/dlang:master commit in: dev-util/dcd/

2020-08-15 Thread Marco Leise
commit: d6206be2635d981e916d90f27e0b94b689eccb71
Author: Marco Leise  gmx  de>
AuthorDate: Sat Aug 15 16:31:45 2020 +
Commit: Marco Leise  gmx  de>
CommitDate: Sat Aug 15 16:55:23 2020 +
URL:https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=d6206be2

dcd-0.13.1

Signed-off-by: Marco Leise  gmx.de>

 dev-util/dcd/Manifest  |   5 ++
 dev-util/dcd/dcd-0.13.1.ebuild | 102 +
 2 files changed, 107 insertions(+)

diff --git a/dev-util/dcd/Manifest b/dev-util/dcd/Manifest
index c11a1a4..2c0f9e0 100644
--- a/dev-util/dcd/Manifest
+++ b/dev-util/dcd/Manifest
@@ -1,6 +1,11 @@
 DIST DCD-0.12.0.tar.gz 135294 BLAKE2B 
87ba696325f205435004dd9bcfe036108e0cf35a1086cd30b7eb045a34e00f432dcab64ca019618883edfe3c6f277893f4b810b1ab72efa129606c3d978f69df
 SHA512 
caadc5d497d6a209fda23523164247c1b921cebbe641fb6b5cedcecd20075d9283407f132886a369b15286c327e6a9e6015f290c31283e2a49a0e676b4cf82a9
+DIST DCD-0.13.1.tar.gz 136095 BLAKE2B 
ae0ee1acec1201d724feb178b58483651cf5498b7c9aa66036afe153972a9e889f400d7d86612d021faa576d64587892f6a2a068b9a8e4ebe241414c727d7016
 SHA512 
c52540b4ba02c7bca77beca74ae482cd0b046fe7e16498e30600a1ca03f997a365eacb7450a1c13ae4ab3c9c8bfe6c65a8aa899697755f4596804ff636a86784
 DIST containers-a978c3cda3f6ec3ba7449ec5c08dd5cd4dd79c6e.tar.gz 54657 BLAKE2B 
67d496d6c56ee4bd1b5a9febe2251183d1e8db4e0f2b60e7529b0d5b9540331f6376ade38ccc698658872f650b6f2f8da2cc6df34b4bae49ad85565af4731b81
 SHA512 
39b6bd03ca3b4013ff4e340e980d85b05db00d227a43c225ef60871b83d18df5af79acccb3bdf0182fd974b12b483bab23fb28328d84302dd590eeb82992f0ed
+DIST containers-f4e79375539554b3793adf1c557361a64a073524.tar.gz 55265 BLAKE2B 
208ba1baf12a6f690861bc2798c0b94f46f8155509832613f4d2308826c14ee951a7bb3e45bcea852e4747308c267bb1d37cf5383ecea80ebf2dabf5ca017b51
 SHA512 
d1779a060b3c846ad70942b5c7f8d05733d58964a4585913a3515d8dfe2dcc811a57af1d7bdb6e3606ccce1ba637f9f029de07213fddea00e2305c9d75293be1
 DIST dsymbol-f4a481cdc23b58ce544c2e91a39d5c0d406b67ac.tar.gz 31621 BLAKE2B 
a0ad6d5e9392ca239a0aa67cbcbc3210eff1b33d7a2d82d8df300635ab76bdd9a607ab47be2af0b5b812839814c529ea1bab2e8c2a9ae6bd2ccfc8386fc7b623
 SHA512 
38a74593a2ded9360b42d87ae47e343475dfcde6de67d14ca76814361166210745c0035b6ff6f4ca46f62fd09b569eb0de02b0c8e5b7db486c3b89db7f4483f9
+DIST dsymbol-f9a3d302527a9e50140991562648a147b6f5a78e.tar.gz 34796 BLAKE2B 
c9fb476a348b030d7c57e43b0e21fb8db255ba4b350f7bde6315750ed5888eef9ce32ec68428f55e321bf6e9f167433ce3279185ff0ce0b899fbf5257b4d40c5
 SHA512 
2133f1c8dc966920496b7851f9ae094f10170117d1d9961f96c5382df126c3f72a8eb678dbc106bac5f3b4c1f97848428bf9004656c57d1c1c5f2697b7d2a4da
+DIST libdparse-1393ee4d0c8e50011e641e06d64c429841fb3c2b.tar.gz 137198 BLAKE2B 
e2d4122f63847fe9c0aa7591f5d5cfb9b8708c02c45b02b24fbb488f17a9dc0986ab0525a573e6e4e43daa3a1b8880edc93e0b6061fd5486a39e8fd45f516dd4
 SHA512 
8339e339d667f7fbd524f12c89a824f95a2151ce126fae33bbf940f76dcc460d42c0c412fa169867eaa056dabb1ef2aaa89b95b47219294edfc166aafa48c89c
 DIST libdparse-5270739bcd1962418784c7760773e24d28b6009b.tar.gz 123594 BLAKE2B 
879a21435ba622974a2c6d1bf7db7deb6fbaff07838325c6a7d0958272066b12b3fa6f96274126b6380a0da675d172ff07b1e0907ac6d3184d5842c86091717f
 SHA512 
90ee5887b89ef1597a618761d6a974ad947946b5e7eaf56df883ab58a9d983279cbedc5ccfa01446576c3e74e4d4c8ac467585bb1b96ad7059ddf78dfc4557ff
 DIST msgpack-d-19d9245e315a85763754ded6912c2375c9226e04.tar.gz 143902 BLAKE2B 
be7f122a85af0e6313a9590496f6fa1a910ac1f092c378c050efb2ee54e39caf2a8b6200297fcb251b16b27caefd4be78cd16a8542bfa8875fbaca6472c9b6b5
 SHA512 
3f391c5f1b6c04bfcde96c97d2325d946df3bbeeac752bcca267d2c737f8752342dc415517e61691729787f766384edc796b82fac23b55191b4f84a50f931777
+DIST msgpack-d-480f3bf9ee80ccf6695ed900cfcc1850ba8da991.tar.gz 143848 BLAKE2B 
44ac6f1efbbdb455af694cc476524535bebe993777a8c47d93a7cff21d825c2b8ce4caaf0d9f072f1e37869a9e50821abbd60e23a38546e0522047809cd0695a
 SHA512 
76f7049c9f9f4128b9e9691e224c2ff5d8ee5400bf0796cc362386f0bc6f2359bb1694606923aec21eab539f65b93b828c2e018dee22358b91713365dd443e4d
 DIST stdx-allocator-d6e6ce4a838e0dad43ef13f050f96627339cdccd.tar.gz 103648 
BLAKE2B 
c08925df810761bb4825d6058375dcc5415f4838403b3668aeff5c1be93c7d04b49c1994da27aa498cd0f4abd1ff923e8d906ae53c922f94bc63dac334b7f138
 SHA512 
3a41f95505e92d79a6b966d21d96fe5b5bb2b2f3762b09998b27334684d815a82a3e705935faa1b543a93ffb274c67b9110b2b1b7364f7d405bd65d05b819271

diff --git a/dev-util/dcd/dcd-0.13.1.ebuild b/dev-util/dcd/dcd-0.13.1.ebuild
new file mode 100644
index 000..1f9f451
--- /dev/null
+++ b/dev-util/dcd/dcd-0.13.1.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Auto-complete program for the D programming language"
+HOMEPAGE="https://github.com/dlang-community/DCD;
+LICENSE="GPL-3"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="systemd"
+
+CONTAINERS="f4e79375539554b3793adf1c557361a64a073524"
+DSYMBOL="f9a3d302527a9e50140991562648a147b6f5a78e"

[gentoo-commits] repo/user/dlang:master commit in: dev-util/dfmt/

2020-08-15 Thread Marco Leise
commit: f2f23388141ffb5090cba63931294c1c7fb82073
Author: Marco Leise  gmx  de>
AuthorDate: Sat Aug 15 17:08:02 2020 +
Commit: Marco Leise  gmx  de>
CommitDate: Sat Aug 15 17:08:02 2020 +
URL:https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=f2f23388

dscanner-0.10.0

Signed-off-by: Marco Leise  gmx.de>

 dev-util/dfmt/Manifest   |  2 ++
 dev-util/dfmt/dfmt-0.13.0.ebuild | 58 
 2 files changed, 60 insertions(+)

diff --git a/dev-util/dfmt/Manifest b/dev-util/dfmt/Manifest
index bd5bc86..65febef 100644
--- a/dev-util/dfmt/Manifest
+++ b/dev-util/dfmt/Manifest
@@ -1,3 +1,5 @@
 DIST dfmt-0.12.0.tar.gz 89416 BLAKE2B 
20b18358ce6fe64c86eb8c6e440f0a855810dbc571d45497388e3e622d2fd339f75e339c7099baa15afae9730cde00cb3655cc64291834f8ceb01e57cea89d49
 SHA512 
1f6285824e72540bf1d41d84d8df7cf3e56e6bd3996271126a062a5f7f6532a3dcdc4e63a8bd3bdb2cb5d85eefd20c2705ded7e7c6fd4860f08573c13b719e04
+DIST dfmt-0.13.0.tar.gz 90119 BLAKE2B 
f47d0a661b8b9c571766e017cf50fc8dcbe0d0a05efc62ddb36734013986d2244d76e4977dc4893d036e297f20c818780d76ea75232168d7a652b0ba8067316f
 SHA512 
1cea004218dc49f9c7079cc2063fccac8b9c97b9683929f2abde6aceedf1f3ad35009fd3978affaf5d33f8779918e9fcf9084a91ba21c87680a25d33bc6bc8ca
+DIST libdparse-1557eb079a2d5958e0a7136f942eea0922d58e8a.tar.gz 132387 BLAKE2B 
180316ef25713eb723e43e13c983f2c7b8c775f7e4c984217b497505ed0f7a9b1eb351867317a1e0957dd368a71b7fe403d8a636baf8ad8240f2b39fb7bc2c69
 SHA512 
1dbab30db4f14d99f27672be12b63bba04534a0c69c58453441b8a654336d9a38c869a6db738442b692d4d7cfdb0f68ed0bfaaa462c58aed0bedef60ea4dfbac
 DIST libdparse-597d9a697b1f8a51fb2f441c61d0c6cc4eadc6d1.tar.gz 124830 BLAKE2B 
1a7b4246b00938c44c3e32c7d0fdda4a0d343bbafad25e3e003c4672aac1dd3677a8163750b13753aa484e6bcdd120b35fc736db6d5c0be4eb3d9c78ab6a9e8e
 SHA512 
c3b5660d455ca3dd8d22ae996ae437583b98c00e441bedfb72a5fcf8ccd4dc579e4fc8980faab501ff757ced62c079fbc116f91c796174895b33a57f0a183bbf
 DIST stdx-allocator-ae237cabd1843774cc78aad0729c914a3dd579db.tar.gz 103650 
BLAKE2B 
8d03c2dc76194b18da92261c533c402b87bda1964662070d02ceacbab3dda91a834c0c8bfe45feb1d9a3d7669f96a2a1f7b9a6b7eff7ea53069480d8de8fe15e
 SHA512 
893e5ecefac86a64b3a91f034cc9f42aabc264d111b40accf890b505ec9d077fcaac0b29fc202400448994e4ff021263beef7716798734cb9b71b6aad1aaf394

diff --git a/dev-util/dfmt/dfmt-0.13.0.ebuild b/dev-util/dfmt/dfmt-0.13.0.ebuild
new file mode 100644
index 000..50ab11e
--- /dev/null
+++ b/dev-util/dfmt/dfmt-0.13.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Dfmt is a formatter for D source code"
+HOMEPAGE="https://github.com/dlang-community/dfmt;
+LICENSE="Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+LIBDPARSE="1557eb079a2d5958e0a7136f942eea0922d58e8a"
+ALLOCATOR="ae237cabd1843774cc78aad0729c914a3dd579db"
+SRC_URI="
+   https://github.com/dlang-community/dfmt/archive/v${PV}.tar.gz -> 
${PN}-${PV}.tar.gz
+   
https://github.com/dlang-community/libdparse/archive/${LIBDPARSE}.tar.gz -> 
libdparse-${LIBDPARSE}.tar.gz
+   
https://github.com/dlang-community/stdx-allocator/archive/${ALLOCATOR}.tar.gz 
-> stdx-allocator-${ALLOCATOR}.tar.gz
+   "
+
+DLANG_VERSION_RANGE="2.075-"
+DLANG_PACKAGE_TYPE="single"
+
+inherit dlang bash-completion-r1
+
+src_prepare() {
+   mkdir bin || die "Failed to create 'bin' directory."
+   cat > bin/githash.txt << EOF
+v${PV}
+EOF
+   dlang_src_prepare
+}
+
+d_src_compile() {
+   local libdparse_src="../libdparse-${LIBDPARSE}/src"
+   local allocator_src="../stdx-allocator-${ALLOCATOR}/source"
+   local imports="src ${libdparse_src} ${allocator_src}"
+   local string_imports="bin"
+
+   dlang_compile_bin "bin/dfmt" "src/dfmt/main.d" "src/dfmt/config.d" 
"src/dfmt/editorconfig.d" \
+   "src/dfmt/ast_info.d" "src/dfmt/indentation.d" 
"src/dfmt/tokens.d" "src/dfmt/wrapping.d" \
+   "src/dfmt/formatter.d" "src/dfmt/globmatch_editorconfig.d" \
+   ${libdparse_src}/dparse/lexer.d 
${libdparse_src}/dparse/parser.d ${libdparse_src}/dparse/ast.d \
+   ${libdparse_src}/dparse/rollback_allocator.d 
${libdparse_src}/dparse/stack_buffer.d \
+   ${libdparse_src}/dparse/trivia.d 
${libdparse_src}/std/experimental/lexer.d \
+   ${allocator_src}/stdx/allocator/common.d 
${allocator_src}/stdx/allocator/internal.d \
+   ${allocator_src}/stdx/allocator/mallocator.d 
${allocator_src}/stdx/allocator/package.d \
+   ${allocator_src}/stdx/allocator/gc_allocator.d 
${allocator_src}/stdx/allocator/typed.d
+}
+
+d_src_test() {
+   cd tests && ./test.sh
+}
+
+d_src_install() {
+   dobin bin/dfmt
+   dodoc README.md LICENSE.txt
+   dobashcomp bash-completion/completions/dfmt
+}



[gentoo-commits] repo/user/dlang:master commit in: x11-terms/tilix/

2020-08-15 Thread Marco Leise
commit: 1691b007fddd730f40fa180140e650d3607a40b2
Author: Marco Leise  gmx  de>
AuthorDate: Sat Aug 15 16:01:27 2020 +
Commit: Marco Leise  gmx  de>
CommitDate: Sat Aug 15 16:01:27 2020 +
URL:https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=1691b007

Updated tilix ebuild to EAPI=7. Does not compile with GCC due to 
shared/constness issues in object.d

Signed-off-by: Marco Leise  gmx.de>

 x11-terms/tilix/tilix-1.9.3-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-terms/tilix/tilix-1.9.3-r1.ebuild 
b/x11-terms/tilix/tilix-1.9.3-r1.ebuild
index 81192b1..6009c81 100644
--- a/x11-terms/tilix/tilix-1.9.3-r1.ebuild
+++ b/x11-terms/tilix/tilix-1.9.3-r1.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
 
 DESCRIPTION="A tiling terminal emulator for Linux using GTK+ 3"
 HOMEPAGE="https://gnunn1.github.io/tilix-web/;
@@ -14,7 +14,7 @@ IUSE="+crypt"
 DLANG_VERSION_RANGE="2.075-2.086"
 DLANG_PACKAGE_TYPE="single"
 
-inherit gnome2 dlang
+inherit dlang
 
 GITHUB_URI="https://codeload.github.com/gnunn1;
 SRC_URI="${GITHUB_URI}/${PN}/tar.gz/${PV} -> ${PN}-${PV}.tar.gz"
@@ -37,7 +37,7 @@ src_prepare() {
 d_src_configure() {
export GTKD_CFLAGS="-I/usr/include/dlang/gtkd-3"
export GTKD_LIBS="-L-ldl -L-lvted-3 -L-lgtkd-3"
-   DC="${DMD}" default_src_configure
+   default_src_configure
 }
 
 d_src_install() {



[gentoo-commits] repo/user/dlang:master commit in: dev-util/dscanner/

2020-08-15 Thread Marco Leise
commit: 2b76b80189c26e3eaa952ee6fc2b1801c82679d6
Author: Marco Leise  gmx  de>
AuthorDate: Sat Aug 15 17:15:28 2020 +
Commit: Marco Leise  gmx  de>
CommitDate: Sat Aug 15 17:15:28 2020 +
URL:https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=2b76b801

dscanner-0.10.0

Signed-off-by: Marco Leise  gmx.de>

 dev-util/dscanner/Manifest   |  4 ++
 dev-util/dscanner/dscanner-0.10.0.ebuild | 81 
 2 files changed, 85 insertions(+)

diff --git a/dev-util/dscanner/Manifest b/dev-util/dscanner/Manifest
index 33de5c8..d2f32cb 100644
--- a/dev-util/dscanner/Manifest
+++ b/dev-util/dscanner/Manifest
@@ -1,7 +1,11 @@
 DIST containers-f4e79375539554b3793adf1c557361a64a073524.tar.gz 55265 BLAKE2B 
208ba1baf12a6f690861bc2798c0b94f46f8155509832613f4d2308826c14ee951a7bb3e45bcea852e4747308c267bb1d37cf5383ecea80ebf2dabf5ca017b51
 SHA512 
d1779a060b3c846ad70942b5c7f8d05733d58964a4585913a3515d8dfe2dcc811a57af1d7bdb6e3606ccce1ba637f9f029de07213fddea00e2305c9d75293be1
+DIST dscanner-0.10.0.tar.gz 89765 BLAKE2B 
e4426570a2161a9c13bedf69d1d8f868764340c36e658f3726ea582f3329d5bf283674f336b30614eced4a35d84bbffdba89d10e85dd44a3b8d97461f186c821
 SHA512 
29d72862eba2e93c65534c427b9d57f7f4d2fcd0e2a94750e93696bca93d9ddeed35d93df2ad5d8bdc9d8e1e2424fe7df20e23793c1a650b0c3849ae08d63dd4
 DIST dscanner-0.9.0.tar.gz 89372 BLAKE2B 
a1f958aa4a9319bd6aa856b0d54d22dde2bc84c392f5f50fcf17d61641a7a258091ea8a13516919583b5f02dbc37a79021a4aae68443fe46ed7a3732a1be3d6f
 SHA512 
4d2564590a48231d4c1dd8a4126d5b640bd83e90e7189ceac33c2727f981f690e94079411f7f3cbb727be780069cebeacdd38fa6b78b4516cec4e23a8eb12aff
+DIST dsymbol-71168a8449958e1807a8ba22c8a4df15456bae83.tar.gz 34626 BLAKE2B 
d86a413f81411d07b5376d93f295e7b26267bab70cbd5df327cff6d5f40ece8a52b2cfb1d1804696c12f8fab26aa5d7fe74cebc8a81a28b86b6c509ce8fbfb14
 SHA512 
a435e24582658998757914189664b253bcaefcf330b2ce272bd6904e71bdfa994d37bea2b4b73808f50565f8f5b23de52f00af710b5e2aac446d7b0a6a762c06
 DIST dsymbol-ceea154b0047f71e4ffec224096ce87015578a8a.tar.gz 32569 BLAKE2B 
d4b9e1a6c127f3a429f84b43364080137cc194d761f9b94f9803dd01e5d854de6d544194d95b76183482c9546c7405a32806ff9078658f3250a889d7eb778d21
 SHA512 
f480f8659fd1728dd314ad77e47090b95becddadaf4a01eb8040e7e24f471612ac9a972baf8f0f4a617e97c3ead8fe1900c674d07e762c7b470cffc1a8159058
 DIST inifiled-cecaff8037a60db2a51c9bded4802c87d938a44e.tar.gz 8251 BLAKE2B 
fa0bb78c11f69e257a0974c16188475d50fcf2a56138fc288d6262be91604b8e706bfab2572b2d0e358c8366b400a2c5a3af6ba87d5243825ddf26a5a03fbfe2
 SHA512 
9a3c66eca2b48350c798fd0a54d37c8714d6a499e8412983f1bda2f00cda6fe1439bfbc6766d32529f3d7cc708a0528c52c077f9169727b492616691833c52d0
+DIST libddoc-4ced25fa73bbcdbe801191147b32fdc94e947dd5.tar.gz 20106 BLAKE2B 
34e5e36601e6cc8f526d35f58c401df6cb5c3259c0ccb88591c98b1d505c1438e99de1009c3cff6ca0960a494d6571ed395193b906da7dcf859e572e0d2651f0
 SHA512 
80bd1c9b38fe3f57c7c7428f63e1d3ed8b73c43b79d728bb189bbec95dd4ee203c6c9f52a6615475cee2de907a0ef888cf67d9551acd725f1ec15dfa83f68eb3
 DIST libddoc-d50190b7e33b11d7fec05e504549f0f285bd2232.tar.gz 21319 BLAKE2B 
eafda40a7ca16b90d2c39ae9edbb2a8fa8e87a75089e31d4bc59ea2dd2127b4b7f5e9fc68be0f0e2c2b74c71e0875291a08b363ccbd569c733c3800690c02d6f
 SHA512 
6c6519442cd63879bed5b6ebce27ff607fae04b3b3d44c84a767ca304506262f2e967feaa8c358ca62cfc0a56bb91bf7d4c8a1f9a442c11a4489bf17f1cf28a4
 DIST libdparse-597d9a697b1f8a51fb2f441c61d0c6cc4eadc6d1.tar.gz 124830 BLAKE2B 
1a7b4246b00938c44c3e32c7d0fdda4a0d343bbafad25e3e003c4672aac1dd3677a8163750b13753aa484e6bcdd120b35fc736db6d5c0be4eb3d9c78ab6a9e8e
 SHA512 
c3b5660d455ca3dd8d22ae996ae437583b98c00e441bedfb72a5fcf8ccd4dc579e4fc8980faab501ff757ced62c079fbc116f91c796174895b33a57f0a183bbf
+DIST libdparse-f9a82848fe98a84f38a66df950514c3556e7fb2d.tar.gz 136856 BLAKE2B 
b289f94d30347edfb441d43238985411224b24488f36c3bb0120cb771625d141d183430091dd072adc3d1794ce73c89f198fbe34a85123de4c28be56ce8086a2
 SHA512 
1454e6ff36f4f8d45c3844436655c6b8a20e12397702a2891b9b293d92339bc53ad0bb1fbb18403d359a3e12efdc0165d07ecd517616da74b73bca45d6837deb
 DIST stdx-allocator-d6e6ce4a838e0dad43ef13f050f96627339cdccd.tar.gz 103648 
BLAKE2B 
c08925df810761bb4825d6058375dcc5415f4838403b3668aeff5c1be93c7d04b49c1994da27aa498cd0f4abd1ff923e8d906ae53c922f94bc63dac334b7f138
 SHA512 
3a41f95505e92d79a6b966d21d96fe5b5bb2b2f3762b09998b27334684d815a82a3e705935faa1b543a93ffb274c67b9110b2b1b7364f7d405bd65d05b819271

diff --git a/dev-util/dscanner/dscanner-0.10.0.ebuild 
b/dev-util/dscanner/dscanner-0.10.0.ebuild
new file mode 100644
index 000..0c81fdd
--- /dev/null
+++ b/dev-util/dscanner/dscanner-0.10.0.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Swiss-army knife for D source code"
+HOMEPAGE="https://github.com/dlang-community/D-Scanner;
+LICENSE="Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+CONTAINERS="f4e79375539554b3793adf1c557361a64a073524"

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

2020-08-15 Thread Sam James
commit: c2c7b702730df52f65ee65ba34012e063b8792a7
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 15 17:51:46 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 15 17:51:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c7b702

dev-python/pytest-xdist: Stabilize 1.33.0 ALLARCHES, #737224

Signed-off-by: Sam James  gentoo.org>

 dev-python/pytest-xdist/pytest-xdist-1.33.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-xdist/pytest-xdist-1.33.0.ebuild 
b/dev-python/pytest-xdist/pytest-xdist-1.33.0.ebuild
index 963bc520b04..0a7311caa0e 100644
--- a/dev-python/pytest-xdist/pytest-xdist-1.33.0.ebuild
+++ b/dev-python/pytest-xdist/pytest-xdist-1.33.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-vpn/strongswan/

2020-08-15 Thread Sam James
commit: 33260f89d935221cf348fbad5c947179e86222aa
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 15 17:41:23 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 15 17:48:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33260f89

net-vpn/strongswan: Stabilize 5.8.4 arm, #736770

Signed-off-by: Sam James  gentoo.org>

 net-vpn/strongswan/strongswan-5.8.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/strongswan/strongswan-5.8.4.ebuild 
b/net-vpn/strongswan/strongswan-5.8.4.ebuild
index dd518f14f8f..2998a720348 100644
--- a/net-vpn/strongswan/strongswan-5.8.4.ebuild
+++ b/net-vpn/strongswan/strongswan-5.8.4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://download.strongswan.org/${P}.tar.bz2;
 
 LICENSE="GPL-2 RSA DES"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="+caps curl +constraints debug dhcp eap farp gcrypt +gmp ldap mysql 
networkmanager +non-root +openssl selinux sqlite systemd pam pkcs11"
 
 STRONGSWAN_PLUGINS_STD="led lookip systime-fix unity vici"



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

2020-08-15 Thread Louis Sautier
commit: ef6917fd19d9002b321667b6e4535bf22e26e34b
Author: Louis Sautier  gentoo  org>
AuthorDate: Sat Aug 15 17:12:31 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sat Aug 15 17:45:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef6917fd

dev-libs/unittest++: fix tests with clang

Closes: https://bugs.gentoo.org/737206
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Louis Sautier  gentoo.org>

 .../unittest++-2.0.0-fix-tests-with-clang.patch| 27 ++
 dev-libs/unittest++/unittest++-2.0.0.ebuild|  6 +++--
 2 files changed, 31 insertions(+), 2 deletions(-)

diff --git 
a/dev-libs/unittest++/files/unittest++-2.0.0-fix-tests-with-clang.patch 
b/dev-libs/unittest++/files/unittest++-2.0.0-fix-tests-with-clang.patch
new file mode 100644
index 000..201ff10de5a
--- /dev/null
+++ b/dev-libs/unittest++/files/unittest++-2.0.0-fix-tests-with-clang.patch
@@ -0,0 +1,27 @@
+commit 2423fcac7668aa9c331a2dcf024c3ca06742942d
+Author: Dan Huantes 
+Date:   Thu Aug 15 08:26:41 2019 -0500
+
+CrasingTestsAreReportedAsFailures no longer core dumps on Clang Release
+
+Found that Crashing tests at some point in Clang
+history were actually caught but testing on
+Clang 6.0 and Clang 7.0 this is not the case.
+So added Clang to the list of compilers that
+don't run this tests.  Noted that several
+other Pull Requests were failing for the same
+reason.
+
+diff --git a/tests/TestTest.cpp b/tests/TestTest.cpp
+index 5a4e1ca..0db0650 100644
+--- a/tests/TestTest.cpp
 b/tests/TestTest.cpp
+@@ -72,7 +72,7 @@ namespace {
+   CHECK_EQUAL(1, results.GetFailureCount());
+}
+ 
+-#if !defined(UNITTEST_MINGW) && !defined(UNITTEST_WIN32)
++#if !defined(UNITTEST_MINGW) && !defined(UNITTEST_WIN32) && 
!defined(__clang__)
+ // Skip this test in debug because some debuggers don't like it.
+ #if defined(NDEBUG)
+TEST(CrashingTestsAreReportedAsFailures)

diff --git a/dev-libs/unittest++/unittest++-2.0.0.ebuild 
b/dev-libs/unittest++/unittest++-2.0.0.ebuild
index af6ca161249..88339de1228 100644
--- a/dev-libs/unittest++/unittest++-2.0.0.ebuild
+++ b/dev-libs/unittest++/unittest++-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,6 +11,7 @@ MY_P="${MY_PN}-${PV}"
 DESCRIPTION="A lightweight unit testing framework for C++"
 HOMEPAGE="https://unittest-cpp.github.io/;
 SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
@@ -18,7 +19,8 @@ KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-S="${WORKDIR}/${MY_P}"
+# 
https://github.com/unittest-cpp/unittest-cpp/commit/2423fcac7668aa9c331a2dcf024c3ca06742942d
+PATCHES=( "${FILESDIR}/${P}-fix-tests-with-clang.patch" )
 
 src_prepare() {
cmake-utils_src_prepare



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

2020-08-15 Thread Louis Sautier
commit: 3e7f1e4540edf3b33ec741fd2c2c03547b7de535
Author: Louis Sautier  gentoo  org>
AuthorDate: Sat Aug 15 17:39:53 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sat Aug 15 17:45:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e7f1e45

dev-libs/unittest++: bump to EAPI=7, migrate to cmake.eclass

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

 dev-libs/unittest++/unittest++-2.0.0-r1.ebuild | 42 ++
 1 file changed, 42 insertions(+)

diff --git a/dev-libs/unittest++/unittest++-2.0.0-r1.ebuild 
b/dev-libs/unittest++/unittest++-2.0.0-r1.ebuild
new file mode 100644
index 000..0da36ef58d5
--- /dev/null
+++ b/dev-libs/unittest++/unittest++-2.0.0-r1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+MY_PN="unittest-cpp"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A lightweight unit testing framework for C++"
+HOMEPAGE="https://unittest-cpp.github.io/;
+SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+# 
https://github.com/unittest-cpp/unittest-cpp/commit/2423fcac7668aa9c331a2dcf024c3ca06742942d
+PATCHES=( "${FILESDIR}/${P}-fix-tests-with-clang.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   # https://github.com/unittest-cpp/unittest-cpp/pull/163
+   sed -i '/run unit tests as post build step/,/Running unit tests/d' \
+   CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DUTPP_INCLUDE_TESTS_IN_BUILD=$(usex test)
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   "${BUILD_DIR}/TestUnitTest++" || die "Tests failed"
+}



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

2020-08-15 Thread Louis Sautier
commit: d25ced2baf657f2d3f45fa4fc7cb482ebb87ddfa
Author: Louis Sautier  gentoo  org>
AuthorDate: Sat Aug 15 17:40:12 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sat Aug 15 17:45:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25ced2b

dev-libs/unittest++: remove old

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

 dev-libs/unittest++/Manifest|  1 -
 dev-libs/unittest++/unittest++-1.6.1.ebuild | 34 -
 2 files changed, 35 deletions(-)

diff --git a/dev-libs/unittest++/Manifest b/dev-libs/unittest++/Manifest
index c50f9bbd9a8..dd7685441d9 100644
--- a/dev-libs/unittest++/Manifest
+++ b/dev-libs/unittest++/Manifest
@@ -1,2 +1 @@
-DIST unittest++-1.6.1.tar.gz 52536 BLAKE2B 
0a5e7cbe1131565631c0537a1a262b6053b5010497eeaf76690f465cdbca45157feb6686faaf37a37f4554e37b54051161c3183651315509ada143975d7211f4
 SHA512 
2bb03def8b6ac84dbb6e5e440e5be8648199096fdc93db704386e2c2279b329be6bda47c81bd8a8c485334059fb2a53fdd90358005a95b8add6f057c25ce
 DIST unittest++-2.0.0.tar.gz 54100 BLAKE2B 
5aceda6e76f4536054c8de0fb4a4a17027d0707101fb323883734d420f038aeb094fb6567e41145804f012c952a5807bdd6fe1bae1e4a09a6e36c5f1bbc5717e
 SHA512 
39318f4ed31534c116679a3257bf1438a6c4b3bef1894dfd40aea934950c6c8197af6a7f61539b8e9ddc67327c9388d7e8a6f8a3e0e966ad26c07554e2429cab

diff --git a/dev-libs/unittest++/unittest++-1.6.1.ebuild 
b/dev-libs/unittest++/unittest++-1.6.1.ebuild
deleted file mode 100644
index 5bba0de8b8c..000
--- a/dev-libs/unittest++/unittest++-1.6.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-MY_PN="unittest-cpp"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A lightweight unit testing framework for C++"
-HOMEPAGE="https://unittest-cpp.github.io/;
-SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   sed -i '/run unit tests as post build step/,/Running unit tests/d' \
-   CMakeLists.txt || die
-   use test || sed -i \
-   '/build the test runner/,/target_link_libraries(TestUnitTest++ 
UnitTest++/d' \
-   CMakeLists.txt || die
-   cmake-utils_src_prepare
-}
-
-src_test() {
-   "${BUILD_DIR}/TestUnitTest++" || die "Tests failed"
-}



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

2020-08-15 Thread Sam James
commit: ec95d1b2917429bbc00c35c36a8a4033ba2b914d
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 15 17:37:45 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 15 17:37:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec95d1b2

media-libs/libjpeg-turbo: Stabilize 2.0.5 arm, #737164

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.5.ebuild 
b/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.5.ebuild
index 82d3e59a5d8..44df0cee414 100644
--- a/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.5.ebuild
+++ b/media-libs/libjpeg-turbo/libjpeg-turbo-2.0.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
 LICENSE="BSD IJG ZLIB"
 SLOT="0"
 [[ "$(ver_cut 3)" -ge 90 ]] || \
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="java static-libs"
 
 ASM_DEPEND="|| ( dev-lang/nasm dev-lang/yasm )"



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

2020-08-15 Thread Sam James
commit: 993d1413570a7f553f351e86a9c1125d1edec495
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug 15 17:36:05 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug 15 17:36:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=993d1413

net-misc/curl: Stabilize 7.71.1 arm, #736744

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/net-misc/curl/curl-7.71.1.ebuild b/net-misc/curl/curl-7.71.1.ebuild
index 4fce77590df..a959541eb32 100644
--- a/net-misc/curl/curl-7.71.1.ebuild
+++ b/net-misc/curl/curl-7.71.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://curl.haxx.se/download/${P}.tar.xz;
 
 LICENSE="curl"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="adns alt-svc brotli +ftp gopher +http2 idn +imap ipv6 kerberos ldap 
metalink +pop3 +progress-meter rtmp samba +smtp ssh ssl static-libs test telnet 
+tftp threads"
 IUSE+=" curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls curl_ssl_nss 
+curl_ssl_openssl curl_ssl_winssl"
 IUSE+=" nghttp3 quiche"



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

2020-08-15 Thread Mart Raudsepp
commit: a057c82f87b0f58d4297f9bedff84eaa8dbacac0
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Aug 15 16:33:32 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Aug 15 16:34:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a057c82f

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

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

 dev-lang/vala/Manifest|  1 +
 dev-lang/vala/vala-0.49.90.ebuild | 49 +++
 eclass/vala.eclass|  2 +-
 3 files changed, 51 insertions(+), 1 deletion(-)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index cdbce908c9c..6c33c2471e1 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -11,3 +11,4 @@ DIST vala-0.48.6.tar.xz 3451004 BLAKE2B 
9c880cff885b934e1d82d21285839e040addecb0
 DIST vala-0.48.7.tar.xz 3460968 BLAKE2B 
d2630c3695d3e3915751d74581ed85f493cb1f63c49ef8a2a36c396a86fefee4f9b608d5161f680eff9c4ebee0563fc158b3e1102dbe4ac56e2ab1c2bb938f2e
 SHA512 
93ed6f98ff3be35d327794c5d81f30239c84838d49991b70dced1672f070e4675576da43b7555748d66ecae70102cd422e6af9b562f22bb34b40c07c73bac882
 DIST vala-0.48.8.tar.xz 3470240 BLAKE2B 
753c1f4bd1619bb4671f74f3a82ed1919efd5bdfcbc7d2a0797303627214de1b9d22bb9bf4e5d8097773986bf95b27126061cf1ab862837d0ced49e0c860bb90
 SHA512 
a2a71313161154c3de73fa186728704b2d04ec27eb8cd95954dcfab6287e29c2ee21ecea17bc3e404fcef89c69d6440abca5ae3a526a43c05d3cbafef7ec6e99
 DIST vala-0.48.9.tar.xz 3472540 BLAKE2B 
1c85b5d9a1f3819d5b26b521c7da423adee313b2acacb354e324abd9ccf24707dcfcd1a455bab867043f674c4daa5f1a62210847ac271dfce09a288651220f53
 SHA512 
076fcbea34dde1a84c15e4e2b6acd009c2fea578d48eb28a99a604eb4edc8bb53ac6883ca93ec906968d43d4b341707abc730d6ac8a7b3682a2fa5f0030d5256
+DIST vala-0.49.90.tar.xz 3505096 BLAKE2B 
49f3c27068d71cc847ae0fc1943b29a3e046feb01d163159dc61dac623873b3f1b4170ce78a50f7d945a13cf3bd3044b847f401a38174bf02939a5d169cb80ea
 SHA512 
e6ff0afa9b6700327c1cf77c7f71217cbf2b149ce803a892f6e3a1e88b4f3412f3d1db44b2659abe50297dabd68a91effefea45bb223e08d6308523a473ea001

diff --git a/dev-lang/vala/vala-0.49.90.ebuild 
b/dev-lang/vala/vala-0.49.90.ebuild
new file mode 100644
index 000..c1a73c907f8
--- /dev/null
+++ b/dev-lang/vala/vala-0.49.90.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 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.50"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~x86-linux"
+IUSE="test valadoc"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/glib-2.48.0:2
+   >=dev-libs/vala-common-${PV}
+   valadoc? ( >=media-gfx/graphviz-2.16 )
+   != it, which 
would be bad
+# as the newer is not required with older vala when those are picked instead 
of 0.46.
+# vala-0.45.91 ships a broken libsoup-2.4.vapi copy too, but that'll be fixed 
by 0.45.92
+DEPEND="${RDEPEND}
+   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 \
+   $(use_enable valadoc) \
+   VALAC=: \
+   WEASYPRINT=:
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}

diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index c0620dbaa0b..52899f163dc 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -32,7 +32,7 @@ VALA_MIN_API_VERSION=${VALA_MIN_API_VERSION:-0.36}
 # @ECLASS-VARIABLE: VALA_MAX_API_VERSION
 # @DESCRIPTION:
 # Maximum vala API version (e.g. 0.36).
-VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.48}
+VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.50}
 
 # @ECLASS-VARIABLE: VALA_USE_DEPEND
 # @DEFAULT_UNSET



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

2020-08-15 Thread Mart Raudsepp
commit: ebe3fc355bbe95094e619e55ed011e1d56be4b1c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Aug 15 16:32:10 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Aug 15 16:34:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebe3fc35

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

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

 dev-libs/vala-common/Manifest   |  1 +
 dev-libs/vala-common/vala-common-0.49.90.ebuild | 30 +
 profiles/package.mask   |  6 +
 3 files changed, 37 insertions(+)

diff --git a/dev-libs/vala-common/Manifest b/dev-libs/vala-common/Manifest
index 07f85abebaf..75f15d966a7 100644
--- a/dev-libs/vala-common/Manifest
+++ b/dev-libs/vala-common/Manifest
@@ -4,3 +4,4 @@ DIST vala-0.48.6.tar.xz 3451004 BLAKE2B 
9c880cff885b934e1d82d21285839e040addecb0
 DIST vala-0.48.7.tar.xz 3460968 BLAKE2B 
d2630c3695d3e3915751d74581ed85f493cb1f63c49ef8a2a36c396a86fefee4f9b608d5161f680eff9c4ebee0563fc158b3e1102dbe4ac56e2ab1c2bb938f2e
 SHA512 
93ed6f98ff3be35d327794c5d81f30239c84838d49991b70dced1672f070e4675576da43b7555748d66ecae70102cd422e6af9b562f22bb34b40c07c73bac882
 DIST vala-0.48.8.tar.xz 3470240 BLAKE2B 
753c1f4bd1619bb4671f74f3a82ed1919efd5bdfcbc7d2a0797303627214de1b9d22bb9bf4e5d8097773986bf95b27126061cf1ab862837d0ced49e0c860bb90
 SHA512 
a2a71313161154c3de73fa186728704b2d04ec27eb8cd95954dcfab6287e29c2ee21ecea17bc3e404fcef89c69d6440abca5ae3a526a43c05d3cbafef7ec6e99
 DIST vala-0.48.9.tar.xz 3472540 BLAKE2B 
1c85b5d9a1f3819d5b26b521c7da423adee313b2acacb354e324abd9ccf24707dcfcd1a455bab867043f674c4daa5f1a62210847ac271dfce09a288651220f53
 SHA512 
076fcbea34dde1a84c15e4e2b6acd009c2fea578d48eb28a99a604eb4edc8bb53ac6883ca93ec906968d43d4b341707abc730d6ac8a7b3682a2fa5f0030d5256
+DIST vala-0.49.90.tar.xz 3505096 BLAKE2B 
49f3c27068d71cc847ae0fc1943b29a3e046feb01d163159dc61dac623873b3f1b4170ce78a50f7d945a13cf3bd3044b847f401a38174bf02939a5d169cb80ea
 SHA512 
e6ff0afa9b6700327c1cf77c7f71217cbf2b149ce803a892f6e3a1e88b4f3412f3d1db44b2659abe50297dabd68a91effefea45bb223e08d6308523a473ea001

diff --git a/dev-libs/vala-common/vala-common-0.49.90.ebuild 
b/dev-libs/vala-common/vala-common-0.49.90.ebuild
new file mode 100644
index 000..ee55cfcad10
--- /dev/null
+++ b/dev-libs/vala-common/vala-common-0.49.90.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+GNOME_ORG_MODULE="vala"
+
+inherit gnome.org
+
+DESCRIPTION="Build infrastructure for packages that use Vala"
+HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+IUSE=""
+
+RDEPEND=""
+DEPEND=""
+BDEPEND=""
+
+src_configure() { :; }
+
+src_compile() { :; }
+
+src_install() {
+   insinto /usr/share/aclocal
+   doins vala.m4 vapigen/vapigen.m4
+   insinto /usr/share/vala
+   doins vapigen/Makefile.vapigen
+}

diff --git a/profiles/package.mask b/profiles/package.mask
index 860d1dd8e7b..be1287ef9df 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Mart Raudsepp  (2020-08-15)
+# Development release, needs testing to ensure valac-0.50
+# works for existing packages
+>=dev-libs/vala-common-0.49
+dev-lang/vala:0.50
+
 # Sergei Trofimovich  (2020-08-15)
 # Obsolete package without reverse dependencies.
 # Does not compile against current ghc-8.8. Removal in 30 days.



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

2020-08-15 Thread Lars Wendler
commit: 4f0586fb53f1caacf2f7920eb0dae9fe80282c0b
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Aug 15 16:29:24 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Aug 15 16:29:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f0586fb

app-editors/nano: Don't move configs with USE="minimal"

Reported-by: Dragan Kašler  gmail.com>
Closes: https://bugs.gentoo.org/737244
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Lars Wendler  gentoo.org>

 app-editors/nano/nano-5.0-r1.ebuild | 12 ++--
 app-editors/nano/nano-5.1.ebuild| 12 ++--
 app-editors/nano/nano-.ebuild   | 12 ++--
 3 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/app-editors/nano/nano-5.0-r1.ebuild 
b/app-editors/nano/nano-5.0-r1.ebuild
index 1a12756b35a..86f22534c12 100644
--- a/app-editors/nano/nano-5.0-r1.ebuild
+++ b/app-editors/nano/nano-5.0-r1.ebuild
@@ -77,13 +77,13 @@ src_install() {
sed -i \
-e '/^# include /s:# *::' \
"${ED}"/etc/nanorc || die
-   fi
 
-   # Since nano-5.0 these are no longer being "enabled" by default
-   # (bug #736848)
-   local rcdir="/usr/share/nano"
-   mv "${ED}"${rcdir}/extra/* "${ED}"/${rcdir}/ || die
-   rmdir "${ED}"${rcdir}/extra || die
+   # Since nano-5.0 these are no longer being "enabled" by default
+   # (bug #736848)
+   local rcdir="/usr/share/nano"
+   mv "${ED}"${rcdir}/extra/* "${ED}"/${rcdir}/ || die
+   rmdir "${ED}"${rcdir}/extra || die
+   fi
 
use split-usr && dosym ../../bin/nano /usr/bin/nano
 }

diff --git a/app-editors/nano/nano-5.1.ebuild b/app-editors/nano/nano-5.1.ebuild
index 1a12756b35a..86f22534c12 100644
--- a/app-editors/nano/nano-5.1.ebuild
+++ b/app-editors/nano/nano-5.1.ebuild
@@ -77,13 +77,13 @@ src_install() {
sed -i \
-e '/^# include /s:# *::' \
"${ED}"/etc/nanorc || die
-   fi
 
-   # Since nano-5.0 these are no longer being "enabled" by default
-   # (bug #736848)
-   local rcdir="/usr/share/nano"
-   mv "${ED}"${rcdir}/extra/* "${ED}"/${rcdir}/ || die
-   rmdir "${ED}"${rcdir}/extra || die
+   # Since nano-5.0 these are no longer being "enabled" by default
+   # (bug #736848)
+   local rcdir="/usr/share/nano"
+   mv "${ED}"${rcdir}/extra/* "${ED}"/${rcdir}/ || die
+   rmdir "${ED}"${rcdir}/extra || die
+   fi
 
use split-usr && dosym ../../bin/nano /usr/bin/nano
 }

diff --git a/app-editors/nano/nano-.ebuild 
b/app-editors/nano/nano-.ebuild
index 1a12756b35a..86f22534c12 100644
--- a/app-editors/nano/nano-.ebuild
+++ b/app-editors/nano/nano-.ebuild
@@ -77,13 +77,13 @@ src_install() {
sed -i \
-e '/^# include /s:# *::' \
"${ED}"/etc/nanorc || die
-   fi
 
-   # Since nano-5.0 these are no longer being "enabled" by default
-   # (bug #736848)
-   local rcdir="/usr/share/nano"
-   mv "${ED}"${rcdir}/extra/* "${ED}"/${rcdir}/ || die
-   rmdir "${ED}"${rcdir}/extra || die
+   # Since nano-5.0 these are no longer being "enabled" by default
+   # (bug #736848)
+   local rcdir="/usr/share/nano"
+   mv "${ED}"${rcdir}/extra/* "${ED}"/${rcdir}/ || die
+   rmdir "${ED}"${rcdir}/extra || die
+   fi
 
use split-usr && dosym ../../bin/nano /usr/bin/nano
 }



[gentoo-commits] repo/proj/guru:dev commit in: sys-boot/customrescuecd-x86_64-grub/, sys-boot/customrescuecd-x86-grub/

2020-08-15 Thread Andrea Postiglione
commit: dee0c3130ea9f51f5530ace24d6a62ebf45a5eca
Author: Andrea Postiglione  gmail  com>
AuthorDate: Sat Aug 15 15:50:49 2020 +
Commit: Andrea Postiglione  gmail  com>
CommitDate: Sat Aug 15 15:50:49 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dee0c313

sys-boot/customrescuecd-x86_64-grub : fix metadata
sys-boot/customrescuecd-x86-grub : fix metadata

Signed-off-by: Andrea Postiglione  gmail.com>

 sys-boot/customrescuecd-x86-grub/metadata.xml| 13 -
 sys-boot/customrescuecd-x86_64-grub/metadata.xml | 13 -
 2 files changed, 8 insertions(+), 18 deletions(-)

diff --git a/sys-boot/customrescuecd-x86-grub/metadata.xml 
b/sys-boot/customrescuecd-x86-grub/metadata.xml
index 2e146c3..17e7a0a 100644
--- a/sys-boot/customrescuecd-x86-grub/metadata.xml
+++ b/sys-boot/customrescuecd-x86-grub/metadata.xml
@@ -2,16 +2,11 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   gentoob...@milaw.biz
-   Michael Lange
-   Accepts only mails from Gentoo's 
Bugzilla
-   
-   
-   mgo...@gentoo.org
-   Michał Górny
+   andrea.postigli...@gmail.com
+   Andrea Postiglione


-   This package adds menu entries in GRUB for the SystemRescueCD. 
You can
-   add custom bootoptions for SystemRescueCD in a special config 
file.
+   This package adds menu entries in GRUB for the CustomRescueCD. 
You can
+   add custom bootoptions for CustomRescueCD in a special config 
file.

 

diff --git a/sys-boot/customrescuecd-x86_64-grub/metadata.xml 
b/sys-boot/customrescuecd-x86_64-grub/metadata.xml
index 2e146c3..17e7a0a 100644
--- a/sys-boot/customrescuecd-x86_64-grub/metadata.xml
+++ b/sys-boot/customrescuecd-x86_64-grub/metadata.xml
@@ -2,16 +2,11 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   gentoob...@milaw.biz
-   Michael Lange
-   Accepts only mails from Gentoo's 
Bugzilla
-   
-   
-   mgo...@gentoo.org
-   Michał Górny
+   andrea.postigli...@gmail.com
+   Andrea Postiglione


-   This package adds menu entries in GRUB for the SystemRescueCD. 
You can
-   add custom bootoptions for SystemRescueCD in a special config 
file.
+   This package adds menu entries in GRUB for the CustomRescueCD. 
You can
+   add custom bootoptions for CustomRescueCD in a special config 
file.

 



[gentoo-commits] repo/proj/guru:dev commit in: app-admin/customrescuecd-x86/

2020-08-15 Thread Andrea Postiglione
commit: 9492c002cb0605c503e949100c6c648033d2773d
Author: Andrea Postiglione  gmail  com>
AuthorDate: Sat Aug 15 14:50:59 2020 +
Commit: Andrea Postiglione  gmail  com>
CommitDate: Sat Aug 15 14:50:59 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9492c002

app-admin/customrescuecd-x86 : fix metadata

Signed-off-by: Andrea Postiglione  gmail.com>

 app-admin/customrescuecd-x86/metadata.xml | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/app-admin/customrescuecd-x86/metadata.xml 
b/app-admin/customrescuecd-x86/metadata.xml
index 47af661..002f90c 100644
--- a/app-admin/customrescuecd-x86/metadata.xml
+++ b/app-admin/customrescuecd-x86/metadata.xml
@@ -6,13 +6,6 @@
 Andrea Postiglione
   
   
-  
-
-  Pass downloaded images through isohybrid in order to make it
-  possible to copy them directly to USB media and boot (requires
-  sys-boot/syslinux at build time).
-
-  
   
 customrescuecd
   



[gentoo-commits] repo/gentoo:master commit in: net-vpn/tor/

2020-08-15 Thread Anthony G. Basile
commit: 9e1f33cbd8cb6580511951c39aad7d42a2cbb1db
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Aug 15 14:51:23 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Aug 15 14:51:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e1f33cb

net-vpn/tor: bump 0.4.4.3-alpha to 0.4.4.4-rc

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-vpn/tor/Manifest| 2 +-
 net-vpn/tor/{tor-0.4.4.3_alpha.ebuild => tor-0.4.4.4_rc.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/tor/Manifest b/net-vpn/tor/Manifest
index 79fe5a87792..86c6634c66a 100644
--- a/net-vpn/tor/Manifest
+++ b/net-vpn/tor/Manifest
@@ -1,3 +1,3 @@
 DIST tor-0.4.2.8.tar.gz 7610427 BLAKE2B 
5b637047f4944e97350ef1354f61ed6ac611a1660a61a4a44d3706abb0ec12af121d35ee10023c627a1a7d175490ef854c0a99d17268756eaa7d626926ef245f
 SHA512 
599ec5acd51a84b56f023458f71d35ea622390c4500e77f8a7ff416930e76f2ef3ec76402e971eca366d1f03aac4c1f6ccb8e9ab69e98f1d4b111d52731b45f2
 DIST tor-0.4.3.6.tar.gz 7745954 BLAKE2B 
3b04b2c79281483ef72421f8f5bfbc4f48358b6d38c151470eea7ea9bd2666e7098fe3fb0887d551f796443718791a3a464b007669c96e6bbcce7d7fc4c25d3a
 SHA512 
f4ab0788d27b3eab40853dde31eaf087ac84616fc3488973e7d01f4dbd3e71ba6ce3a3afcf0c6272223897d0a9c1556aa26dbc4d9b98cc5b43dd729d20a2fcca
-DIST tor-0.4.4.3-alpha.tar.gz 7795304 BLAKE2B 
c690b1e7b53a2f05cfc7f7c139068bde60e77f5cf3c76a470fcd9760b8a417b3dda65c67ce885401530a4ec22d003e6ef0cce3bd140d3f8754dfd45572b3b13d
 SHA512 
54753191d17b25966f03f83d210b7a2e433b0810a53c6a6748bcbaa3a4f148f2c75aacdc8d4785d38e250e30559e9f1c490b7bfa1a6b283fa39b2b7fd857e8cc
+DIST tor-0.4.4.4-rc.tar.gz 7795842 BLAKE2B 
0e6774815208a6f5531671bf270caa009a6336f38f611e34244835c2f8fba7d884cf60a53221984665a44229e8b828330b258c9dd3b5ac99c80c5c801d159f31
 SHA512 
73ebc346ba3deb118efbd4d8f1a48fdb700c65723acb211a7ec16d756c12c9171f4d5bb8ae07862a337c77cc7e20f44dbeef5c2232b4973f0a47be623d9feb6b

diff --git a/net-vpn/tor/tor-0.4.4.3_alpha.ebuild 
b/net-vpn/tor/tor-0.4.4.4_rc.ebuild
similarity index 100%
rename from net-vpn/tor/tor-0.4.4.3_alpha.ebuild
rename to net-vpn/tor/tor-0.4.4.4_rc.ebuild



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

2020-08-15 Thread Alice Ferrazzi
commit: 36960a7131f2dc0f915098b4248e33673e85b756
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Jul 18 16:06:52 2020 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Aug 15 14:25:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36960a71

sys-kernel/rt-sources: Add rt sources v5.6.19-rt11

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>
Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest |  2 +
 sys-kernel/rt-sources/rt-sources-5.6.19_p11.ebuild | 54 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 5482bb28206..ff3a976046b 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -40,3 +40,5 @@ DIST patch-5.6.14-rt7.patch.xz 158640 BLAKE2B 
81e0a0c4b4feea3abd60efe89c7ae4be7d
 DIST patch-5.6.14.xz 376464 BLAKE2B 
01b64288759faa67aedfded7dfca5d8d1e894a863bf7bcaf91dd8f23c8b8c9df51d2e54ac5e414a33fc3469b32c10f1d630cf2636206b8e159d602df40ad3048
 SHA512 
8019bf12993f43d5508845a48b250d30220a8db6db262c8b97cd3f7c73abf0d054fcdfacb671644de529ceb495b95982d693a889051fb60fafc3180bd5b4f29e
 DIST patch-5.6.17-rt10.patch.xz 169292 BLAKE2B 
3d4f591247d924d2cf89adc04846dc7cf8d9f58938fe7716560f97bfcc3e9c4c82f06cf1eacb8c95ef65d6f5ef624f969f849f9f3367beb9b95fb13eea3fd50b
 SHA512 
5d5c7ff8da7a06aba70de38a03cfd25a4f3913c79d6723fd44a88fd7a5e9478a925587fda278b8552d14868c1c9c460105eb96fd2d80c3ce2043309e9cdedbad
 DIST patch-5.6.17.xz 466208 BLAKE2B 
53d4753419b6500625da870212a164f535f5b41135005f87fb0c335430dbd6512a24fff3ff6071167893bed7a46c74a101031c26612821f4b9bf317eccec2fb9
 SHA512 
be922570e079a5bab8d23b504050afccca9e94b149e1460c49b78054735afe2469b5b49d056120eee5d774fff90059772ac105f7fa476d052d9cb18f81688846
+DIST patch-5.6.19-rt11.patch.xz 169352 BLAKE2B 
ab6de55cac59c2bd2d29009aea8db129c85ac0c816186b1c8561062f49eb91fc384dbad6003e4f4b63989eed6e614116ce189270d2fc7081b89d031c8af1a0ee
 SHA512 
522bae99bbfb272deb71700b0e3bb5bb8b43253e8c94ff6fb902d6584ea54700722afede9a6ccb3ba1a6b99eb7f6a82e4872ee807aa0b28cc8d75ab7fc5f3fa4
+DIST patch-5.6.19.xz 518428 BLAKE2B 
f99d824ecf8be4b984cdab43d5ef838bf9da017ee800a1cc09eaf19596add9c1199ea68b0b581e8560a56a8f94ca35b5914a26d1340f5c42c1bc699708e77ce5
 SHA512 
f967f9ffc12249db757bd38fd890ac69d327f23bcb767ffa0c178aa7e541bb4a10715664d703315ac3b96ed35909046350f97752c2a4691526ad55a9f03f2c24

diff --git a/sys-kernel/rt-sources/rt-sources-5.6.19_p11.ebuild 
b/sys-kernel/rt-sources/rt-sources-5.6.19_p11.ebuild
new file mode 100644
index 000..12c5881dd44
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-5.6.19_p11.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~arm64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit eapi7-ver
+
+CKV="$(ver_cut 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE}
 \
+   
https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE};
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT/g" \
+   -i "${S}/kernel/Kconfig.preempt" || die "sed failed"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the RT project developers 
directly."
+   ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues 
with"
+   ewarn "the ebuilds."
+   ewarn
+}
+
+K_EXTRAEINFO="For more info on rt-sources and details on how to report 
problems, see: \
+${HOMEPAGE}."



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

2020-08-15 Thread Alice Ferrazzi
commit: 3d95a121a25ba421c826716520fc975249d548e1
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Jul 18 16:16:59 2020 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Aug 15 14:26:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d95a121

sys-kernel/rt-sources: Add rt sources v4.9.232-rt150

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>
Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest |  2 +
 .../rt-sources/rt-sources-4.9.232_p150.ebuild  | 54 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index a86d4b459bb..6461af48bce 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -36,6 +36,8 @@ DIST patch-4.9.224-rt144.patch.xz 175820 BLAKE2B 
66e601ebfa393644671c181c8131bdb
 DIST patch-4.9.224.xz 3465868 BLAKE2B 
a13ab60afeba8ec9a4f797d67e505cf453b7590f617b695b416896e8eca85d083b2e718941fda882246acf7489c2f0f4f765139baedc7efd8382a5b311d52798
 SHA512 
df45c6c77e0d688cc5d101f98e8dc0a52383dc482d9f5d8a8970b6c7de355216cfdb62a796071ec47cef6559f1f00f839ea627c3dca36058254f3a5b335104e7
 DIST patch-4.9.227-rt146.patch.xz 175816 BLAKE2B 
cd66e317e38d7f789863c21d080fed56bfd20a493900b0010e2b4b6db80f72348ca6ea999769da6dcae2d0feb3d81ef03c20f724584795692cad4a27700449fd
 SHA512 
2a8431dde8eabd7f2be691abc6587e7f7e2dd37d0a98edfee5fc0efb2c33ec7979f282e341fb911ff4efe7bb3a98a831a1d37562e4b699043386639083686cf4
 DIST patch-4.9.227.xz 3492828 BLAKE2B 
e0fa15b45539458a503aa27d6a24d372d975712561691c3f42f30e525565ba479cc09c2cb52247f3f075e807197e3bdc1422245eaf699a793eeb5050c1b59d03
 SHA512 
f98c178cd6b8e17c1fc4725934978482bd528dd2ae867696d0e48aa7191a3b53a6d9da7c24b32aa130e84bfab5d600140c503186e9bdab77621ae48fb53490d2
+DIST patch-4.9.232-rt150.patch.xz 175296 BLAKE2B 
c4b0e268e6dda8d93271a895dbf7f85e30fe3940b5cf8074b6c12540d7174462a451a8e0309252df013cfe1b4f221d50825b4c669318028f6bc19b4c401cbef8
 SHA512 
7e71b6ed69f1f8bdb21a07ca7a62e731264965b34d68f35ac8cca62a4ba8e8f26e18929dff5ab0a50f2732dfb047e87789774376c7fec890f4e368ea61d0f241
+DIST patch-4.9.232.xz 3578076 BLAKE2B 
a1573d0953607b53fa4cab7246ec38da7d9dd4d45aab7bf8b46b54fc460f57b5de2a423d3fb8784ed1b9d6c753a6d6e7842739d010ac82e009b954f0098fe187
 SHA512 
4058a3f6dcdd11a89fda652f311a5bdc9d64484a735d334fcb604ef8b71fa9fda373433d14bfc6680065c0143c55d571f20d8bcab078742b5eb3eedb81e27810
 DIST patch-5.4.40-rt24.patch.xz 182360 BLAKE2B 
a122674247ad8ea4ebacb97dc870bfce04f637ce9b96d656f45508d6b3397b6dbdd2dc7116ba7cd57cae08c824b7d2576e502bb8b66fa2f42facef62cd46f11e
 SHA512 
852e6df5862b09c3c4f3e34e6bac01577c813dc646fdbbddbf2712af74b102c42e7455411b2a63927eb98bda5bf5ad2c478f2240a329b25b326d397c54d3ccd0
 DIST patch-5.4.40.xz 1309032 BLAKE2B 
cb06b3177762c5401801e71cd089f6f40f2582dff9b00618f3647152d70813bff0c5a7c6cd9bfdccd5ca5ecc7be3f57aafbd7d5bfc7e0fdde27dade1e189bb36
 SHA512 
20c19808a7e2af62ea93a4ae187db5e80078da8c4b268424c8d6f945a98eeb0ce7b1f09086813fbd9a9220ff5f062c1fcb8292abedfdc7f9d23a2d804898cd16
 DIST patch-5.4.44-rt27.patch.xz 182448 BLAKE2B 
8fa6baba31b76bda72d8f00e6cbff24a1258eb8c6d4681343745b2ae67e367c02cb629e3070f7896a32d6ae702888b0109e08c92389fe47582d722a07004ee92
 SHA512 
f03cddd9d3db5a3ef506c46251bf4eea4a074909bbe8fd6da7125724ddccada4731ed2d25535598e22f296eeef21cdb77a9e135887bd025ec9b20085dedbb557

diff --git a/sys-kernel/rt-sources/rt-sources-4.9.232_p150.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.9.232_p150.ebuild
new file mode 100644
index 000..8cec2aef7c8
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.9.232_p150.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~arm64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit eapi7-ver
+
+CKV="$(ver_cut 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE}
 \
+   
https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE};
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt" || die "sed failed"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo 

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

2020-08-15 Thread Alice Ferrazzi
commit: 3b01be2a733755d31a04296ec51b04e7fd264c5e
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Aug 15 11:22:12 2020 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Aug 15 14:26:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b01be2a

sys-kernel/rt-sources: Drop old

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>
Closes: https://github.com/gentoo/gentoo/pull/16738
Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest | 12 -
 .../rt-sources/rt-sources-4.14.170_p75.ebuild  | 54 --
 .../rt-sources/rt-sources-4.19.124_p53.ebuild  | 54 --
 .../rt-sources/rt-sources-4.4.220_p197.ebuild  | 54 --
 .../rt-sources/rt-sources-4.9.224_p144.ebuild  | 54 --
 sys-kernel/rt-sources/rt-sources-5.4.40_p24.ebuild | 54 --
 sys-kernel/rt-sources/rt-sources-5.6.14_p7.ebuild  | 54 --
 7 files changed, 336 deletions(-)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 6edd08fcbc5..f6fcae0184d 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -16,38 +16,26 @@ DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 DIST linux-5.4.tar.xz 109441440 BLAKE2B 
193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13
 SHA512 
9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f
 DIST linux-5.6.tar.xz 111785252 BLAKE2B 
8dbe02a8ca7fd3dcf512a15c5d8098c1e7f94257e65173fed43fcc45480e4ab790df8cd394e2a21dc9a00385bc9bbe98215a31e7f7e1d9c8f21cd8ace69e
 SHA512 
80846fe2b4e4a7ff471d2dde28a8216ae807a3209f959e93d39ea4fc9a189ea28ec3db9d303b3fe15a28c2cb90e7446876678e93e23353c2d6f262e364a06bc9
-DIST patch-4.14.170-rt75.patch.xz 23 BLAKE2B 
27e54322cfe60eb767f44e474ac5c086b83b0e46c18ce3ccca1c9e36b244f445e7fa84f529d6003c7b9759cb5620cc5b1648b981f595fc03db8b71a9406beed2
 SHA512 
ca848706b40437e6621efe29c2fc7791be2739165943da9590db174fe43762d7c554f152c43462bdfc20d013930e90b4fd4771e532f29f74c11ba3fff8762f28
-DIST patch-4.14.170.xz 3425092 BLAKE2B 
b92970169dda467dc8b491fdc8a2c07f11d94a69f7bf016cec5f25cc1d5ddfc2032e9cb9f6ad76a685fe98e2a75a599e0fb3d931cbb27014f5239fe4ac341a7f
 SHA512 
344d0cf4868ce48bf3fa5076c3ca82b090fd191ae657a490f20022b69be3bef0ca7065f12a9322cb785a5ab8bda60a3b00edd350e517516fcdc83ae1b311fc15
 DIST patch-4.14.184-rt84.patch.xz 239252 BLAKE2B 
c16ba6d65256df11db60a4fca7f4d1e0dd06de991af43baee60e92dfd06ea7f475e9af3e4f5dffe4023ee7dc788a676f44d541d45f59aeccc65dd85292e823e5
 SHA512 
528d0cb614d8c9a304b695e1e82483fae0b1d50c98f139e3be9b3a120ccb15b1c2c09bdf87abbd94f5bbc0be67200293b7a2a33e5d30c0624c2d7fc1d9476e27
 DIST patch-4.14.184.xz 3677908 BLAKE2B 
4565b2bcb190b94535e2fa2edfd09f1565e0805d145ea21359a10dc4cfc0f1d205f1bf46fde4c591ea3122112e228ec53f41363e5c15b2432207b31be2ae6dec
 SHA512 
7798c72c22d72fdf6819452fd2d0cff098f34870235efdf88cd9b6e64227f34120bbe98212e068ec2f639b6c33c0a07a68d389a09915eadd48f2e02d969861e0
 DIST patch-4.14.192-rt91.patch.xz 238756 BLAKE2B 
8b9e825004099de7ade0c6d001fa15729b9901f44f78e4633ba0b2f0b828dce6f881436e457c13bba302ae7a2b7e01fc0ce8f446119b9cd6133cdb30f0b8a8e0
 SHA512 
af25114dbbeb0afa6c8bc2988d9da75ec4fa8d567f1f2d566de1e2fa3b062762e25261c462b3b0ac55cfe557dfb072960797c85208b7cd5b5ebd2859df09c70a
 DIST patch-4.14.192.xz 3782532 BLAKE2B 
92ac9769f5a571e46ef47dcb95ba0f7f879d446d0bdc52c73237088010879df071700a8a379911e440fd392b36419b7fe561e705d0d3d2094a980dc4502b2a27
 SHA512 
22baa0a3883808c35989e3a94fb33ff9f35e2bb8c4e0693540728f37d1ef6e0d58e825e16457a7f91bb35661aff2a42d8756239c02955c550bf93ed9466f5982
-DIST patch-4.19.124-rt53.patch.xz 167116 BLAKE2B 
cae0de6ce1f5737c4cd732974718aa6e1cc3693a41a5422887f30d33e65e0d4d4420550200b07f447e11de86bfb8f9b515864ef6b03ab7f60f49037921b58dd5
 SHA512 
35a69ca535a33cd8846a90943a27596efcc5a343527ff1b62cb74a6bffaba6886eb0fa30170a0163eeebe2934d78d9b65d2692433d0c9c5938777f40545771e5
-DIST patch-4.19.124.xz 3067304 BLAKE2B 
55767a7c8c2e98e24245c28f759f2cf91e40a845826599f185c83c7cbfa3b58f62deaa7b34b3fdc2ddaadf6314db4c36e7e4af4ee39e720aa1b00cc974016254
 SHA512 
b28b5bdad2073cf2923d6b54dc2acbae8fe4740677fd758963c8005068711edd0dce37d3e88eb6402111949d97cc0d778c4f5389ae5a9c21462a48c2626039ba
 DIST patch-4.19.127-rt54.patch.xz 167084 BLAKE2B 

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

2020-08-15 Thread Alice Ferrazzi
commit: b4f99c1ca08c0ca526966f620bcb6633d22be5df
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Jul 18 16:12:23 2020 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Aug 15 14:25:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4f99c1c

sys-kernel/rt-sources: Add rt sources v4.19.135-rt60

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>
Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest |  2 +
 .../rt-sources/rt-sources-4.19.135_p60.ebuild  | 54 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 7589af7ebfb..a3506b939e7 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -24,6 +24,8 @@ DIST patch-4.19.124-rt53.patch.xz 167116 BLAKE2B 
cae0de6ce1f5737c4cd732974718aa6
 DIST patch-4.19.124.xz 3067304 BLAKE2B 
55767a7c8c2e98e24245c28f759f2cf91e40a845826599f185c83c7cbfa3b58f62deaa7b34b3fdc2ddaadf6314db4c36e7e4af4ee39e720aa1b00cc974016254
 SHA512 
b28b5bdad2073cf2923d6b54dc2acbae8fe4740677fd758963c8005068711edd0dce37d3e88eb6402111949d97cc0d778c4f5389ae5a9c21462a48c2626039ba
 DIST patch-4.19.127-rt54.patch.xz 167084 BLAKE2B 
96aa3f49bef2c45e0dd215ace34fac396da6d96bb82f7cf7cfd6253950a46a60657f119fd85fcc00887cacf9bfb36b4aa8db1b2c709dd4a7bde65f680a857c20
 SHA512 
3d4073417a2d9c67be27b45804c25451239015da5ead86f746f527b990efc3e06f3a653e92c4971cd353292d83623d47989b58d2c18fff76e03c18f8d057fb7f
 DIST patch-4.19.127.xz 3099692 BLAKE2B 
3e619371c980ca8a053260921b4b9cd27b78e920ee83fc0842af4f84b73ef4870c2c9d3375dc79d1ee3fef12ab018754f197c21c7bd9db1959984c10253d6db3
 SHA512 
4219b0d9660f1c0d158974f4d5551ee535525e1247fd6e2777f4ae9d0c5115672dbb5a38a4be395ea551574f9c2c096673210229b31e81446b762ff46f8bdb1e
+DIST patch-4.19.135-rt60.patch.xz 166036 BLAKE2B 
ff4afa1e31a1e5ed1cdc15e8dfc5c9991546c2a58fd172a1222316ca94427fcfd140eae6a00659f7cfc4c84c3bd49998b62de1accd5bc8741369255ee49b1447
 SHA512 
7a230226ce1252dcab535c0d1d7cac5c0e100d7909f72384ea54c3677e6d15b390bb835cf844c0e187682ce6c4516e71582898a0ccb1a5c06ccf77238713122c
+DIST patch-4.19.135.xz 3269016 BLAKE2B 
a050e0058a62495d6ee78c72797dff092fc5eb27f6a3bfc2e7b3227869fd255b78feb3b47c8d3be0555a40f8f2f88e769b1a2390519109a69b67288fb82554a6
 SHA512 
5e69f2a36718f3fd2cc0a75cc7a0d3e67c52692af3c917c97ed248840191900257650e1d3fa0ca49365e071b4b20331dfcaa3cf5d390623af622b416618516a5
 DIST patch-4.4.220-rt197.patch.xz 195660 BLAKE2B 
8389f2f9a44dc0958b3c539e43206c0516bec15054f3454680ca2bbb74f87318874f8b62386f5d8f5a4c772bbda00e007918fc42132588790297c1a289475bf4
 SHA512 
2cf124142290330cb2d533fe23ce5d19c164ce01d8ccd2d62900f58229096aa059c66223163930f1522b5ed2bf6aa197b27f2877dd4dffc152369b9755906891
 DIST patch-4.4.220.xz 3087092 BLAKE2B 
b54eb20b694f044be27a3b6f49597c24d85c917709124c0407118342802c209e4a72ac9181df4f9bb0ff558a465deaf1ec5f4d646a9c6fb6545c2201488f7638
 SHA512 
63ae7556b3d4c1eebfd1f8f316493ffb4d0dd600208877336830e0b88d513306c34d5047cd302810183b10742a311e340c24cd80af9f60deedba505afc4d62ea
 DIST patch-4.4.225-rt198.patch.xz 195516 BLAKE2B 
758edb3537be07f105dd1327ff859706aa4b9a9eaa472f369696c37248b123ba75132bbdbdd36eedcf43215d33ebf7004da7cffe5d5ce636a8147ac99f6b9efc
 SHA512 
b94aacd9dceb2cc836d25ce60de9ce149a5066c3f3d50b1c3b6c1584f0d3e7ca935116d665a064adeaec11ceda6bd1b15e4a9c20db40a4b0334e3d9325f66f0f

diff --git a/sys-kernel/rt-sources/rt-sources-4.19.135_p60.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.19.135_p60.ebuild
new file mode 100644
index 000..8cec2aef7c8
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.19.135_p60.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~arm64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit eapi7-ver
+
+CKV="$(ver_cut 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE}
 \
+   
https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE};
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt" || die "sed failed"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the 

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

2020-08-15 Thread Alice Ferrazzi
commit: 6f8b60dffaf789eef4d1e140a2cd5b6ab14423e2
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Aug 15 11:21:28 2020 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Aug 15 14:26:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f8b60df

sys-kernel/rt-sources: Add rt sources v4.4.231-rt202

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>
Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest |  2 +
 .../rt-sources/rt-sources-4.4.231_p202.ebuild  | 54 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 6461af48bce..6edd08fcbc5 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -32,6 +32,8 @@ DIST patch-4.4.220-rt197.patch.xz 195660 BLAKE2B 
8389f2f9a44dc0958b3c539e43206c0
 DIST patch-4.4.220.xz 3087092 BLAKE2B 
b54eb20b694f044be27a3b6f49597c24d85c917709124c0407118342802c209e4a72ac9181df4f9bb0ff558a465deaf1ec5f4d646a9c6fb6545c2201488f7638
 SHA512 
63ae7556b3d4c1eebfd1f8f316493ffb4d0dd600208877336830e0b88d513306c34d5047cd302810183b10742a311e340c24cd80af9f60deedba505afc4d62ea
 DIST patch-4.4.225-rt198.patch.xz 195516 BLAKE2B 
758edb3537be07f105dd1327ff859706aa4b9a9eaa472f369696c37248b123ba75132bbdbdd36eedcf43215d33ebf7004da7cffe5d5ce636a8147ac99f6b9efc
 SHA512 
b94aacd9dceb2cc836d25ce60de9ce149a5066c3f3d50b1c3b6c1584f0d3e7ca935116d665a064adeaec11ceda6bd1b15e4a9c20db40a4b0334e3d9325f66f0f
 DIST patch-4.4.225.xz 3180784 BLAKE2B 
10a5d1e65b267f9dfa10c97ee873b128647150f3092de3442f363b500f120d87e3318e4db7c74358ab2da5dcec4f1cf8ca084aa7b239b3c064b09c2515931bd5
 SHA512 
f94665e755f0a79b97a4d77fa712be97d0af040cf90805e372664f9393138b0f6cd3f5cd7180e4c095fb6cc498fbc7a9358e4f9d1490f99575ad82a6cbe043f1
+DIST patch-4.4.231-rt202.patch.xz 195124 BLAKE2B 
4eefc64ef491054092078edd764cc376793fec9fd6e1f88c1fd06abe69c59418e29f6b4c25668b711ad7683b8d8518db89a2eccb9785bd7f0731ee8340193abb
 SHA512 
55c06564f0dea80dea8462be653c28bafba7fcdfd44c774f348aaeb6bf84cc9e88985713a4d8c48c8d257045f710fde46587ed336c62d3933b98c798e9f6c41f
+DIST patch-4.4.231.xz 3240736 BLAKE2B 
75b0c92171ec12571a704f817c2d020f27dd945b68481936c0d3cd9332cfa7aa85630f60685805477cee61c8c6ed894b70d5651afea1b8784a28eb0d32f3
 SHA512 
05884136475aca92e212866908afca8a5fffdfe7d1127fc64a5b60dc638955e92c94509d483d7e603ebdf466d85646083fc7ef468a60b4c096d48d5a38786f81
 DIST patch-4.9.224-rt144.patch.xz 175820 BLAKE2B 
66e601ebfa393644671c181c8131bdb09f48ce20c50b9ca8026661cfce263e325cefff6d3cc3bc9aa35bfeb0ba0a354f2e7fe2acc6e3dced3434f387981ca1d7
 SHA512 
104397378ede87f1c3cee0a08a4d9e75e3571c0b7d5872f602d10e9c47d9ff943e914e411980abcef585bf762b842ee4872e7d0629c2a5e473b6dcce453dbafe
 DIST patch-4.9.224.xz 3465868 BLAKE2B 
a13ab60afeba8ec9a4f797d67e505cf453b7590f617b695b416896e8eca85d083b2e718941fda882246acf7489c2f0f4f765139baedc7efd8382a5b311d52798
 SHA512 
df45c6c77e0d688cc5d101f98e8dc0a52383dc482d9f5d8a8970b6c7de355216cfdb62a796071ec47cef6559f1f00f839ea627c3dca36058254f3a5b335104e7
 DIST patch-4.9.227-rt146.patch.xz 175816 BLAKE2B 
cd66e317e38d7f789863c21d080fed56bfd20a493900b0010e2b4b6db80f72348ca6ea999769da6dcae2d0feb3d81ef03c20f724584795692cad4a27700449fd
 SHA512 
2a8431dde8eabd7f2be691abc6587e7f7e2dd37d0a98edfee5fc0efb2c33ec7979f282e341fb911ff4efe7bb3a98a831a1d37562e4b699043386639083686cf4

diff --git a/sys-kernel/rt-sources/rt-sources-4.4.231_p202.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.4.231_p202.ebuild
new file mode 100644
index 000..8cec2aef7c8
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.4.231_p202.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~arm64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit eapi7-ver
+
+CKV="$(ver_cut 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE}
 \
+   
https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE};
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt" || die "sed failed"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the 

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

2020-08-15 Thread Alice Ferrazzi
commit: ec613a8f695c7939b146397b9afaee888a338755
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Jul 18 16:10:11 2020 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Aug 15 14:25:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec613a8f

sys-kernel/rt-sources: Add rt sources v5.4.54-rt33

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>
Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest |  2 +
 sys-kernel/rt-sources/rt-sources-5.4.54_p33.ebuild | 54 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index ff3a976046b..7589af7ebfb 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -36,6 +36,8 @@ DIST patch-5.4.40-rt24.patch.xz 182360 BLAKE2B 
a122674247ad8ea4ebacb97dc870bfce0
 DIST patch-5.4.40.xz 1309032 BLAKE2B 
cb06b3177762c5401801e71cd089f6f40f2582dff9b00618f3647152d70813bff0c5a7c6cd9bfdccd5ca5ecc7be3f57aafbd7d5bfc7e0fdde27dade1e189bb36
 SHA512 
20c19808a7e2af62ea93a4ae187db5e80078da8c4b268424c8d6f945a98eeb0ce7b1f09086813fbd9a9220ff5f062c1fcb8292abedfdc7f9d23a2d804898cd16
 DIST patch-5.4.44-rt27.patch.xz 182448 BLAKE2B 
8fa6baba31b76bda72d8f00e6cbff24a1258eb8c6d4681343745b2ae67e367c02cb629e3070f7896a32d6ae702888b0109e08c92389fe47582d722a07004ee92
 SHA512 
f03cddd9d3db5a3ef506c46251bf4eea4a074909bbe8fd6da7125724ddccada4731ed2d25535598e22f296eeef21cdb77a9e135887bd025ec9b20085dedbb557
 DIST patch-5.4.44.xz 1412464 BLAKE2B 
c7c0c189030402303992b130596f716c0afa7305a45996112971000d0de4d7945c9e988e0e7503d69cd4aff2ac3c003d330839ab1f3ed0a53fc7fa68c2e3da44
 SHA512 
1179f0c61d99ab136cc81bfed153e18a88cf4438f6be524b54d5f4ea76030e059c65e52d532cafe4eb7b1671c04583f6bf8f9114a3da969cd102a78a3530fd3f
+DIST patch-5.4.54-rt33.patch.xz 182260 BLAKE2B 
82e334ed77aae742974d3b121b9e787efbe17f5bd32949d1fce4afbb58a14ccc8b9c8f0a92949c2de907032051e274d56134743aa81354daab06a62a69beaab9
 SHA512 
bcebba6e88ed0dacfb8c7aeed8e8a822316ecb05112674fd6195dd5e210345e4bfd42683748bf676b8238fa0357b2bb49a25b877876c7097ee941e500b07b607
+DIST patch-5.4.54.xz 1730872 BLAKE2B 
aa736c718423c7c6f884b9a76fdb1b24ed587d9b2c103c39f312ae1910510f592c43bb41d4273904878f5aa40e907674bc162466f719250ef38923ad896cfde8
 SHA512 
bd365f01e5aace4fe6322d7ab7d93df93779c1e1520e650d39fd49802dc3554b89c889830d112e19b6ce531d00bcef77f55f4a4d36e5e84224a11a1205e43789
 DIST patch-5.6.14-rt7.patch.xz 158640 BLAKE2B 
81e0a0c4b4feea3abd60efe89c7ae4be7dd8ba45999f514f63a9a6179c2c31acaf15911b0815c6f87aa7e3c36836fbb3cc065405c8be31134f3b2b144be48d72
 SHA512 
4d3604fa482bf6ae4d06ae97e85d10fd9248d174927713a2f010698137638a2d070ecf3e71cdea6529c67aad3fbfee8532adc2f3d810a4a7d6819e9ea19ae7af
 DIST patch-5.6.14.xz 376464 BLAKE2B 
01b64288759faa67aedfded7dfca5d8d1e894a863bf7bcaf91dd8f23c8b8c9df51d2e54ac5e414a33fc3469b32c10f1d630cf2636206b8e159d602df40ad3048
 SHA512 
8019bf12993f43d5508845a48b250d30220a8db6db262c8b97cd3f7c73abf0d054fcdfacb671644de529ceb495b95982d693a889051fb60fafc3180bd5b4f29e
 DIST patch-5.6.17-rt10.patch.xz 169292 BLAKE2B 
3d4f591247d924d2cf89adc04846dc7cf8d9f58938fe7716560f97bfcc3e9c4c82f06cf1eacb8c95ef65d6f5ef624f969f849f9f3367beb9b95fb13eea3fd50b
 SHA512 
5d5c7ff8da7a06aba70de38a03cfd25a4f3913c79d6723fd44a88fd7a5e9478a925587fda278b8552d14868c1c9c460105eb96fd2d80c3ce2043309e9cdedbad

diff --git a/sys-kernel/rt-sources/rt-sources-5.4.54_p33.ebuild 
b/sys-kernel/rt-sources/rt-sources-5.4.54_p33.ebuild
new file mode 100644
index 000..12c5881dd44
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-5.4.54_p33.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~arm64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit eapi7-ver
+
+CKV="$(ver_cut 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE}
 \
+   
https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE};
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT/g" \
+   -i "${S}/kernel/Kconfig.preempt" || die "sed failed"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any 

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

2020-08-15 Thread Alice Ferrazzi
commit: f47ab08f5491f12d6fa1deaf5e3a1856ead8e0ef
Author: Kurt Kanzenbach  kmk-computers  de>
AuthorDate: Sat Jul 18 16:14:24 2020 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Aug 15 14:26:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f47ab08f

sys-kernel/rt-sources: Add rt sources v4.14.192-rt91

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Kurt Kanzenbach  kmk-computers.de>
Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/rt-sources/Manifest |  2 +
 .../rt-sources/rt-sources-4.14.192_p91.ebuild  | 54 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index a3506b939e7..a86d4b459bb 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -20,6 +20,8 @@ DIST patch-4.14.170-rt75.patch.xz 23 BLAKE2B 
27e54322cfe60eb767f44e474ac5c08
 DIST patch-4.14.170.xz 3425092 BLAKE2B 
b92970169dda467dc8b491fdc8a2c07f11d94a69f7bf016cec5f25cc1d5ddfc2032e9cb9f6ad76a685fe98e2a75a599e0fb3d931cbb27014f5239fe4ac341a7f
 SHA512 
344d0cf4868ce48bf3fa5076c3ca82b090fd191ae657a490f20022b69be3bef0ca7065f12a9322cb785a5ab8bda60a3b00edd350e517516fcdc83ae1b311fc15
 DIST patch-4.14.184-rt84.patch.xz 239252 BLAKE2B 
c16ba6d65256df11db60a4fca7f4d1e0dd06de991af43baee60e92dfd06ea7f475e9af3e4f5dffe4023ee7dc788a676f44d541d45f59aeccc65dd85292e823e5
 SHA512 
528d0cb614d8c9a304b695e1e82483fae0b1d50c98f139e3be9b3a120ccb15b1c2c09bdf87abbd94f5bbc0be67200293b7a2a33e5d30c0624c2d7fc1d9476e27
 DIST patch-4.14.184.xz 3677908 BLAKE2B 
4565b2bcb190b94535e2fa2edfd09f1565e0805d145ea21359a10dc4cfc0f1d205f1bf46fde4c591ea3122112e228ec53f41363e5c15b2432207b31be2ae6dec
 SHA512 
7798c72c22d72fdf6819452fd2d0cff098f34870235efdf88cd9b6e64227f34120bbe98212e068ec2f639b6c33c0a07a68d389a09915eadd48f2e02d969861e0
+DIST patch-4.14.192-rt91.patch.xz 238756 BLAKE2B 
8b9e825004099de7ade0c6d001fa15729b9901f44f78e4633ba0b2f0b828dce6f881436e457c13bba302ae7a2b7e01fc0ce8f446119b9cd6133cdb30f0b8a8e0
 SHA512 
af25114dbbeb0afa6c8bc2988d9da75ec4fa8d567f1f2d566de1e2fa3b062762e25261c462b3b0ac55cfe557dfb072960797c85208b7cd5b5ebd2859df09c70a
+DIST patch-4.14.192.xz 3782532 BLAKE2B 
92ac9769f5a571e46ef47dcb95ba0f7f879d446d0bdc52c73237088010879df071700a8a379911e440fd392b36419b7fe561e705d0d3d2094a980dc4502b2a27
 SHA512 
22baa0a3883808c35989e3a94fb33ff9f35e2bb8c4e0693540728f37d1ef6e0d58e825e16457a7f91bb35661aff2a42d8756239c02955c550bf93ed9466f5982
 DIST patch-4.19.124-rt53.patch.xz 167116 BLAKE2B 
cae0de6ce1f5737c4cd732974718aa6e1cc3693a41a5422887f30d33e65e0d4d4420550200b07f447e11de86bfb8f9b515864ef6b03ab7f60f49037921b58dd5
 SHA512 
35a69ca535a33cd8846a90943a27596efcc5a343527ff1b62cb74a6bffaba6886eb0fa30170a0163eeebe2934d78d9b65d2692433d0c9c5938777f40545771e5
 DIST patch-4.19.124.xz 3067304 BLAKE2B 
55767a7c8c2e98e24245c28f759f2cf91e40a845826599f185c83c7cbfa3b58f62deaa7b34b3fdc2ddaadf6314db4c36e7e4af4ee39e720aa1b00cc974016254
 SHA512 
b28b5bdad2073cf2923d6b54dc2acbae8fe4740677fd758963c8005068711edd0dce37d3e88eb6402111949d97cc0d778c4f5389ae5a9c21462a48c2626039ba
 DIST patch-4.19.127-rt54.patch.xz 167084 BLAKE2B 
96aa3f49bef2c45e0dd215ace34fac396da6d96bb82f7cf7cfd6253950a46a60657f119fd85fcc00887cacf9bfb36b4aa8db1b2c709dd4a7bde65f680a857c20
 SHA512 
3d4073417a2d9c67be27b45804c25451239015da5ead86f746f527b990efc3e06f3a653e92c4971cd353292d83623d47989b58d2c18fff76e03c18f8d057fb7f

diff --git a/sys-kernel/rt-sources/rt-sources-4.14.192_p91.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.14.192_p91.ebuild
new file mode 100644
index 000..8cec2aef7c8
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.14.192_p91.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~arm64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit eapi7-ver
+
+CKV="$(ver_cut 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE}
 \
+   
https://www.kernel.org/pub/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE};
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt" || die "sed failed"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the 

[gentoo-commits] repo/gentoo:master commit in: app-officeext/ooofbtools/

2020-08-15 Thread Andrey Grozin
commit: e95d1edfd48d8022ee09d9d349cfdb154ba114ff
Author: Andrey Grozin  gentoo  org>
AuthorDate: Sat Aug 15 13:33:33 2020 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Sat Aug 15 13:33:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e95d1edf

app-officeext/ooofbtools: bump to 2.57

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andrey Grozin  gentoo.org>

 app-officeext/ooofbtools/Manifest   |  1 +
 app-officeext/ooofbtools/ooofbtools-2.57.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/app-officeext/ooofbtools/Manifest 
b/app-officeext/ooofbtools/Manifest
index a4a735f8312..88ca203538e 100644
--- a/app-officeext/ooofbtools/Manifest
+++ b/app-officeext/ooofbtools/Manifest
@@ -1 +1,2 @@
 DIST OOoFBTools-2.56.zip 5256051 BLAKE2B 
ed78d2a2480d2c882c56ed7918d729c794227e909c7e6a115bc8632020b2c33ec9da0f619350b2eacf6ff604f727af9f50b435cd80f2fe952b440ff5f388
 SHA512 
12bb763a7eadb1aa03d9ed09b5b9754ef4465dba588b79f2399a48709ef408dddbd49ff470c872fe4e41f3da3faadb12eb5a37b31afc1f0f07a0b810110aad99
+DIST OOoFBTools-2.57.zip 5362083 BLAKE2B 
81d361839cc5f3282d7d31465561230cdc2965c69cdc9ad3db5d6293a1ec76cb0bf1ec6fc8af706d6c5870beca3fb15fe091583eda127d1de26dd1d71c8e7b7f
 SHA512 
f6cf01b173885eb30d1166753a3ffd357a23db71b517e84713783cbea7b36deb98d586faa0a555d6d7fb21b46e89ee78860407aa28fb7bb1e272a51df570ea50

diff --git a/app-officeext/ooofbtools/ooofbtools-2.57.ebuild 
b/app-officeext/ooofbtools/ooofbtools-2.57.ebuild
new file mode 100644
index 000..942835191dd
--- /dev/null
+++ b/app-officeext/ooofbtools/ooofbtools-2.57.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="OOoFBTools"
+OFFICE_EXTENSIONS=( "${MY_PN}.oxt" )
+inherit office-ext-r1
+
+DESCRIPTION="Open/LibreOffice extension for the FictionBook2 format with 
validation"
+HOMEPAGE="https://sourceforge.net/projects/fbtools/;
+SRC_URI="mirror://sourceforge/fbtools/files/release/${MY_PN}-${PV}.zip"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-arch/zip
+   dev-libs/libxml2
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+OFFICE_EXTENSIONS_LOCATION="${S}"
+
+src_prepare() {
+   default
+
+   # Remove Windows cruft
+   pushd "${WORKDIR}/${MY_PN}.oxt" &>/dev/null || die
+   rm -r win32 || die
+   popd &>/dev/null || die
+}
+
+src_install() {
+   office-ext-r1_src_install
+   dodoc ChangeLog*
+}



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

2020-08-15 Thread Jeroen Roovers
commit: 07e54e9cb8c9cbe5d882436ee77ab823b4f96f8d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Aug 15 13:29:55 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Aug 15 13:30:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07e54e9c

net-analyzer/net-snmp: Old

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

 net-analyzer/net-snmp/Manifest |   3 -
 .../net-snmp/files/net-snmp-5.8-my_bool.patch  |  23 ---
 net-analyzer/net-snmp/net-snmp-5.8-r3.ebuild   | 200 ---
 net-analyzer/net-snmp/net-snmp-5.8-r4.ebuild   | 201 
 net-analyzer/net-snmp/net-snmp-5.8-r5.ebuild   | 210 
 net-analyzer/net-snmp/net-snmp-5.8.1_pre2.ebuild   | 211 -
 net-analyzer/net-snmp/net-snmp-5.8.1_rc1.ebuild| 211 -
 7 files changed, 1059 deletions(-)

diff --git a/net-analyzer/net-snmp/Manifest b/net-analyzer/net-snmp/Manifest
index 49e33a99e38..e65dc054b55 100644
--- a/net-analyzer/net-snmp/Manifest
+++ b/net-analyzer/net-snmp/Manifest
@@ -1,6 +1,3 @@
 DIST net-snmp-5.7.3-patches-3.tar.xz 3176 BLAKE2B 
1a71d6743afb841f664c6058e32c7c411af62b0f36acd3bb9251804893ed12f462a0c5bab828e309eeec7824def2dca8fa866350b90a62ec4f0df1141b51ecae
 SHA512 
d8a91b9668320a1e19d062eb86dd4d16beb7c2d15ac7ebbb9d2a4bd298af39bbb0a2613504dbb0057cccdec731f08f2308c5a15395e1fbc29bb0611ed8aca636
 DIST net-snmp-5.8.1.pre1.tar.gz 6630615 BLAKE2B 
32ae7177fc08a773928da7f19cd06617feb1358c0dd21d39e08db460fa4267b6353f4afede1f5a500a628235a6a94d95700c84df6e85bda18b7a7a6e7bf3781f
 SHA512 
e1ad421970abb67490a08fa735bbe9ff77a6fc5a19b8bf6942bef80f5b328f8038373cd5995970085177bcfe939dfa309019512b2abce0e8cf779e693f7d6dbd
-DIST net-snmp-5.8.1.pre2.tar.gz 6642893 BLAKE2B 
4b2a1e87738c3bde49354f0cca84628f2953ee14f6b08ca53cf0bc5c320052cb4fe0f6eeb46551eaf2d45ba9c17f86ce06b64c00c1629b2d17bc351c0ccb37a8
 SHA512 
78cd9a29cc89ff7fa170ee767db3ca2077fc1d877f207c018887c2ea0148ffaf01eb013efc21b47f14c893a6ca48b3b439210ccd27dfc77f8c8e56bf9546f23e
-DIST net-snmp-5.8.1.rc1.tar.gz 6690067 BLAKE2B 
35f9547de7b40c8a6f4a046e5cdb9b4a28650f0d87d51572659c5cbb0759503b9d328fc227fa2061f18a733ceaa8c22aa771fabe685a97fab1dc9b5ff98c2648
 SHA512 
294f2c5656bfc5141ef6aa5826f79b886094ea702ec20918c0ff20aa4100c8503b33a21086c6c028cff25c05504b9f8ed29533c89745586e32d63839345e2331
-DIST net-snmp-5.8.tar.gz 6591680 BLAKE2B 
ac1bff4152310da57818a00d752a08a7fc61d697b02479d9952ca12d024d3d68dc8bfa674571e93d6f3597605b2fe91513fb6839057a80f2c3dd8d0cce0077f2
 SHA512 
27895a583b23f3e14c48562bc32f3ba83513d81aa848e878be9a3650f0458d45950635c937ef627135f80b757b663e71fab9a3bde4fd91889153998ae3468fe7
 DIST net-snmp-5.9.tar.gz 37424919 BLAKE2B 
673c7f5e05b5562821b907e9e06e7dd80e6f3c08521cdd71321cbe9774f0f60993682670b1188b89a39ba560d10f2234ca0fb4e76e867ab26f2c82799621e8de
 SHA512 
ddba2c2fc220ee18e3f8b6756a754e206d0d7dc9b9615c92596cd16b38557bd2c7327d7bb8164fa67d85a4c757eb4f7a7dad9584e4af13facfec6b1ccae7961b

diff --git a/net-analyzer/net-snmp/files/net-snmp-5.8-my_bool.patch 
b/net-analyzer/net-snmp/files/net-snmp-5.8-my_bool.patch
deleted file mode 100644
index 72127d053c0..000
--- a/net-analyzer/net-snmp/files/net-snmp-5.8-my_bool.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-commit 9f4af8c42d515e6b214738cc97212dfbe7f749cf
-Author: Andreas Hasenack 
-Date:   Tue Feb 5 18:21:40 2019 -0800
-
-apps/snmptrapd_sql: Fix build against MySQL 8
-
-See also https://sourceforge.net/p/net-snmp/bugs/2922/.
-
-[bvanassche: changed 'int' into 'char']
-
-diff --git a/apps/snmptrapd_sql.c b/apps/snmptrapd_sql.c
-index 6126ca916..32a3b1799 100644
 a/apps/snmptrapd_sql.c
-+++ b/apps/snmptrapd_sql.c
-@@ -199,7 +199,7 @@ typedef struct sql_buf_t {
-  * static bind structures, plus 2 static buffers to bind to.
-  */
- static MYSQL_BIND _tbind[TBIND_MAX], _vbind[VBIND_MAX];
--static my_bool_no_v3;
-+static char   _no_v3;
- 
- static void _sql_process_queue(u_int dontcare, void *meeither);
- 

diff --git a/net-analyzer/net-snmp/net-snmp-5.8-r3.ebuild 
b/net-analyzer/net-snmp/net-snmp-5.8-r3.ebuild
deleted file mode 100644
index a1920941b96..000
--- a/net-analyzer/net-snmp/net-snmp-5.8-r3.ebuild
+++ /dev/null
@@ -1,200 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_SINGLE_IMPL=yesplz
-DISTUTILS_OPTIONAL=yesplz
-WANT_AUTOMAKE=none
-PATCHSET=3
-GENTOO_DEPEND_ON_PERL=no
-
-inherit autotools distutils-r1 eutils ltprune perl-module systemd
-
-DESCRIPTION="Software for generating and retrieving SNMP data"
-HOMEPAGE="http://www.net-snmp.org/;
-SRC_URI="
-   mirror://sourceforge/project/${PN}/${PN}/${PV/_p*/}/${P/_p*/}.tar.gz
-   https://dev.gentoo.org/~jer/${PN}-5.7.3-patches-3.tar.xz
-"
-
-S=${WORKDIR}/${P/_/.}
-
-# GPL-2 for the init scripts
-LICENSE="HPND BSD GPL-2"

[gentoo-commits] repo/proj/guru:dev commit in: sys-libs/nss-tls/

2020-08-15 Thread Andrea Postiglione
commit: 60336b57a77f7cede28ac960018f2813c046f48d
Author: Andrea Postiglione  gmail  com>
AuthorDate: Sat Aug 15 13:25:59 2020 +
Commit: Andrea Postiglione  gmail  com>
CommitDate: Sat Aug 15 13:26:44 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=60336b57

sys-libs/nss-tls : fix binary strip

Signed-off-by: Andrea Postiglione  gmail.com>

 sys-libs/nss-tls/nss-tls-1.0.ebuild  | 5 -
 sys-libs/nss-tls/nss-tls-.ebuild | 5 -
 2 files changed, 10 deletions(-)

diff --git a/sys-libs/nss-tls/nss-tls-1.0.ebuild 
b/sys-libs/nss-tls/nss-tls-1.0.ebuild
index 0c7ea1e..fb386f9 100644
--- a/sys-libs/nss-tls/nss-tls-1.0.ebuild
+++ b/sys-libs/nss-tls/nss-tls-1.0.ebuild
@@ -22,10 +22,6 @@ BDEPEND="${DEPEND}
dev-util/meson
dev-util/ninja"
 
-QA_PRESTRIPPED="/usr/bin/tlslookup
-   /usr/lib64/libnss_tls.so.2
-   /usr/sbin/nss-tlsd"
-
 src_prepare() {
default
sed -e "s/@0@\/run\/nss-tls/\/var\/run\/nss-tls/" -i 
"${S}"/meson.build || die
@@ -34,7 +30,6 @@ src_prepare() {
 src_configure() {
local emesonargs=(
--buildtype=release
-   -Dstrip=true
)
meson_src_configure
 }

diff --git a/sys-libs/nss-tls/nss-tls-.ebuild 
b/sys-libs/nss-tls/nss-tls-.ebuild
index cbce974..ac8fe9c 100644
--- a/sys-libs/nss-tls/nss-tls-.ebuild
+++ b/sys-libs/nss-tls/nss-tls-.ebuild
@@ -22,10 +22,6 @@ BDEPEND="${DEPEND}
dev-util/meson
dev-util/ninja"
 
-QA_PRESTRIPPED="/usr/bin/tlslookup
-   /usr/lib64/libnss_tls.so.2
-   /usr/sbin/nss-tlsd"
-
 EGIT_REPO_URI="https://github.com/dimkr/nss-tls.git;
 EGIT_BRANCH="master"
 
@@ -37,7 +33,6 @@ src_prepare() {
 src_configure() {
local emesonargs=(
--buildtype=release
-   -Dstrip=true
)
meson_src_configure
 }



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

2020-08-15 Thread Jeroen Roovers
commit: 41ce6d213a8daee9d1d607a836bec31a4b975085
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Aug 15 13:18:04 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Aug 15 13:18:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41ce6d21

net-analyzer/net-snmp: Version 5.9

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

 net-analyzer/net-snmp/Manifest |  1 +
 .../net-snmp/files/net-snmp-5.9-MakeMaker.patch| 10 +++
 ...et-snmp-.ebuild => net-snmp-5.9.ebuild} | 31 +-
 net-analyzer/net-snmp/net-snmp-.ebuild | 20 +++---
 4 files changed, 34 insertions(+), 28 deletions(-)

diff --git a/net-analyzer/net-snmp/Manifest b/net-analyzer/net-snmp/Manifest
index 810f50fdabf..49e33a99e38 100644
--- a/net-analyzer/net-snmp/Manifest
+++ b/net-analyzer/net-snmp/Manifest
@@ -3,3 +3,4 @@ DIST net-snmp-5.8.1.pre1.tar.gz 6630615 BLAKE2B 
32ae7177fc08a773928da7f19cd06617
 DIST net-snmp-5.8.1.pre2.tar.gz 6642893 BLAKE2B 
4b2a1e87738c3bde49354f0cca84628f2953ee14f6b08ca53cf0bc5c320052cb4fe0f6eeb46551eaf2d45ba9c17f86ce06b64c00c1629b2d17bc351c0ccb37a8
 SHA512 
78cd9a29cc89ff7fa170ee767db3ca2077fc1d877f207c018887c2ea0148ffaf01eb013efc21b47f14c893a6ca48b3b439210ccd27dfc77f8c8e56bf9546f23e
 DIST net-snmp-5.8.1.rc1.tar.gz 6690067 BLAKE2B 
35f9547de7b40c8a6f4a046e5cdb9b4a28650f0d87d51572659c5cbb0759503b9d328fc227fa2061f18a733ceaa8c22aa771fabe685a97fab1dc9b5ff98c2648
 SHA512 
294f2c5656bfc5141ef6aa5826f79b886094ea702ec20918c0ff20aa4100c8503b33a21086c6c028cff25c05504b9f8ed29533c89745586e32d63839345e2331
 DIST net-snmp-5.8.tar.gz 6591680 BLAKE2B 
ac1bff4152310da57818a00d752a08a7fc61d697b02479d9952ca12d024d3d68dc8bfa674571e93d6f3597605b2fe91513fb6839057a80f2c3dd8d0cce0077f2
 SHA512 
27895a583b23f3e14c48562bc32f3ba83513d81aa848e878be9a3650f0458d45950635c937ef627135f80b757b663e71fab9a3bde4fd91889153998ae3468fe7
+DIST net-snmp-5.9.tar.gz 37424919 BLAKE2B 
673c7f5e05b5562821b907e9e06e7dd80e6f3c08521cdd71321cbe9774f0f60993682670b1188b89a39ba560d10f2234ca0fb4e76e867ab26f2c82799621e8de
 SHA512 
ddba2c2fc220ee18e3f8b6756a754e206d0d7dc9b9615c92596cd16b38557bd2c7327d7bb8164fa67d85a4c757eb4f7a7dad9584e4af13facfec6b1ccae7961b

diff --git a/net-analyzer/net-snmp/files/net-snmp-5.9-MakeMaker.patch 
b/net-analyzer/net-snmp/files/net-snmp-5.9-MakeMaker.patch
new file mode 100644
index 000..1c6a3fd1eaf
--- /dev/null
+++ b/net-analyzer/net-snmp/files/net-snmp-5.9-MakeMaker.patch
@@ -0,0 +1,10 @@
+--- a/perl/Makefile.PL
 b/perl/Makefile.PL
+@@ -3,6 +3,7 @@
+ use ExtUtils::MakeMaker;
+ use Config;
+ require 5;
++use lib '.';
+ use MakefileSubs;
+ 
+ # Prevent that MakeMaker complains about unknown parameter names.

diff --git a/net-analyzer/net-snmp/net-snmp-.ebuild 
b/net-analyzer/net-snmp/net-snmp-5.9.ebuild
similarity index 92%
copy from net-analyzer/net-snmp/net-snmp-.ebuild
copy to net-analyzer/net-snmp/net-snmp-5.9.ebuild
index d75684cc5af..5f50c7d5aff 100644
--- a/net-analyzer/net-snmp/net-snmp-.ebuild
+++ b/net-analyzer/net-snmp/net-snmp-5.9.ebuild
@@ -2,26 +2,25 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
-DISTUTILS_SINGLE_IMPL=yesplz
 DISTUTILS_OPTIONAL=yesplz
-WANT_AUTOMAKE=none
-PATCHSET=3
+DISTUTILS_SINGLE_IMPL=yesplz
 GENTOO_DEPEND_ON_PERL=no
-
-inherit autotools distutils-r1 git-r3 perl-module systemd
+PATCHSET=3
+PYTHON_COMPAT=( python3_{6,7,8} )
+WANT_AUTOMAKE=none
+inherit autotools distutils-r1 perl-module systemd
 
 DESCRIPTION="Software for generating and retrieving SNMP data"
 HOMEPAGE="http://www.net-snmp.org/;
-EGIT_REPO_URI="https://github.com/net-snmp/net-snmp;
 SRC_URI="
+   mirror://sourceforge/project/${PN}/${PN}/${PV/_rc*/}/${P/_rc/.rc}.tar.gz
https://dev.gentoo.org/~jer/${PN}-5.7.3-patches-3.tar.xz
 "
 
 # GPL-2 for the init scripts
 LICENSE="HPND BSD GPL-2"
 SLOT="0/40"
-KEYWORDS=""
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 IUSE="
X bzip2 doc elf kmem ipv6 libressl lm-sensors mfd-rewrites minimal mysql
netlink pcap pci perl python rpm selinux smux ssl tcpd ucd-compat zlib
@@ -69,8 +68,6 @@ RDEPEND="
)
selinux? ( sec-policy/selinux-snmp )
 "
-S=${WORKDIR}/${P/_/.}
-S=${WORKDIR}/${P/_p*/}
 RESTRICT=test
 PATCHES=(
"${FILESDIR}"/${PN}-5.7.3-include-limits.patch
@@ -79,6 +76,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-5.8.1-pkg-config.patch
"${FILESDIR}"/${PN}-5.8.1-net-snmp-config-libdir.patch
"${FILESDIR}"/${PN}-5.8.1-mysqlclient.patch
+   "${FILESDIR}"/${PN}-5.9-MakeMaker.patch
"${FILESDIR}"/${PN}--tinfo.patch
 )
 
@@ -86,11 +84,6 @@ pkg_setup() {
use python && python-single-r1_pkg_setup
 }
 
-src_unpack() {
-   default
-   git-r3_src_unpack
-}
-
 src_prepare() {
# snmpconf generates config files 

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

2020-08-15 Thread Ben Kohler
commit: 068d532e7a1047742b48f72f0889529200341ff2
Author: Ben Kohler  gentoo  org>
AuthorDate: Sat Aug 15 12:28:11 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Sat Aug 15 12:28:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=068d532e

net-misc/remmina: bump to 1.4.8

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Ben Kohler  gentoo.org>

 net-misc/remmina/Manifest |  1 +
 net-misc/remmina/remmina-1.4.8.ebuild | 98 +++
 2 files changed, 99 insertions(+)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index c084b43dacc..6f6f809f6c6 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -1,2 +1,3 @@
 DIST Remmina-v1.4.5.tar.gz 1787506 BLAKE2B 
095a01cca168daaef9ef59ff5adb9bb475467e8e8c42cac74a1a605627b09aa7246aa941b514b0de29739516aa988148f377040ed8629df3d5b17f0b1158cf76
 SHA512 
fec07b488db8d438aa6a0263e13557c10f1401a81b3371a2da03a1037d51f8e58e88652a15c6d6ce9e02535ef93ed0f9c5b674ab5efab430380f4b7dd57c4d9d
 DIST Remmina-v1.4.7.tar.gz 1908687 BLAKE2B 
a6656821d727914f70bafe50d5c3764e3c36a4753c618048b91eadc1fa27b8f03bcd313b99cfd46cadc446b85b583994528895f9fb755d6c8ee28e0b0bab66d1
 SHA512 
ebe1e62e090062107ed6674d494255bac9e3d175553bc5ae949aa1bfc9e1de4b59f35f523ee36b08bb02580513d3b585344b9864001dd991cac656f1c13116e9
+DIST Remmina-v1.4.8.tar.gz 1998851 BLAKE2B 
80427d06c041d6315fa8fabe90aa8a52ebd2cd1a76ab0e74672f54328d5fa9d0d287e551a5027e5ef60471ce4d934cfe745742058f26e7b93a95e2a1f85dbfd9
 SHA512 
cf8ea93904a1643f480d7de72bc4154570bcf184150ffc4b3b06699c95f354bc2f4f595c3b00c6c87e9797dc60bcb9993913647b2073f1e85977026f290d81bf

diff --git a/net-misc/remmina/remmina-1.4.8.ebuild 
b/net-misc/remmina/remmina-1.4.8.ebuild
new file mode 100644
index 000..f73e076ebcd
--- /dev/null
+++ b/net-misc/remmina/remmina-1.4.8.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake eutils xdg
+
+MY_P="${PN^}-v${PV}"
+
+DESCRIPTION="A GTK+ RDP, SPICE, VNC, XDMCP and SSH client"
+HOMEPAGE="https://remmina.org/;
+SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls 
spice ssh rdp telemetry telepathy vnc webkit zeroconf"
+
+DEPEND="
+   dev-libs/glib:2
+   dev-libs/json-glib
+   dev-libs/libsodium:=
+   net-libs/libsoup
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libxkbfile
+   appindicator? ( dev-libs/libappindicator:3 )
+   crypt? ( dev-libs/libgcrypt:0= )
+   rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129
+   =net-dns/avahi-0.8-r2[dbus,gtk] 


[gentoo-commits] repo/proj/guru:dev commit in: net-im/nheko/

2020-08-15 Thread Ronny Gutbrod
commit: 8d48c4e2221cca354735589d67215e1af1a6258b
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sat Aug 15 12:11:37 2020 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sat Aug 15 12:11:37 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d48c4e2

net-im/nheko: Don't call base_src_prepare() 2 times.

cmake_src_prepare() and xdg_src_prepare() both call default()
a.k.a. base_src_prepare(). That would result in the attempt to apply
each patch 2 times.

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 net-im/nheko/nheko-0.7.1.ebuild | 2 +-
 net-im/nheko/nheko-0.7.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-im/nheko/nheko-0.7.1.ebuild b/net-im/nheko/nheko-0.7.1.ebuild
index 16b387a..43287ca 100644
--- a/net-im/nheko/nheko-0.7.1.ebuild
+++ b/net-im/nheko/nheko-0.7.1.ebuild
@@ -34,7 +34,7 @@ BDEPEND="dev-qt/linguist-tools:5"
 
 src_prepare() {
cmake_src_prepare
-   xdg_src_prepare
+   xdg_environment_reset
 
# TODO: Unbundle SingleApplication, blurhash and cpp-httplib.
 }

diff --git a/net-im/nheko/nheko-0.7.2.ebuild b/net-im/nheko/nheko-0.7.2.ebuild
index b226c0c..e6ce8bd 100644
--- a/net-im/nheko/nheko-0.7.2.ebuild
+++ b/net-im/nheko/nheko-0.7.2.ebuild
@@ -34,7 +34,7 @@ BDEPEND="dev-qt/linguist-tools:5"
 
 src_prepare() {
cmake_src_prepare
-   xdg_src_prepare
+   xdg_environment_reset
 
# TODO: Unbundle SingleApplication, blurhash and cpp-httplib.
 }



[gentoo-commits] repo/proj/guru:dev commit in: net-im/nheko/

2020-08-15 Thread Ronny Gutbrod
commit: edbacefb52d3992741406ede9cbe1aef5d3e8036
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sat Aug 15 12:08:26 2020 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sat Aug 15 12:09:27 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=edbacefb

net-im/nheko: Move dev-qt/linguist-tools to BDEPEND.

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 net-im/nheko/nheko-0.7.1.ebuild | 2 +-
 net-im/nheko/nheko-0.7.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-im/nheko/nheko-0.7.1.ebuild b/net-im/nheko/nheko-0.7.1.ebuild
index e5dcde9..16b387a 100644
--- a/net-im/nheko/nheko-0.7.1.ebuild
+++ b/net-im/nheko/nheko-0.7.1.ebuild
@@ -28,9 +28,9 @@ RDEPEND="
 "
 DEPEND="
${RDEPEND}
-   dev-qt/linguist-tools:5
dev-libs/spdlog
 "
+BDEPEND="dev-qt/linguist-tools:5"
 
 src_prepare() {
cmake_src_prepare

diff --git a/net-im/nheko/nheko-0.7.2.ebuild b/net-im/nheko/nheko-0.7.2.ebuild
index 54b3b78..b226c0c 100644
--- a/net-im/nheko/nheko-0.7.2.ebuild
+++ b/net-im/nheko/nheko-0.7.2.ebuild
@@ -28,9 +28,9 @@ RDEPEND="
 "
 DEPEND="
${RDEPEND}
-   dev-qt/linguist-tools:5
dev-libs/spdlog
 "
+BDEPEND="dev-qt/linguist-tools:5"
 
 src_prepare() {
cmake_src_prepare



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

2020-08-15 Thread Michael Orlitzky
commit: b6950dbb4023a794944c216138caaeaa7bd115fc
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sat Aug 15 01:04:38 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Aug 15 11:58:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6950dbb

net-libs/libhubbub: remove old "unused" version.

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Orlitzky  gentoo.org>

 net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild | 57 
 1 file changed, 57 deletions(-)

diff --git a/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild 
b/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild
deleted file mode 100644
index e0afef19c3f..000
--- a/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs flag-o-matic
-
-DESCRIPTION="HTML5 compliant parsing library, written in C"
-HOMEPAGE="https://www.netsurf-browser.org/projects/hubbub/;
-SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz;
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~m68k-mint"
-IUSE="doc test"
-
-BDEPEND="
-   dev-util/netsurf-buildsystem
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   test? ( dev-lang/perl )
-"
-RDEPEND="dev-libs/libparserutils:="
-DEPEND="${RDEPEND}
-   test? ( dev-libs/json-c )"
-RESTRICT="!test? ( test )"
-
-DOCS=( README docs/{Architecture,Macros,Todo,Treebuilder,Updated} )
-PATCHES=( "${FILESDIR}/libhubbub-0.3.6-json-c.patch" )
-
-src_prepare() {
-   default
-   sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \
-   -i test/tree2.c || die
-}
-
-_emake() {
-   source /usr/share/netsurf-buildsystem/gentoo-helpers.sh
-   netsurf_define_makeconf
-   append-cflags -Wno-error
-   emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@
-}
-
-src_compile() {
-   _emake
-   use doc && _emake docs
-}
-
-src_test() {
-   _emake test
-}
-
-src_install() {
-   _emake DESTDIR="${D}" install
-   use doc && HTML_DOCS=( docs/html/. )
-   einstalldocs
-}



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

2020-08-15 Thread Michael Orlitzky
commit: 34172f33fea03b17c17558b9aa5a5317fce45a24
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Aug 14 21:58:17 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Aug 15 11:58:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34172f33

dev-libs/libnsutils: remove old "unused" ebuilds.

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-libs/libnsutils/libnsutils-0.0.5-r1.ebuild | 31 --
 dev-libs/libnsutils/libnsutils-0.1.0.ebuild| 31 --
 2 files changed, 62 deletions(-)

diff --git a/dev-libs/libnsutils/libnsutils-0.0.5-r1.ebuild 
b/dev-libs/libnsutils/libnsutils-0.0.5-r1.ebuild
deleted file mode 100644
index 26f14cd3fa1..000
--- a/dev-libs/libnsutils/libnsutils-0.0.5-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="base64 and time library, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/;
-SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz;
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
-IUSE=""
-
-DEPEND="dev-util/netsurf-buildsystem"
-
-_emake() {
-   source /usr/share/netsurf-buildsystem/gentoo-helpers.sh
-   netsurf_define_makeconf
-   emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@
-}
-
-src_compile() {
-   _emake
-}
-
-src_install() {
-   _emake DESTDIR="${ED}" install
-}

diff --git a/dev-libs/libnsutils/libnsutils-0.1.0.ebuild 
b/dev-libs/libnsutils/libnsutils-0.1.0.ebuild
deleted file mode 100644
index 6aecbfecab5..000
--- a/dev-libs/libnsutils/libnsutils-0.1.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="C library for base64 and time"
-HOMEPAGE="http://www.netsurf-browser.org/;
-SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz;
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
-IUSE=""
-
-BDEPEND="dev-util/netsurf-buildsystem"
-
-_emake() {
-   source /usr/share/netsurf-buildsystem/gentoo-helpers.sh
-   netsurf_define_makeconf
-   emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@
-}
-
-src_compile() {
-   _emake
-}
-
-src_install() {
-   _emake DESTDIR="${D}" install
-}



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

2020-08-15 Thread Michael Orlitzky
commit: f8a9632bfa9c08aace0c681c666ec5656521dba7
Author: Lukas Vacek  gmail  com>
AuthorDate: Fri Aug 14 11:51:07 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Aug 15 11:58:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8a9632b

eclass: new class netsurf.eclass for netsurf build

This eclass contains one new function netsurf_define_makeconf which
should be used in ebuilds instead of sourcing
netsurf-buildsystem/gentoo-helpers.sh

Signed-off-by: Lukas Vacek  gmail.com>
Signed-off-by: Michael Orlitzky  gentoo.org>

 eclass/netsurf.eclass | 42 ++
 1 file changed, 42 insertions(+)

diff --git a/eclass/netsurf.eclass b/eclass/netsurf.eclass
new file mode 100644
index 000..065ed1e568f
--- /dev/null
+++ b/eclass/netsurf.eclass
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# @ECLASS: netsurf.eclass
+# @MAINTAINER:
+# maintainer-nee...@gentoo.org
+# @SUPPORTED_EAPIS: 7
+# @BLURB: Handle buildsystem of www.netsurf-browser.org components
+# @DESCRIPTION:
+# Handle settings build environment for netsurf build system
+
+case "${EAPI:-0}" in
+7) ;;
+*) die "EAPI=${EAPI} is not supported" ;;
+esac
+
+inherit toolchain-funcs
+
+# @FUNCTION: netsurf_define_makeconf
+# @USAGE:
+# @DESCRIPTION:
+# This function sets NETSURF_MAKECONF as needed by netsurf build system
+netsurf_define_makeconf() {
+   NETSURF_MAKECONF=(
+   PREFIX="${EPREFIX}/usr"
+   NSSHARED="${EPREFIX}/usr/share/netsurf-buildsystem"
+   LIBDIR="$(get_libdir)"
+   Q=
+   CC="$(tc-getCC)"
+   LD="$(tc-getLD)"
+   HOST_CC="\$(CC)"
+   BUILD_CC="$(tc-getBUILD_CC)"
+   CXX="$(tc-getCXX)"
+   BUILD_CXX="$(tc-getBUILD_CXX)"
+   CCOPT=
+   CCNOOPT=
+   CCDBG=
+   LDDBG=
+   AR="$(tc-getAR)"
+   WARNFLAGS=
+   )
+}



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

2020-08-15 Thread Michael Orlitzky
commit: c1d5e19feef22b282e47ebd6b98340d74fda392c
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sat Aug 15 01:03:19 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Aug 15 11:58:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1d5e19f

net-libs/libdom: remove old "unused" ebuilds.

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Orlitzky  gentoo.org>

 net-libs/libdom/libdom-0.3.3-r1.ebuild | 56 
 net-libs/libdom/libdom-0.4.0.ebuild| 58 --
 net-libs/libdom/libdom-0.4.1.ebuild| 58 --
 3 files changed, 172 deletions(-)

diff --git a/net-libs/libdom/libdom-0.3.3-r1.ebuild 
b/net-libs/libdom/libdom-0.3.3-r1.ebuild
deleted file mode 100644
index 1a6947896f9..000
--- a/net-libs/libdom/libdom-0.3.3-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="implementation of the W3C DOM, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/;
-SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz;
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~m68k-mint"
-IUSE="expat test xml"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-libs/libparserutils-0.2.1-r1
-   >=dev-libs/libwapcaplet-0.3.0
-   >=net-libs/libhubbub-0.3.1-r1
-   xml? (
-   expat? ( >=dev-libs/expat-2.1.0-r3 )
-   !expat? ( >=dev-libs/libxml2-2.9.1-r4 )
-   )"
-DEPEND="${RDEPEND}
-   dev-util/netsurf-buildsystem
-   virtual/pkgconfig
-   test? (
-   dev-perl/XML-XPath
-   dev-perl/libxml-perl
-   dev-perl/Switch
-   )"
-
-REQUIRED_USE="test? ( xml )"
-
-_emake() {
-   source /usr/share/netsurf-buildsystem/gentoo-helpers.sh
-   netsurf_define_makeconf
-   emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared \
-   WITH_EXPAT_BINDING=$(usex xml $(usex expat yes no) no) \
-   WITH_LIBXML_BINDING=$(usex xml $(usex expat no yes) no) \
-   $@
-}
-
-src_compile() {
-   _emake
-}
-
-src_test() {
-   _emake test
-}
-
-src_install() {
-   _emake DESTDIR="${ED}" install
-}

diff --git a/net-libs/libdom/libdom-0.4.0.ebuild 
b/net-libs/libdom/libdom-0.4.0.ebuild
deleted file mode 100644
index e9cb215757f..000
--- a/net-libs/libdom/libdom-0.4.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="implementation of the W3C DOM, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/;
-SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz;
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~m68k-mint"
-IUSE="expat test xml"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-libs/libparserutils
-   dev-libs/libwapcaplet
-   net-libs/libhubbub
-   xml? (
-   expat? ( >=dev-libs/expat-2.1.0-r3 )
-   !expat? ( >=dev-libs/libxml2-2.9.1-r4 )
-   )"
-DEPEND="${RDEPEND}
-   test? (
-   dev-perl/XML-XPath
-   dev-perl/libxml-perl
-   dev-perl/Switch
-   )"
-BDEPEND="
-   dev-util/netsurf-buildsystem
-   virtual/pkgconfig"
-
-REQUIRED_USE="test? ( xml )"
-
-_emake() {
-   source /usr/share/netsurf-buildsystem/gentoo-helpers.sh
-   netsurf_define_makeconf
-   emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared \
-   WITH_EXPAT_BINDING=$(usex xml $(usex expat yes no) no) \
-   WITH_LIBXML_BINDING=$(usex xml $(usex expat no yes) no) \
-   $@
-}
-
-src_compile() {
-   _emake
-}
-
-src_test() {
-   _emake test
-}
-
-src_install() {
-   _emake DESTDIR="${ED}" install
-}

diff --git a/net-libs/libdom/libdom-0.4.1.ebuild 
b/net-libs/libdom/libdom-0.4.1.ebuild
deleted file mode 100644
index cdf28536a5d..000
--- a/net-libs/libdom/libdom-0.4.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="implementation of the W3C DOM, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libdom/;
-SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz;
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~m68k-mint"
-IUSE="expat test xml"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-libs/libparserutils
-   dev-libs/libwapcaplet
-   net-libs/libhubbub
-   xml? (
-   expat? ( >=dev-libs/expat-2.1.0-r3 )
-   !expat? ( >=dev-libs/libxml2-2.9.1-r4 

  1   2   3   >