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

2021-03-31 Thread Joonas Niilola
commit: a8ab969ebb729f2f8f0b98cade32ec13a20583e8
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Apr  1 05:32:53 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Apr  1 05:32:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8ab969e

dev-libs/OpenSRF: remove last-rited package

Closes: https://bugs.gentoo.org/655502
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/OpenSRF/Manifest  |   1 -
 dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild  | 122 -
 .../OpenSRF/files/OpenSRF-2.1.1-buildfix.patch |  70 
 dev-libs/OpenSRF/metadata.xml  |   7 --
 profiles/package.mask  |   6 -
 5 files changed, 206 deletions(-)

diff --git a/dev-libs/OpenSRF/Manifest b/dev-libs/OpenSRF/Manifest
deleted file mode 100644
index 125463559b6..000
--- a/dev-libs/OpenSRF/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST opensrf-2.1.1.tar.gz 1058060 BLAKE2B 
83c702727d21bea4683530857cd67037bde9eab94b91a801f64ebe70f5ad3b4994eea956cb9aaf531fbc663d4e9cb3242740f1941604a69aceaab8e396ae0e0e
 SHA512 
5294ae2c9410ae52964067cd9090f9b7b5424e96f1731868cd896c1928ef1e89729af4a83f804f491bf2da0c6d129149105309afa18531b184098ebff2820306

diff --git a/dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild 
b/dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild
deleted file mode 100644
index ed235d5aab1..000
--- a/dev-libs/OpenSRF/OpenSRF-2.1.1.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils multilib flag-o-matic apache-module autotools perl-module
-
-DESCRIPTION="Framework for the high-level development of the Evergreen ILS 
software"
-HOMEPAGE="https://open-ils.org/";
-MY_PN="opensrf" # upstream lowercased the tarball in 2.x
-MY_P="${MY_PN}-${PV}"
-SRC_URI="https://open-ils.org/downloads/${MY_P}.tar.gz";
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="postgres +sqlite"
-DEPEND=">=www-servers/apache-2.2.9
-   >=dev-db/libdbi-drivers-0.8.2
-   >=dev-db/libdbi-0.8.2
-   net-im/ejabberd
-   dev-libs/libmemcached
-   dev-perl/Cache-Memcached
-   dev-perl/Class-DBI-AbstractSearch
-   sqlite? ( dev-perl/DBD-SQLite )
-   postgres? ( dev-perl/DBD-Pg )
-   virtual/perl-Digest-MD5
-   dev-perl/JSON-XS
-   dev-perl/Net-Server
-   dev-perl/UNIVERSAL-require
-   dev-perl/Unix-Syslog
-   dev-perl/XML-LibXML
-   "
-
-S="${WORKDIR}/${MY_P}"
-PERL_S="${S}/src/perl"
-
-APXS2_S="${S}/src/gateway/.libs/"
-APACHE2_MOD_FILE="${APXS2_S}/osrf_json_gateway.so 
${APXS2_S}/osrf_http_translator.so"
-#APACHE2_MOD_CONF="42_${PN}"
-#APACHE2_MOD_DEFINE="FOO"
-#DOCFILES="docs/*.html"
-need_apache2_2
-
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-   perl_set_version
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-2.1.1-buildfix.patch
-   eautoreconf
-}
-
-#src_compile() {
-#  LIBXML2_CFLAGS=$(xml2-config --cflags)
-#  LIBXML2_CFLAGS="${LIBXML2_CFLAGS//*-I}"
-#  LIBXML2_HEADERS="${LIBXML2_CFLAGS// *}"
-#  APR_HEADERS=$(apr-1-config --includedir)
-#  APACHE2_HEADERS=$(apxs2 -q INCLUDEDIR)
-#  sed -i \
-#  -e '/^export PREFIX=/s,/.*,/usr,' \
-#  -e '/^export BINDIR=/s,/.*,${PREFIX}/bin,' \
-#  -e "/^export LIBDIR=/s,/.*,\${PREFIX}/$(get_libdir)," \
-#  -e '/^export PERLDIR=/s,/.*,${LIBDIR}/perl5,' \
-#  -e '/^export INCLUDEDIR=/s,/.*,${PREFIX}/include,' \
-#  -e '/^export ETCDIR=/s,/.*,/etc,' \
-#  -e '/^export SOCK=/s,/.*,/var/run/opensrf,' \
-#  -e '/^export PID=/s,/.*,/var/run/opensrf,' \
-#  -e '/^export LOG=/s,/.*,/var/log,' \
-#  -e '/^export TMP=/s,/.*,/tmp,' \
-#  -e '/^export APXS2=/s,/.*,/usr/sbin/apxs2,' \
-#  -e "/^export APACHE2_HEADERS=/s,/.*,${APACHE2_HEADERS}," \
-#  -e "/^export APR_HEADERS=/s,/.*,${APR_HEADERS}," \
-#  -e "/^export LIBXML2_HEADERS=/s,/.*,${LIBXML2_HEADERS}," \
-#  install.conf
-#  emake verbose
-#}
-src_configure() {
-   APXS2_INSTALL="-i" \
-   econf \
-   --with-apxs=/usr/sbin/apxs2 \
-   --sysconfdir=/etc/opensrf \
-   --localstatedir=/var
-
-   cd "${PERL_S}" && S="${PERL_S}" perl-module_src_configure || die 
"perl-module_src_configure failed"
-}
-
-src_compile() {
-   emake
-   cd "${PERL_S}" && S="${PERL_S}" perl-module_src_compile || die 
"perl-module_src_compile failed"
-}
-
-src_install() {
-   einfo "Doing src_install"
-   #emake install-verbose DESTDIR="${D}"
-   emake install DESTDIR="${D}" APXS2_INSTALL="-i"
-   apache-module_src_install || die "apache-module_src_install failed"
-   cd "${PER

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

2021-03-31 Thread Joonas Niilola
commit: 27d7838c66d9e3856a71a3c5e6b613c3e3315677
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Apr  1 05:28:23 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Apr  1 05:28:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27d7838c

sys-kernel/pf-sources: bump to 5.11-pf6

Signed-off-by: Joonas Niilola  gentoo.org>

 sys-kernel/pf-sources/Manifest  |  1 +
 sys-kernel/pf-sources/pf-sources-5.11_p6.ebuild | 73 +
 2 files changed, 74 insertions(+)

diff --git a/sys-kernel/pf-sources/Manifest b/sys-kernel/pf-sources/Manifest
index fc17c51ba62..5c4894c9b44 100644
--- a/sys-kernel/pf-sources/Manifest
+++ b/sys-kernel/pf-sources/Manifest
@@ -15,4 +15,5 @@ DIST pf-sources-5.11_p2.patch 2720760 BLAKE2B 
db2ccb4449d6ed2d545c15ef82b99d581e
 DIST pf-sources-5.11_p3.patch 3932843 BLAKE2B 
655d68a6cced89aeab7b71cb67d0469567201766f378371e0e6c933fb4ac48317e27c5a148dc70117550c4f09c2b8d4c7690f5f0d88754d80fe8ca9ab9bc2415
 SHA512 
3b1444baa42a737166c1ce7b40d616123b2df197f9f6fc3041fded977f760627603656fbb6f41c12ad008ec724d96ae81664bbaedda4f3759aec50cb5820776b
 DIST pf-sources-5.11_p4.patch 4443076 BLAKE2B 
294d1eb3ec09de6c5d6011913a8d831185a424a85e3bc6d245bd3ef4fe6b50d8e2b64decf398c153435de0b24c2417a7076ae854424201ce61cfdbbdedf4565f
 SHA512 
3a14d63039e1a3701493d17b164364ef3c9167333e16aa8202b2967eebfaab3bd0c233b1e09af44a190a86a1b5599ee339f9ae06298c77404e7f99c6f9f14df7
 DIST pf-sources-5.11_p5.patch 4598966 BLAKE2B 
8dc474e83816d698bceeba123ceef1c6d33eba551ff85cdc121d51eb2cfc4b81fd1b7fcb63a5254560b978368ec1b24bd9c49cef38432ba3ef956399f4d4e7f2
 SHA512 
296dda2e6fa1fdc8706ba1547122982e261f0bde82b80c423a2bd5f7b63d98113a75912fd64c630add18eb00f9d77dd1ebf3a0ebd33db985b30484b058d50547
+DIST pf-sources-5.11_p6.patch 5055069 BLAKE2B 
75ea4ce13e12762c282c51f07a4bf4553dccd864a004b6af3b2e4531795e0d05d510ca22f890344d692a63f177888a094e265282527ebfb6ef1ce3f11f192205
 SHA512 
68454152046bde1f412d2c2da8c30d9e57d856f28b2efc88b0038235fac04ddb32e009d2ea4bd75364fa6d17336ea445bf0fa5487846ec81f790add33544d214
 DIST pf-sources-5.9_p7.patch 3027972 BLAKE2B 
9247ea63b30f9d42d79303b73a900d468a71e70932f7f15ae697cdba52c46358297023e037226c219fad5df912fb5d21e6f4b7190556ca799fa84924480e
 SHA512 
c69e14f59bf98944b3329c65b7e2c271d74a756bc8c890130bf3cc68b4b96d31f1c33c4edb128580fcaefeb6e42dd04b1eb3d7f071b2d58bc764d26322bda8cd

diff --git a/sys-kernel/pf-sources/pf-sources-5.11_p6.ebuild 
b/sys-kernel/pf-sources/pf-sources-5.11_p6.ebuild
new file mode 100644
index 000..0c2ef327c94
--- /dev/null
+++ b/sys-kernel/pf-sources/pf-sources-5.11_p6.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# Define what default functions to run
+ETYPE="sources"
+
+# No 'experimental' USE flag provided, but we still want to use genpatches
+K_EXP_GENPATCHES_NOUSE="1"
+
+# Just get basic genpatches, -pf patch set already includes vanilla-linux 
updates
+K_GENPATCHES_VER="1"
+
+# -pf already sets EXTRAVERSION to kernel Makefile
+K_NOSETEXTRAVERSION="1"
+
+# Not supported by the Gentoo security team
+K_SECURITY_UNSUPPORTED="1"
+
+# We want the very basic patches from gentoo-sources, experimental patch is
+# already included in pf-sources
+K_WANT_GENPATCHES="base extras"
+
+SHPV="${PV/_p*/}"
+
+inherit kernel-2 optfeature
+detect_version
+
+DESCRIPTION="Linux kernel fork that includes the pf-kernel patchset and 
Gentoo's genpatches"
+HOMEPAGE="https://gitlab.com/post-factum/pf-kernel/-/wikis/README
+   https://dev.gentoo.org/~mpagano/genpatches/";
+SRC_URI="${KERNEL_URI}
+   
https://github.com/pfactum/pf-kernel/compare/v${SHPV}...v${SHPV}-pf${PV/*_p/}.diff
 -> ${P}.patch
+   
https://dev.gentoo.org/~mpagano/genpatches/tarballs/genpatches-${SHPV}-${K_GENPATCHES_VER}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/genpatches/tarballs/genpatches-${SHPV}-${K_GENPATCHES_VER}.extras.tar.xz
+   
https://dev.gentoo.org/~mpagano/genpatches/trunk/${SHPV}/5020_BMQ-and-PDS-io-scheduler-v${SHPV}-r2.patch
+   
https://dev.gentoo.org/~mpagano/genpatches/trunk/${SHPV}/5021_BMQ-and-PDS-gentoo-defaults-v${SHPV}-r2.patch";
+
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+S="${WORKDIR}/linux-${PVR}-pf"
+
+PATCHES=( "${DISTDIR}/${P}.patch"
+   "${DISTDIR}/5020_BMQ-and-PDS-io-scheduler-v${SHPV}-r2.patch"
+   "${DISTDIR}/5021_BMQ-and-PDS-gentoo-defaults-v${SHPV}-r2.patch"
+)
+
+K_EXTRAEINFO="For more info on pf-sources and details on how to report 
problems,
+   see: ${HOMEPAGE}."
+
+pkg_setup() {
+   ewarn ""
+   ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the pf developers directly."
+   ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues 
with"
+   ewarn "the ebuilds. Thank you."
+   ewarn ""
+
+   kernel-2_pkg_setup
+}
+
+src_prepare() {
+   # ker

[gentoo-commits] repo/gentoo:master commit in: app-metrics/redis_exporter/

2021-03-31 Thread Zac Medico
commit: 1a93cf1b338b50f43e94dd400a158906e092a222
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Apr  1 02:53:55 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr  1 02:54:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a93cf1b

app-metrics/redis_exporter: RESTRICT=test

Bug: https://bugs.gentoo.org/732474
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild 
b/app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild
index 1ce3491fa45..2621c21c99e 100644
--- a/app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild
+++ b/app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild
@@ -434,6 +434,7 @@ RDEPEND="
acct-user/redis_exporter
acct-group/redis_exporter"
 DEPEND="${RDEPEND}"
+RESTRICT+=" test"
 
 src_prepare() {
default
@@ -451,7 +452,7 @@ src_compile() {
 }
 
 src_test() {
-   go test -work "${EGO_PN}" || die
+   go test -work ./... || die
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: app-metrics/redis_exporter/

2021-03-31 Thread Zac Medico
commit: 0f4c1939dbbdf880485d56f7c127a517c19a7a40
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Apr  1 02:47:43 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr  1 02:47:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f4c1939

app-metrics/redis_exporter: Fix whitespace

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild 
b/app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild
index 460f61bbf2e..1ce3491fa45 100644
--- a/app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild
+++ b/app-metrics/redis_exporter/redis_exporter-1.20.0.ebuild
@@ -431,8 +431,8 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 RDEPEND="
-acct-user/redis_exporter
-acct-group/redis_exporter"
+   acct-user/redis_exporter
+   acct-group/redis_exporter"
 DEPEND="${RDEPEND}"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-metrics/redis_exporter/

2021-03-31 Thread Zac Medico
commit: 94dcc3b512245bf0acf3d1ae682e382d112c49bf
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Apr  1 02:46:31 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr  1 02:46:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94dcc3b5

app-metrics/redis_exporter: Remove old versions

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 app-metrics/redis_exporter/Manifest|  3 -
 .../redis_exporter/redis_exporter-0.20.2.ebuild| 53 ---
 .../redis_exporter/redis_exporter-1.1.1.ebuild | 75 --
 .../redis_exporter/redis_exporter-1.2.0.ebuild | 75 --
 4 files changed, 206 deletions(-)

diff --git a/app-metrics/redis_exporter/Manifest 
b/app-metrics/redis_exporter/Manifest
index 55140233aee..061719aaf9a 100644
--- a/app-metrics/redis_exporter/Manifest
+++ b/app-metrics/redis_exporter/Manifest
@@ -409,9 +409,6 @@ DIST 
honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20180728063816-88497007e858.mod 26 BLA
 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod 26 
BLAKE2B 
db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5
 SHA512 
d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce
 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190523083050-ea95bdfd59fc.mod 26 
BLAKE2B 
db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5
 SHA512 
d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce
 DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod 300 BLAKE2B 
3e3f5a2be0918cbaacd5e43e59fcc6c7c6999645f0c9214cd5a522c31d34b6d3dad61e3ddae8ccdb2f3f0d90b406c047802ee3d9d54dc40fe6eff9cd35620792
 SHA512 
0c8aa788d0c03d6d049f0dd7468d0f81ce2131ccedd5a5a3a18362b7d30eef7ef325277844eefe4b707b1ad71c6f83a44e110b7af7b98e05406d347237a7bafb
-DIST redis_exporter-0.20.2.tar.gz 970030 BLAKE2B 
55bee727f196fad642944a444220d9f71958d812f5f5f4d79a0c741cada25f29690ff4f185ec4028cf5216139e5351022a134fb1b0f2b5b45b384a831dbf1802
 SHA512 
eee4cc9de79ea256571c9650abae6b044fc78b7683abef544d5313dad5d46d3516c55e939c33f87849cc52ed2465797d20b606e386aa4fe187dd16d30354173e
-DIST redis_exporter-1.1.1.tar.gz 1415085 BLAKE2B 
0a687d68864ae00e52c46839c15b24f3ec394e2865ee9ca6fe158f9405da8e7641c8b1e7328e80074aa919c4b28c9cf6bd296bf213de5ff6d1c9c5c62f8c1ce9
 SHA512 
13d5cbb20b4b52e0d8eb71437f81c2aae10599e1bd2f3e6cd0a907197078298e8d2d8b9d068c0872894a581c1feb0656875f88338acace9c61842033c2d20e35
-DIST redis_exporter-1.2.0.tar.gz 1415085 BLAKE2B 
6f5f7ebca89da96d4d6fb26cb64598d18b854557e7b4eaf4ce9e311d3e0308172b2f892f09645e534f9739e8d333243b20d4436daf0f5ef4edb478ee36177f91
 SHA512 
163d48f0728c5c1ab9cb14b69b6073ab1bd2a2ff8293838f528eefff0b6ae8fb8b9e6579d91d0cf195ad03361ca3bbccc39f893d08e6fd2b8e4b697a6e0cdb65
 DIST redis_exporter-1.2.1.tar.gz 1415284 BLAKE2B 
8218e36fa11d74e1be49f421ce2074388c434e713d1af57930538e4246744f34aecddeabf7a97a796b51ff5df4beef71b905310f8d96906acea120322551d2f6
 SHA512 
29faed372225cebcc2db35e8e2d08519e160d27070fed7b90afffcd3865e9ccc54e8aeb82dfbb1ca275eedc64542a67c688062428488cd74234de67b3589fda9
 DIST redis_exporter-1.20.0.tar.gz 123536 BLAKE2B 
ce90e26368e905aa45083290d54aa18733d47d10090a22f775607a5bc0133df215649a8cd6ae6460ebad5807520b33f3d8d62f7a690f4ae05699cf1ea7917258
 SHA512 
fc545e25cb6be33e81157c4c5b8557ebfbc98ccd7cb8ac4a988eb1120ab8ba6f7875727a1cca8401a9f1f36011b02e9dfdb837a31f679b06794dfdd0a7d5ac69
 DIST sigs.k8s.io%2Fyaml%2F@v%2Fv1.1.0.mod 24 BLAKE2B 
d33080dbc62b185d029eb43f75d66328dbfa7c463a3117b3efd5419ab8e1e52cc6f5d5a288d553421025c785ec6948b3aa68588cae19bd325f6acc0d043bb5fb
 SHA512 
78f6402daccb04510f4ef35ee457ee13e4f447fba8e6aa33b4d32aa666e925861bf3b3f22c5ba9573871ec7e830f99e4caae0969724a54eadf40e6a7ed7931a0

diff --git a/app-metrics/redis_exporter/redis_exporter-0.20.2.ebuild 
b/app-metrics/redis_exporter/redis_exporter-0.20.2.ebuild
deleted file mode 100644
index 09e357fdf37..000
--- a/app-metrics/redis_exporter/redis_exporter-0.20.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit user golang-build golang-vcs-snapshot systemd
-
-EGO_PN="github.com/oliver006/redis_exporter"
-EGIT_COMMIT="3e15af27aac37e114b32a07f5e9dc0510f4cbfc4"
-ARCHIVE_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-DESCRIPTION="Prometheus Exporter for Redis Metrics. Supports Redis 2.x, 3.x 
and 4.x"
-HOMEPAGE="https://github.com/oliver006/redis_exporter";
-SRC_URI="${ARCHIVE_URI}"
-LICENSE="MIT Apache-2.0 BSD"
-SLOT="0"
-IUSE=""
-
-pkg_setup() {
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_prepare() {
-   defau

[gentoo-commits] repo/gentoo:master commit in: acct-group/redis_exporter/

2021-03-31 Thread Zac Medico
commit: d9e7bbcff21043407348e8e0acce5ae76e597309
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Apr  1 02:38:52 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr  1 02:41:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9e7bbcf

acct-group/redis_exporter: add group redis_exporter (298) for 
app-metrics/redis_exporter

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 acct-group/redis_exporter/metadata.xml| 7 +++
 acct-group/redis_exporter/redis_exporter-0.ebuild | 8 
 2 files changed, 15 insertions(+)

diff --git a/acct-group/redis_exporter/metadata.xml 
b/acct-group/redis_exporter/metadata.xml
new file mode 100644
index 000..9a7ba2ff3c4
--- /dev/null
+++ b/acct-group/redis_exporter/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   zmed...@gentoo.org
+   
+

diff --git a/acct-group/redis_exporter/redis_exporter-0.ebuild 
b/acct-group/redis_exporter/redis_exporter-0.ebuild
new file mode 100644
index 000..89b3cb579f8
--- /dev/null
+++ b/acct-group/redis_exporter/redis_exporter-0.ebuild
@@ -0,0 +1,8 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+ACCT_GROUP_ID=298



[gentoo-commits] repo/gentoo:master commit in: acct-user/redis_exporter/

2021-03-31 Thread Zac Medico
commit: 7bb7e2525fd61d086d1b74d76b1bb475f17b60fb
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Apr  1 02:39:05 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr  1 02:41:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb7e252

acct-user/redis_exporter: add user redis_exporter (298) for 
app-metrics/redis_exporter

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 acct-user/redis_exporter/metadata.xml|  8 
 acct-user/redis_exporter/redis_exporter-0.ebuild | 14 ++
 2 files changed, 22 insertions(+)

diff --git a/acct-user/redis_exporter/metadata.xml 
b/acct-user/redis_exporter/metadata.xml
new file mode 100644
index 000..9e1d47466c8
--- /dev/null
+++ b/acct-user/redis_exporter/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+

diff --git a/acct-user/redis_exporter/redis_exporter-0.ebuild 
b/acct-user/redis_exporter/redis_exporter-0.ebuild
new file mode 100644
index 000..9096283d34a
--- /dev/null
+++ b/acct-user/redis_exporter/redis_exporter-0.ebuild
@@ -0,0 +1,14 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+DESCRIPTION="A user for app-metrics/redis_exporter"
+
+ACCT_USER_HOME=/var/lib/redis_exporter
+ACCT_USER_GROUPS=( "redis_exporter" )
+ACCT_USER_ID="298"
+
+acct-user_add_deps



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/glibmm/

2021-03-31 Thread Matt Turner
commit: b885f2af64f60f2114d95d83dadde49dc3375beb
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Apr  1 01:59:12 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Apr  1 02:11:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b885f2af

dev-cpp/glibmm: Version bump to 2.64.5

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

 dev-cpp/glibmm/Manifest |  1 +
 dev-cpp/glibmm/glibmm-2.64.5.ebuild | 66 +
 2 files changed, 67 insertions(+)

diff --git a/dev-cpp/glibmm/Manifest b/dev-cpp/glibmm/Manifest
index a6ee6004d98..ff809e3ac3a 100644
--- a/dev-cpp/glibmm/Manifest
+++ b/dev-cpp/glibmm/Manifest
@@ -1,2 +1,3 @@
 DIST glibmm-2.64.2.tar.xz 7438116 BLAKE2B 
6ff458e90a5dbc606a2e04ecd3589262a1b96e827dba245985467818a7a4ba80a9c4cb15686fe479636cb8ce7e1db3334195d6334d7ec56327076cad87e22170
 SHA512 
0130af9a16981a54630150db6f4b1a95458d72d650c5e4781ee97ce624ec98c600b79ebf234d212e025781453fd11d78b9e8273235ffa143397423418fe970cc
+DIST glibmm-2.64.5.tar.xz 7491108 BLAKE2B 
3c0f2215542a6ccc65c37d566856df326b7c0d45999e525df6153862edd0841c501c64fc3cfd0e4c3f1bae29bbaca1eed44738acc11b3f1515ffc8a396b0791f
 SHA512 
e90bb722a35292b0fc54dff82604ec8d23a9e72b08581de14fd515539392ed713d0691352bf7de42d5027579959f76b268cdc11a76a3d3033ae8268f486ee817
 DIST glibmm-2.68.0.tar.xz 7652260 BLAKE2B 
df87b3f3d8cd74b693f843dec15d5376f2a755b0a72042983383c15cca9fdb90c2fed6320bf0f3fe846fcda5be3ee15c0fc1b683d29cebe64e8dcdd101fc9bf0
 SHA512 
a13121052315e949acf2528e226079f1a2cf7853080aec770dcb269e422997e5515ed767c7a549231fb3fa5f913b3fd9ef083080589283824b6a218d066b253e

diff --git a/dev-cpp/glibmm/glibmm-2.64.5.ebuild 
b/dev-cpp/glibmm/glibmm-2.64.5.ebuild
new file mode 100644
index 000..db0034cef75
--- /dev/null
+++ b/dev-cpp/glibmm/glibmm-2.64.5.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit gnome.org meson multilib-minimal
+
+DESCRIPTION="C++ interface for glib2"
+HOMEPAGE="https://www.gtkmm.org";
+
+LICENSE="LGPL-2.1+"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+IUSE="doc debug test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/libsigc++-2.9.1:2[${MULTILIB_USEDEP}]
+   >=dev-libs/glib-2.61.2:2[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   >=dev-cpp/mm-common-1.0.0
+   sys-devel/m4
+   dev-lang/perl
+   doc? (
+   app-doc/doxygen
+   dev-libs/libxslt
+   media-gfx/graphviz
+   )
+"
+
+src_prepare() {
+   default
+
+   # giomm_tls_client requires FEATURES=-network-sandbox and 
glib-networking rdep
+   sed -i -e '/giomm_tls_client/d' tests/meson.build || die
+
+   if ! use test; then
+   sed -i -e "/^subdir('tests')/d" meson.build || die
+   fi
+}
+
+multilib_src_configure() {
+   local emesonargs=(
+   -Dmaintainer-mode=true # Set false and drop mm-common dep once 
tarballs are made with meson/ninja
+   -Dwarnings=min
+   -Dbuild-deprecated-api=true
+   -Dbuild-documentation=$(usex doc true false)
+   -Ddebug-refcounting=$(usex debug true false)
+   -Dbuild-examples=false
+   )
+   meson_src_configure
+}
+
+multilib_src_compile() {
+   meson_src_compile
+}
+
+multilib_src_test() {
+   meson_src_test
+}
+
+multilib_src_install() {
+   meson_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtkmm/

2021-03-31 Thread Matt Turner
commit: 5c73fa41309e6155583d5619ac4a9f89af5c64cf
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Apr  1 02:07:18 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Apr  1 02:11:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c73fa41

dev-cpp/gtkmm: Version bump to 3.24.4

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

 dev-cpp/gtkmm/Manifest|  1 +
 dev-cpp/gtkmm/gtkmm-3.24.4.ebuild | 59 +++
 2 files changed, 60 insertions(+)

diff --git a/dev-cpp/gtkmm/Manifest b/dev-cpp/gtkmm/Manifest
index 7435d63a858..b4cc7b34849 100644
--- a/dev-cpp/gtkmm/Manifest
+++ b/dev-cpp/gtkmm/Manifest
@@ -1,3 +1,4 @@
 DIST gtkmm-2.24.5.tar.xz 12022024 BLAKE2B 
6b2bca9fe6ad81cd956e1f3cc3140bc503b78386cf3931c8eeac08c8b2a08c73450bdbb703d1febaee67cdf834093ff5e89790f866357190822613a68a596ad3
 SHA512 
c50e52830977c37181439f4b82a30ac8bead0cf9022d2bec8225f8dc33e08414f863bf67056e1938fae8f888c09a5a6d757acc011fa9331a78caa6bb626dd51e
 DIST gtkmm-3.24.2.tar.xz 13336236 BLAKE2B 
93f3a04b8a2f02323bf6a1161c10eaae2ad9c26d0e235b1658fc7abbb8d48f67abc42739726c4b6657fa59b033b3708ad1428e629538ab5a6fd27590f5311f30
 SHA512 
c8f9f03d54006a729fdad7563d3be37aa180f9153c222314c1b8cfddc5ab417d184422a1d44f780574248ea52e679f1e360eac67e03f67d29ecf847c0ab19689
 DIST gtkmm-3.24.3.tar.xz 13539040 BLAKE2B 
24664773ec7b0666575346aa0532e8961fc19d965ef34244ed97707f7e3eb4d1d0f016abf733531269bf3e3201defe31559990e32f4f43faa8d3bb5d1f02fdb7
 SHA512 
e373807ec245057708655fa5dbf18d5391656a55b008fd6aa0fdc5a56e80d288813c3bbb0093f39aa7679df866a176f1e6b0e842d4d1b18b775a5928eed9fef5
+DIST gtkmm-3.24.4.tar.xz 13534708 BLAKE2B 
7fb6e2851d1f73d42612b964d706d55060cbd18806bbefb800e2086706b973cae5296f31df48407d8f7ce80d6e503a5a79bcd54a9e1b86c8ecd6b113665f3255
 SHA512 
e3a10aed9cf2df7369b5dac3f1de000b006e08aef6f2d953d2faf2b023bd744ed4c9c2ad5221adc1b0c919bcdc966d0c1c9dc698694d8630ceba56e39f91ac26

diff --git a/dev-cpp/gtkmm/gtkmm-3.24.4.ebuild 
b/dev-cpp/gtkmm/gtkmm-3.24.4.ebuild
new file mode 100644
index 000..e7e4f9df423
--- /dev/null
+++ b/dev-cpp/gtkmm/gtkmm-3.24.4.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit gnome.org meson multilib-minimal virtualx
+
+DESCRIPTION="C++ interface for GTK+"
+HOMEPAGE="https://www.gtkmm.org";
+
+LICENSE="LGPL-2.1+"
+SLOT="3.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+
+IUSE="aqua doc test wayland X"
+REQUIRED_USE="|| ( aqua wayland X )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-cpp/atkmm-2.24.2:0[doc?,${MULTILIB_USEDEP}]
+   >=dev-cpp/cairomm-1.12.0:0[doc?,${MULTILIB_USEDEP}]
+   >=dev-cpp/glibmm-2.54.0:2[doc?,${MULTILIB_USEDEP}]
+   >=dev-cpp/pangomm-2.38.2:1.4[doc?,${MULTILIB_USEDEP}]
+   >=dev-libs/libsigc++-2.3.2:2[doc?,${MULTILIB_USEDEP}]
+   >=media-libs/libepoxy-1.2[${MULTILIB_USEDEP}]
+   >=x11-libs/gdk-pixbuf-2.35.5:2[${MULTILIB_USEDEP}]
+   >=x11-libs/gtk+-3.24.0:3[aqua?,wayland?,X?,${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   doc? (
+   app-doc/doxygen[dot]
+   dev-lang/perl
+   dev-libs/libxslt
+   )
+"
+
+multilib_src_configure() {
+   local emesonargs=(
+   -Dbuild-atkmm-api=true
+   -Dbuild-demos=false
+   -Dbuild-documentation=$(multilib_native_usex doc true false)
+   -Dbuild-tests=$(usex test true false)
+   -Dbuild-x11-api=$(usex X true false)
+   )
+   meson_src_configure
+}
+
+multilib_src_compile() {
+   meson_src_compile
+}
+
+multilib_src_install() {
+   meson_src_install
+}
+
+multilib_src_test() {
+   virtx meson_src_test
+}



[gentoo-commits] data/api:master commit in: files/

2021-03-31 Thread Zac Medico
commit: d3f0ec4a91f975a1493da7d8a3aa1c2d730e0908
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Mar 20 21:11:39 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Apr  1 01:53:21 2021 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=d3f0ec4a

uid-gid.txt: add redis_exporter (298) for app-metrics/redis_exporter

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

 files/uid-gid.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/files/uid-gid.txt b/files/uid-gid.txt
index c711228..74f5c1c 100644
--- a/files/uid-gid.txt
+++ b/files/uid-gid.txt
@@ -236,6 +236,7 @@ unbound-telemetry   279 279 acct
 netdata290 290 acct
 x2gouser   291 291 acct
 x2goprint  292 292 acct
+redis_exporter 298 298 acct
 gpsd   299 -   acct
 dhcp   300 300 acct
 squid  301 301 acct



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

2021-03-31 Thread Sam James
commit: d341c9e70081c91ba634b09302eae0f921aa9d08
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 01:14:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 01:17:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d341c9e7

sys-kernel/gentoo-kernel-bin: bump to 5.10.27 for arm64

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   1 +
 .../gentoo-kernel-bin-5.10.27-r1.ebuild| 114 +
 2 files changed, 115 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 28cff24c2ec..9fd0334335e 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -35,6 +35,7 @@ DIST gentoo-kernel-5.10.26-1.amd64.xpak 64108960 BLAKE2B 
704436ea8e692dc3d646b8f
 DIST gentoo-kernel-5.10.26-1.arm64.xpak 59322442 BLAKE2B 
98e0be8da3142cf40d78b9ac7884781ae2832bb1f0ec134b21aaeeba61454de947990a64de66dcabcd7b9beacd650b37a2376571fb43a8a1aa9a522dc57690a8
 SHA512 
1471461a15bff406151126cd65f158bc7f6aed993d6afea19780c7de3e620fae43283a630e8100c58dee09507e928605dee18817528beb43e1b1dc6450f2b1cb
 DIST gentoo-kernel-5.10.26-1.x86.xpak 57063604 BLAKE2B 
51802d43ac1e7f8e36aa7aff4abc3a1d6924aa01f9210f5fdbfd0573b2c37ae2f9a57b7bb275af3bf51bc1846cf409667ec0b1b7659ac9de1f07811d8680b8c0
 SHA512 
0c6f362201e64f3e07b5dde92e518af613496009edbceea3973a42ecabb817a36053869fe37fdd96078b2ee2532c414239e15f7aabd335c607c421b5e8029ab2
 DIST gentoo-kernel-5.10.27-1.amd64.xpak 64103968 BLAKE2B 
68f1d8dda132b7e808f2becb52f9b035c12f4ad6a353bfa51618ec2ba24f527a5c1c3f4244b1cd1418cc34041d4114703e44c98cacd9aab13aa3e7e9941d2abe
 SHA512 
c5eba8f18288936e621956248b3021c7d3c25c0a598ac1f7301287e2ae5bbef29c45d29f0b8b347dff99dc0b9408fbb299162998f4c7d85f330aa5526e4a6eeb
+DIST gentoo-kernel-5.10.27-1.arm64.xpak 59322840 BLAKE2B 
35b4da2456931ff3316cf424448991c96d580dc7d63c6211f72b630ec40b27afa684c3e471995ace7d33c535e61c3bcb2443bef6a780b7ce1450e9e3abe7825f
 SHA512 
c3465d647975785093fac8812d4cf2e7be9e4ee0c13afeb92ace0c93f54559c030ef5b746e169ec362b53d9d5df1bcb6c3aa9869acdda56c792803fc3ccde7c5
 DIST gentoo-kernel-5.10.27-1.x86.xpak 57074563 BLAKE2B 
ec113b1cd361f46d948004f58b0cc81edcc96d68fc5e949a6f4c0d4c634189ad014de8fa028d9282c89f8e75ccacb95034c0e01db21f465931e2ba78ee81f7ea
 SHA512 
c1892e2fa4db321572f76f92231e9f5b3fa4a88a8af17fa5d4f8d754dd565c40eaa8f83dd2e991ab5837d821abe5d7f012fd56cd793f6e0fd6b3f2f78dab1621
 DIST gentoo-kernel-5.11.10-1.amd64.xpak 64501303 BLAKE2B 
d1bd941d62520fe0a2b7156a56ba43f2123ae758804c361d3953f88ed01079a8d9925770d9f3a7485326fce555824c31fd1ac1e646f8134565228c04e36c94e9
 SHA512 
b54e2f095933d34c795e4a3d239c77db09fa0392db89252775d4ce7b04fc4f0e1129a45ff65f5de352dfdcb7439659ec17893d9891be69ce127858ea112b0b38
 DIST gentoo-kernel-5.11.10-1.arm64.xpak 59801228 BLAKE2B 
1ce4d7955ad3d32abe57ac01f008d7dd8b811fad2658c09b03069bad693d9b653262e0c69abfa65ff1ee2a2117cfc92427c644de53971fa70ce4b99fd360a28e
 SHA512 
2375505cf7ff4ddeed3f352049fd6b041b3449e9cf021fdd8bd59d7661ac17434a75e5e3aef85134185a50ec5832b11a260ad4f4e395ab3d6db4b95664b041ab

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.27-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.27-r1.ebuild
new file mode 100644
index 000..8198cf5ace0
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.10.27-r1.ebuild
@@ -0,0 +1,114 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install toolchain-funcs
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 3 ))
+BINPKG=${P/-bin/}-1
+
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   arm64? (
+   
https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
+   -> ${BINPKG}.arm64.xpak
+   )
+"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~arm64"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}"
+PDEPEND="
+   >=virtual/dist-kernel-${PV}"
+BDEPEND="
+   sys-devel/bc
+   sys-devel/flex
+   virtual/libelf
+   virtual/yacc"
+
+QA_PREBUILT='*'
+
+KV_LOCALVERSION='-gentoo-dist'
+KPV=${PV}${KV_LOCALVERSION}
+
+src_unpack() {
+   default
+   ebegin "Unpacking ${BINPKG}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${BINPKG} failed"
+}
+
+src_prepare() {
+   local PATCHES=(
+   # meh, genpatches have no directory
+   "${WORKDIR}"/*.patch
+   )
+   cd "${MY_P}" || die
+   default
+}

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

2021-03-31 Thread Sam James
commit: 8383f47ecd32b7d2eb4aefa107373a8c632bfeb7
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 01:17:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 01:17:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8383f47e

sys-kernel/gentoo-kernel-bin: bump to 5.11.11 for arm64

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   1 +
 .../gentoo-kernel-bin-5.11.11-r1.ebuild| 115 +
 2 files changed, 116 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 9fd0334335e..2504aab89d0 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -41,6 +41,7 @@ DIST gentoo-kernel-5.11.10-1.amd64.xpak 64501303 BLAKE2B 
d1bd941d62520fe0a2b7156
 DIST gentoo-kernel-5.11.10-1.arm64.xpak 59801228 BLAKE2B 
1ce4d7955ad3d32abe57ac01f008d7dd8b811fad2658c09b03069bad693d9b653262e0c69abfa65ff1ee2a2117cfc92427c644de53971fa70ce4b99fd360a28e
 SHA512 
2375505cf7ff4ddeed3f352049fd6b041b3449e9cf021fdd8bd59d7661ac17434a75e5e3aef85134185a50ec5832b11a260ad4f4e395ab3d6db4b95664b041ab
 DIST gentoo-kernel-5.11.10-1.x86.xpak 57456795 BLAKE2B 
8245a1da8c783456bcaff4a5ca2ded9ffadf03d2cf858a689ee9a5003ab495461f3640bd5ac9c16bdd5f7e7dda1dacb73b512e065b2c5c7038f5422ca9df599b
 SHA512 
af4b8126200b45faa5173bbe325469e6c0f233ff70f2da476d059ef2f92f21d2e6931313fb6d43b4cf6c47570f54b305b47595067ca3fc083b98864959f5acf1
 DIST gentoo-kernel-5.11.11-1.amd64.xpak 64531577 BLAKE2B 
2c7f94f0288b77f16c1b9770e5a31fd7c50dad7c9dbfb5728b348d19c2c8834a4df9f506de04ecc5729cbc5c39468e1afe69db2c8ecfa9d926d051bb4aa6f1a5
 SHA512 
a35e580c8aabff1f39f177a3c01ef61a53f7d0c5541585f444ead741718a6822074c5b8b29bf73ebb4c954baa4ee225a4d547707fe4d8f04007c390c4a05838b
+DIST gentoo-kernel-5.11.11-1.arm64.xpak 59829994 BLAKE2B 
d12c066c27cab9480f9341b5fc1b4b58f439e0622b8b491ed78c56129becd8c858ea1278ee3a164d2de8ea7f9dfcb7265360478db92c22a8f5c28ed11f2bf3fb
 SHA512 
ea076e166644984bb88209ff43ac566d21219e6a4f7d4cab8750ef22038822b50a3c98897f62d1761f33e4acedc0b680b31885bace70844387e68d780f94e775
 DIST gentoo-kernel-5.11.11-1.x86.xpak 57470778 BLAKE2B 
abf3c054de67118de4adf50121ffef53ac206e7c439d6b4f71e2044573fbc8f42ece325c18c1f706c21d2e87472c3419e9195058ba8f4eb3e44ccd7fe8a443b7
 SHA512 
1b01790396650f6db68621e1febf2810835a03ce2f5a872b5f8d9e5f01cb6cce0bf5490e582c4aaa5aa953b6ac3a125a450c2911ab0080d20df59493366bbacc
 DIST gentoo-kernel-5.11.5-1.amd64.xpak 64924579 BLAKE2B 
b4484bb69d8355f63acecadac5a604ab57f61ae87a4341cba16c6b3cdc35d19c64c6d8042fedc69aa1272c151d09ba5957b9b26f2a6ab067a46451fd0a928b9b
 SHA512 
218d649adc456f13055e7ec7ce3de1ead2cfdcc41d6d5d023de67dcc7a21679154dfe057dcf72592ab7a7315a8cf1a4d7a96f7904c21f0f8e219f3a277dae21f
 DIST gentoo-kernel-5.11.5-1.arm64.xpak 59869818 BLAKE2B 
26d4431d1e9e3dd58f1d352ab872cf2749d64ae768a114d42cf1bf3ac342c9792dfa19ccd1bf502ea26ee99a0bb00e75783b2958726d5073d8f69c3f66e29a9c
 SHA512 
ea64669b86cb1a3c86f92016f8a9838eabf1328c9a996084c8e8226b736d526b7d246f42d24ff9d07d2d0606cc0db914251b7007caa74080a482c0bcdd4a0bc6

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.11.11-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.11.11-r1.ebuild
new file mode 100644
index 000..2760e617c65
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.11.11-r1.ebuild
@@ -0,0 +1,115 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install toolchain-funcs
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 3 ))
+BINPKG=${P/-bin/}-1
+
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~alicef/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   arm64? (
+   
https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
+   -> ${BINPKG}.arm64.xpak
+   )
+"
+
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~arm64"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}"
+PDEPEND="
+   >=virtual/dist-kernel-${PV}"
+BDEPEND="
+   sys-devel/bc
+   sys-devel/flex
+   virtual/libelf
+   virtual/yacc"
+
+QA_PREBUILT='*'
+
+KV_LOCALVERSION='-gentoo-dist'
+KPV=${PV}${KV_LOCALVERSION}
+
+src_unpack() {
+   default
+   ebegin "Unpacking ${BINPKG}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${BINPKG} failed"
+}
+
+src_prepare() {
+   local PATCHES=(
+   # meh, genpatches have no directory
+   "${WORKDIR}"/*.patch
+   )
+   cd "${MY_P}" || die
+   default
+}

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

2021-03-31 Thread Sam James
commit: bc3275620c807cb0a21c317ffa19379f051c4cc3
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 01:12:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 01:17:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc327562

sys-kernel/gentoo-kernel-bin: bump to 5.4.109 for arm64

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   1 +
 .../gentoo-kernel-bin-5.4.109-r1.ebuild| 114 +
 2 files changed, 115 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 7cf1fa0b213..28cff24c2ec 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -63,6 +63,7 @@ DIST gentoo-kernel-5.4.108-1.amd64.xpak 61175107 BLAKE2B 
75b91a1bb41642cf4bd6dc1
 DIST gentoo-kernel-5.4.108-1.arm64.xpak 56476237 BLAKE2B 
b0834e97fd92abaa2acf2887e9e2f7ead98a5134b2d789a716037cc80398bf260fbb4ea913fe958b29ea172b52104afa5b5786985337f5a4b84280be1eb1b7d8
 SHA512 
4ee727e0b0773ed461ca4756937e8b0c55e57ef81f33e87d498f64feed0666ecf24934c9a2cf371ad7100ea21dcff285ef3dec600da065030511db5b8ef4802d
 DIST gentoo-kernel-5.4.108-1.x86.xpak 53014350 BLAKE2B 
6924f9905ffa7626b90eed819f8f9e8a7c71e67315f9ad0a25ff31219bee44fb58b382b13324f13dd9f56f43ff4b2a56c91f1689a585dda2dfcd7fdbd4ac3f27
 SHA512 
c72041904e43bd11c42cd613f957c1a838f4bc4abe492712901a3c690d58064e96ff6094594e9e9fc1299f2265c63628b1078f97c90fdfec17c3fe3c63f546cc
 DIST gentoo-kernel-5.4.109-1.amd64.xpak 61197533 BLAKE2B 
d192b84c8e00a992256d44bce33975e29f7ae330a62a5902df14ca08ac5222c3bdbcb1ac27df36db615deecd7af7e264842c2aa358e4cc54e830f3507f5ad034
 SHA512 
33f192621fa3aa692e7b77897e57e50c7af81cb3ba6a40fd090bdafb5ed7b83dc83438028fc6999723e7f82a22635462746a92ced5439f136c56e0559c85b945
+DIST gentoo-kernel-5.4.109-1.arm64.xpak 56430663 BLAKE2B 
6079b762ab5cdeb0c745a1a030e4a3af36883588c88dcb8c8cd811aa47d7cbaebc573b152f01fed451dbbfda1ec89ed400270e6fda4e3e1df1aec497b3f7815a
 SHA512 
2d29230577255473618d698363af8c7ef8dd9dd3dcaeaec8fc8802e453838d2c1685e001a6ceb784f6c6ab77fb2b991366e213fec9c45b5763a3a5f57674cef7
 DIST gentoo-kernel-5.4.109-1.x86.xpak 53002823 BLAKE2B 
eb9548ce9e285fa665e2adc01f33198b9f2b2ae1ea21ddbaf10c9a92664ac6bb12da1c7c6c1923e2efe4746879d3ee27b75f560a69d958465fcea03ebb4f3a7d
 SHA512 
f3848ac5f9ba9e04af65e1b1888e7a2b9836dfeb8ca3f5a692146f524f8e8d87d7b6766183879c879004d8505f013553d13885ffcf97724ba6f1df49c724af3f
 DIST linux-5.10.tar.xz 116606704 BLAKE2B 
b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1
 SHA512 
95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e
 DIST linux-5.11.tar.xz 117619104 BLAKE2B 
81300c27bd5476387a83123aaeb4163c73eb61e9245806c23660cb5e6a4fa88ffc9def027031335fa0270fc4080506cd415990014364e3a98b9d2e8c58a29524
 SHA512 
a567ec133018bb5ec00c60281479b466c26e02137a93a9c690e83997947df02b6fd94e76e8df748f6d70ceb58a19bacc3b1467de10b7a1fad2763db32b3f1330

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.109-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.109-r1.ebuild
new file mode 100644
index 000..b63276300c5
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.109-r1.ebuild
@@ -0,0 +1,114 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install toolchain-funcs
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 3 ))
+BINPKG=${P/-bin/}-1
+
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/";
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   arm64? (
+   
https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
+   -> ${BINPKG}.arm64.xpak
+   )
+"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~arm64"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}"
+PDEPEND="
+   >=virtual/dist-kernel-${PV}"
+BDEPEND="
+   sys-devel/bc
+   sys-devel/flex
+   virtual/libelf
+   virtual/yacc"
+
+QA_PREBUILT='*'
+
+KV_LOCALVERSION='-gentoo-dist'
+KPV=${PV}${KV_LOCALVERSION}
+
+src_unpack() {
+   default
+   ebegin "Unpacking ${BINPKG}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${BINPKG} failed"
+}
+
+src_prepare() {
+   local PATCHES=(
+   # meh, genpatches have no directory
+   "${WORKDIR}"/*.patch
+   )
+   cd "${MY_P}" || die
+   default
+}
+
+src_configure() {
+   

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

2021-03-31 Thread Matt Turner
commit: fd091f5e932ff0d9eeb2d38aa0a67b23d03dbf34
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Apr  1 00:52:27 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Apr  1 00:55:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd091f5e

media-libs/mesa: Propagate stable keywords

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

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

diff --git a/media-libs/mesa/mesa-20.3.5.ebuild 
b/media-libs/mesa/mesa-20.3.5.ebuild
index 03fe5e22980..d5504bd484c 100644
--- a/media-libs/mesa/mesa-20.3.5.ebuild
+++ b/media-libs/mesa/mesa-20.3.5.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else
SRC_URI="https://archive.mesa3d.org/${MY_P}.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 LICENSE="MIT"



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

2021-03-31 Thread Matt Turner
commit: 2d757af6460fe69486da8057e4ce50b612feee2e
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Apr  1 00:53:46 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Apr  1 00:55:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d757af6

media-libs/mesa: Drop old versions

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

 media-libs/mesa/Manifest   |   3 -
 media-libs/mesa/mesa-20.2.6.ebuild | 556 
 media-libs/mesa/mesa-20.3.4.ebuild | 566 -
 media-libs/mesa/mesa-21.0.0.ebuild | 563 
 4 files changed, 1688 deletions(-)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index dbd1fe9eef1..9371f32bcdb 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -1,5 +1,2 @@
-DIST mesa-20.2.6.tar.xz 13886924 BLAKE2B 
2bc5d680979b58a77105a8058da5dfea81afe05166a44d08cf243e5760b8c66e418fd78046a2c88243f56aa85a610d052f3aaf259938668cd0f4a184e9edca46
 SHA512 
347b275d88c0d14cacef570ed736cac07f2e607bc4c89a16b915ec01ac57dbbe698ddf9a0ad70f034e00318403351e3c728e74c72c653acf1fc99720887fa888
-DIST mesa-20.3.4.tar.xz 14253372 BLAKE2B 
210908f5b802b9fd0170a6f06310f39bab4aa0ca1c84914d702863f9df4d47f1720f0d3779ae804d2eef322a09f4b6cc40855efd7dc365cd84dd8f222b217998
 SHA512 
81c4d032213b4aef842f1594e0e89bc0045f7ca7ce5f267b62a0f8236eb12ab09c1f780d8b3776b3072f37cd0bd8829f8a1330a749ccf462471b262ef8097477
 DIST mesa-20.3.5.tar.xz 14367412 BLAKE2B 
7bad876ce702158e727a752eda6722e7165b497fd3a485dae4e989f22b13288a93f51bcd5e6a69b979f0bbe41599fa237c08f3bbb81cb9c6dc4c06827f8ad5f4
 SHA512 
481e710ed80d8f215a8d541cfe51b960862c2403c2b9e7e6932c8236b8decb5d478871d6c73559d6d795ada143803764f3a93b2329588c80f62e2e5ec98c78a9
-DIST mesa-21.0.0.tar.xz 14617108 BLAKE2B 
bc49b9084c2d16354235fa8ff30bc274a40dda350dc8ca5fa8d471665cd3f2a280efdf05a6ea84310beebcdb71926a64f2fd0c63391bf846c49180e13a25c151
 SHA512 
32f4a74fbc1456dac478fdc3a85e37cedb9ac1e1b7c5434706dc24930a70bc9e857ba6b5bf1e7e05798e259f8ff0b05bad5252c07253cb5d6a9707c7c2e147ad
 DIST mesa-21.0.1.tar.xz 14648932 BLAKE2B 
70e1277336320d7b4351c72f42a72cbcb91dcbc46cc1bf30996b8895bbc30552265404508130c828b67a7d045c9f6eece5ac3d07c2443cea581774c585ba0b69
 SHA512 
b31b78778b6092dfaf0712f90de3074217574389c4236f8379c127739874f6bd1b47883140a26445d25e58df87e6207278efd048453096ee710d334b1dcfe419

diff --git a/media-libs/mesa/mesa-20.2.6.ebuild 
b/media-libs/mesa/mesa-20.2.6.ebuild
deleted file mode 100644
index 16ba0eb17be..000
--- a/media-libs/mesa/mesa-20.2.6.ebuild
+++ /dev/null
@@ -1,556 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit llvm meson multilib-minimal python-any-r1 linux-info
-
-OPENGL_DIR="xorg-x11"
-
-MY_P="${P/_/-}"
-
-DESCRIPTION="OpenGL-like graphic library for Linux"
-HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/";
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/mesa.git";
-   inherit git-r3
-else
-   SRC_URI="https://archive.mesa3d.org/${MY_P}.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-RESTRICT="
-   !test? ( test )
-"
-
-RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
-VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 intel iris lima nouveau 
panfrost v3d vc4 virgl vivante vmware"
-for card in ${VIDEO_CARDS}; do
-   IUSE_VIDEO_CARDS+=" video_cards_${card}"
-done
-
-IUSE="${IUSE_VIDEO_CARDS}
-   +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 +gles2 +llvm
-   lm-sensors opencl osmesa selinux test unwind vaapi valgrind vdpau vulkan
-   vulkan-overlay wayland +X xa xvmc zink +zstd"
-
-REQUIRED_USE="
-   d3d9?   ( dri3 || ( video_cards_iris video_cards_r300 video_cards_r600 
video_cards_radeonsi video_cards_nouveau video_cards_vmware ) )
-   gles1?  ( egl )
-   gles2?  ( egl )
-   vulkan? ( dri3
- video_cards_radeonsi? ( llvm ) )
-   vulkan-overlay? ( vulkan )
-   wayland? ( egl gbm )
-   video_cards_freedreno?  ( gallium )
-   video_cards_intel?  ( classic )
-   video_cards_i915?   ( || ( classic gallium ) )
-   video_cards_i965?   ( classic )
-   video_cards_iris?   ( gallium )
-   video_cards_lima?   ( gallium )
-   video_cards_nouveau? ( || ( classic gallium ) )
-   video_cards_panfrost? ( gallium )
-   video_cards_radeon? ( || ( classic gallium )
- gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
-   video_cards_r100?   ( classic )
-   video_cards_r200?   ( classic )
-   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm ) )
-   video_cards_r600?   ( gallium )
-   video_cards_radeon

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

2021-03-31 Thread Matt Turner
commit: 8a1107a3aa3a6e8a5acdaec38e7dd7163691e936
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Apr  1 00:50:48 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Apr  1 00:55:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a1107a3

dev-libs/wayland: Drop old versions

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

 dev-libs/wayland/Manifest  |  1 -
 dev-libs/wayland/wayland-1.18.0.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/dev-libs/wayland/Manifest b/dev-libs/wayland/Manifest
index 80f239ca94c..c5622c6bf62 100644
--- a/dev-libs/wayland/Manifest
+++ b/dev-libs/wayland/Manifest
@@ -1,2 +1 @@
-DIST wayland-1.18.0.tar.xz 453968 BLAKE2B 
ee5b3f9dff07fda85b4d64bc753aff28c4a012184eb3a4bae8e3be0fb74324f12e9ea4e3dc049e06a11c7302e3c6b1e53e49109c814381641568d92b5572eed9
 SHA512 
e30199e30c2bbd361ee695b4f3f7a4e264f10ed8f46f2c90762b5739fc578ae757dc39aa0258d8fbf0ed418553470bccd4b2730ed9705481cfccdab5de96a8fc
 DIST wayland-1.19.0.tar.xz 456380 BLAKE2B 
0f70bb02e890898c4763001884527067adb686abe9a2b9325badf1730d411d269c437037afc298eec8075eb1e3845f5b81b8ed3d702908388a54e7063cbea91a
 SHA512 
d8a86f5e23e4a88e7c84b82fdb51eb350419086afe462ecb2f4d5c3ba9290ede310cbbcffd60215219ddccf5bad4adec21a5ebfbef6577200f66ac7a1b64a5ef

diff --git a/dev-libs/wayland/wayland-1.18.0.ebuild 
b/dev-libs/wayland/wayland-1.18.0.ebuild
deleted file mode 100644
index e1e30132277..000
--- a/dev-libs/wayland/wayland-1.18.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} = ** ]]; then
-   EGIT_REPO_URI="https://gitlab.freedesktop.org/wayland/wayland.git";
-   inherit git-r3
-else
-   SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
-fi
-inherit autotools libtool multilib-minimal toolchain-funcs
-
-DESCRIPTION="Wayland protocol libraries"
-HOMEPAGE="https://wayland.freedesktop.org/ 
https://gitlab.freedesktop.org/wayland/wayland";
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="doc"
-
-BDEPEND="
-   virtual/pkgconfig
-   doc? (
-   >=app-doc/doxygen-1.6[dot]
-   app-text/xmlto
-   >=media-gfx/graphviz-2.26.0
-   sys-apps/grep[pcre]
-   )
-"
-DEPEND="
-   >=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
-   dev-libs/libxml2:=
-   >=dev-libs/libffi-3.0.13-r1:=[${MULTILIB_USEDEP}]
-"
-RDEPEND="${DEPEND}
-   !

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

2021-03-31 Thread Ben Kohler
commit: 0f63eb1dfc4c4d6ec34da1ce7d788c4e83867d05
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Apr  1 00:51:55 2021 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Apr  1 00:52:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f63eb1d

app-admin/ps_mem: add ~ppc64

Closes: https://bugs.gentoo.org/779115
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ben Kohler  gentoo.org>

 app-admin/ps_mem/ps_mem-3.13_p20200417.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/ps_mem/ps_mem-3.13_p20200417.ebuild 
b/app-admin/ps_mem/ps_mem-3.13_p20200417.ebuild
index 30703b47880..4133b6830ef 100644
--- a/app-admin/ps_mem/ps_mem-3.13_p20200417.ebuild
+++ b/app-admin/ps_mem/ps_mem-3.13_p20200417.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/pixelb/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 sparc x86"
+KEYWORDS="amd64 ~ppc64 sparc x86"
 IUSE=""
 
 python_install() {



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

2021-03-31 Thread Sam James
commit: b0238dc069f0b0c2aa3d0f18fe3f1904621eebf5
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 00:41:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 00:43:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0238dc0

media-libs/libopenmpt: fix libtool file removal (for slibtool)

slibtool doesn't produce these files at all, so we can't
delete them in that case.

Closes: https://bugs.gentoo.org/778569
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-libs/libopenmpt/libopenmpt-0.5.5.ebuild 
b/media-libs/libopenmpt/libopenmpt-0.5.5.ebuild
index 04304cf5ed1..0e4a4efa3c6 100644
--- a/media-libs/libopenmpt/libopenmpt-0.5.5.ebuild
+++ b/media-libs/libopenmpt/libopenmpt-0.5.5.ebuild
@@ -51,7 +51,7 @@ multilib_src_configure() {
 }
 
 multilib_src_install_all() {
-   rm \
+   rm -f \
"${ED}"/usr/*/*.la \
"${ED}"/usr/share/doc/${P}/LICENSE || die
 



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

2021-03-31 Thread Sam James
commit: a009cde154a1a6d2c68de9fbc093917ddc940506
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 00:22:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 00:43:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a009cde1

dev-libs/libvterm: port to EAPI 7 for old, respect CC

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

 dev-libs/libvterm/libvterm-0.0_pre20181126.ebuild | 18 ++
 dev-libs/libvterm/libvterm-0.1.1.ebuild   | 12 +++-
 dev-libs/libvterm/libvterm-0.1.2.ebuild   | 11 +++
 dev-libs/libvterm/libvterm-0.1.3.ebuild   |  9 ++---
 4 files changed, 30 insertions(+), 20 deletions(-)

diff --git a/dev-libs/libvterm/libvterm-0.0_pre20181126.ebuild 
b/dev-libs/libvterm/libvterm-0.0_pre20181126.ebuild
index 00da1e7c066..75e2b16d3eb 100644
--- a/dev-libs/libvterm/libvterm-0.0_pre20181126.ebuild
+++ b/dev-libs/libvterm/libvterm-0.0_pre20181126.ebuild
@@ -1,27 +1,28 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-inherit eutils flag-o-matic ltprune multilib
+EAPI=7
+
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="An abstract library implementation of a VT220/xterm/ECMA-48 
terminal emulator"
 HOMEPAGE="http://www.leonerd.org.uk/code/libvterm/";
 SRC_URI="https://dev.gentoo.org/~tranquility/distfiles/${P}.tar.gz";
+S="${WORKDIR}"/libvterm-0.0
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~x86"
 
-DEPEND="
+BDEPEND="
sys-devel/libtool
virtual/pkgconfig"
-
 RDEPEND="!dev-libs/libvterm-neovim"
 
-S=${WORKDIR}/libvterm-0.0
-
 src_compile() {
+   tc-export CC
append-cflags -fPIC
+
emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)"
 }
 
@@ -30,5 +31,6 @@ src_install() {
PREFIX="${EPREFIX}/usr" \
LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
DESTDIR="${D}" install
-   prune_libtool_files
+
+   find "${ED}" -name '*.la' -delete || die
 }

diff --git a/dev-libs/libvterm/libvterm-0.1.1.ebuild 
b/dev-libs/libvterm/libvterm-0.1.1.ebuild
index a9f83554b9e..64440bd5eae 100644
--- a/dev-libs/libvterm/libvterm-0.1.1.ebuild
+++ b/dev-libs/libvterm/libvterm-0.1.1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-inherit flag-o-matic
+
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="An abstract library implementation of a VT220/xterm/ECMA-48 
terminal emulator"
 HOMEPAGE="http://www.leonerd.org.uk/code/libvterm/";
@@ -11,18 +12,18 @@ SRC_URI="https://launchpad.net/${PN}/trunk/v$(ver_cut 
1-2)/+download/${P}.tar.gz
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
 
 BDEPEND="
dev-lang/perl
sys-devel/libtool
virtual/pkgconfig
 "
-DEPEND=""
 RDEPEND="!dev-libs/libvterm-neovim"
 
 src_compile() {
+   tc-export CC
append-cflags -fPIC
+
emake VERBOSE=1 PREFIX="${EPREFIX}/usr" 
LIBDIR="${EPREFIX}/usr/$(get_libdir)"
 }
 
@@ -32,5 +33,6 @@ src_install() {
PREFIX="${EPREFIX}/usr" \
LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
DESTDIR="${D}" install
-   find "${D}" -name '*.la' -delete || die "Failed to prune libtool files"
+
+   find "${ED}" -name '*.la' -delete || die "Failed to prune libtool files"
 }

diff --git a/dev-libs/libvterm/libvterm-0.1.2.ebuild 
b/dev-libs/libvterm/libvterm-0.1.2.ebuild
index 6802cf9d98a..d4ac11e08b8 100644
--- a/dev-libs/libvterm/libvterm-0.1.2.ebuild
+++ b/dev-libs/libvterm/libvterm-0.1.2.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-inherit flag-o-matic
+
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="An abstract library implementation of a VT220/xterm/ECMA-48 
terminal emulator"
 HOMEPAGE="http://www.leonerd.org.uk/code/libvterm/";
@@ -17,11 +18,12 @@ BDEPEND="
sys-devel/libtool
virtual/pkgconfig
 "
-DEPEND=""
 RDEPEND="!dev-libs/libvterm-neovim"
 
 src_compile() {
+   tc-export CC
append-cflags -fPIC
+
emake VERBOSE=1 PREFIX="${EPREFIX}/usr" \
LIBDIR="${EPREFIX}/usr/$(get_libdir)"
 }
@@ -32,5 +34,6 @@ src_install() {
PREFIX="${EPREFIX}/usr" \
LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
DESTDIR="${D}" install
-   find "${D}" -name '*.la' -delete || die "Failed to prune libtool files"
+
+   find "${ED}" -name '*.la' -delete || die "Failed to prune libtool files"
 }

diff --git a/dev-libs/libvterm/libvterm-0.1.3.ebuild 
b/dev-libs/libvterm/libvterm-0.1.3.ebuild
index fbc62d84bc3..b228336dfdb 100644
--- a/dev-libs/libvterm/libvterm-0.1.3.ebuild
+++ b/dev-libs/libvterm/libvterm-0.1.3.ebuild
@@ -1,7 +

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

2021-03-31 Thread Sam James
commit: 70cb0f22d3b2a808e8143fe4652a2a266ec54cf7
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 00:32:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 00:43:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70cb0f22

dev-libs/mimetic: fix removal of libtool files

Closes: https://bugs.gentoo.org/778887
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-libs/mimetic/mimetic-0.9.8.ebuild 
b/dev-libs/mimetic/mimetic-0.9.8.ebuild
index b47e8e69733..a685af2319f 100644
--- a/dev-libs/mimetic/mimetic-0.9.8.ebuild
+++ b/dev-libs/mimetic/mimetic-0.9.8.ebuild
@@ -46,5 +46,6 @@ src_install() {
dodoc examples/{README,TODO,test.msg,*.cxx,*.h}
fi
 
-   rm "${ED}"/usr/$(get_libdir)/libmimetic.la || die
+   # bug #778887
+   find "${ED}" -name '*.la' -delete || die
 }



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

2021-03-31 Thread Sam James
commit: 5b5a1e70d27fd95601a9f9cc854c51e3603d97cc
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 00:31:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 00:43:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5a1e70

dev-libs/mimetic: port to EAPI 7

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

 dev-libs/mimetic/mimetic-0.9.8.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/mimetic/mimetic-0.9.8.ebuild 
b/dev-libs/mimetic/mimetic-0.9.8.ebuild
index 3f54ec09712..b47e8e69733 100644
--- a/dev-libs/mimetic/mimetic-0.9.8.ebuild
+++ b/dev-libs/mimetic/mimetic-0.9.8.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit autotools
 
@@ -14,7 +14,7 @@ SLOT="0"
 KEYWORDS="amd64 ~ppc64 x86"
 IUSE="doc examples"
 
-DEPEND="doc? ( app-doc/doxygen )"
+BDEPEND="doc? ( app-doc/doxygen )"
 
 PATCHES=( "${FILESDIR}/signed-char.patch" )
 
@@ -46,5 +46,5 @@ src_install() {
dodoc examples/{README,TODO,test.msg,*.cxx,*.h}
fi
 
-   rm "${D}"/usr/$(get_libdir)/libmimetic.la || die
+   rm "${ED}"/usr/$(get_libdir)/libmimetic.la || die
 }



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

2021-03-31 Thread Sam James
commit: 349df2dc0f7a7c54bff3919338bdb66ffe4fb055
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 00:37:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 00:43:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=349df2dc

dev-libs/libgcrypt-compat: fix libtool file removal (for slibtool)

slibtool doesn't produce these files at all, so we can't
delete them in that case.

Closes: https://bugs.gentoo.org/779124
Signed-off-by: Sam James  gentoo.org>

 dev-libs/libgcrypt-compat/libgcrypt-compat-1.5.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libgcrypt-compat/libgcrypt-compat-1.5.6.ebuild 
b/dev-libs/libgcrypt-compat/libgcrypt-compat-1.5.6.ebuild
index f4078eb5c0c..ec5dee1b148 100644
--- a/dev-libs/libgcrypt-compat/libgcrypt-compat-1.5.6.ebuild
+++ b/dev-libs/libgcrypt-compat/libgcrypt-compat-1.5.6.ebuild
@@ -53,5 +53,5 @@ multilib_src_configure() {
 
 multilib_src_install() {
emake -C src DESTDIR="${D}" install-libLTLIBRARIES
-   rm -v "${ED}"/usr/$(get_libdir)/*.{la,so} || die
+   rm -vf "${ED}"/usr/$(get_libdir)/*.{la,so} || die
 }



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

2021-03-31 Thread Sam James
commit: c0fb76019221b55b7c6fa132a2daa4d2aad07013
Author: Sam James  gentoo  org>
AuthorDate: Thu Apr  1 00:34:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Apr  1 00:43:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0fb7601

x11-libs/libva-compat: fix libtool file removal (for slibtool)

slibtool doesn't produce these files at all, so we can't
delete them in that case.

Closes: https://bugs.gentoo.org/779202
Signed-off-by: Sam James  gentoo.org>

 x11-libs/libva-compat/libva-compat-1.8.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/libva-compat/libva-compat-1.8.3.ebuild 
b/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
index 5b82b4eb887..31cdf24dbf5 100644
--- a/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
+++ b/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -68,5 +68,5 @@ multilib_src_configure() {
 
 multilib_src_install() {
emake -C va DESTDIR="${D}" install-libLTLIBRARIES
-   rm -v "${ED}"/usr/$(get_libdir)/*.{la,so} || die
+   rm -vf "${ED}"/usr/$(get_libdir)/*.{la,so} || die
 }



[gentoo-commits] repo/gentoo:master commit in: app-forensics/aflplusplus/files/, app-forensics/aflplusplus/

2021-03-31 Thread Sam James
commit: 06382b00ebd78da1c4968fd78a9bafb82aabff3e
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 18:32:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:38:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06382b00

app-forensics/aflplusplus: initial import

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

 app-forensics/aflplusplus/Manifest |   1 +
 app-forensics/aflplusplus/aflplusplus-3.12c.ebuild |  75 ++
 .../files/aflplusplus-3.0c-CFLAGS.patch| 110 +
 .../files/aflplusplus-3.0c-LDFLAGS.patch   |  11 +++
 app-forensics/aflplusplus/metadata.xml |  11 +++
 5 files changed, 208 insertions(+)

diff --git a/app-forensics/aflplusplus/Manifest 
b/app-forensics/aflplusplus/Manifest
new file mode 100644
index 000..81c2a1618a1
--- /dev/null
+++ b/app-forensics/aflplusplus/Manifest
@@ -0,0 +1 @@
+DIST aflplusplus-3.12c.tar.gz 2065569 BLAKE2B 
ff7a87eb02f7731b5ce8e1a3016239c6fd1cd1bfeb0b9c0fb69f72bdbf079e7700cdb32abe64f64853e5ff82f1c0ecd86d2cadb892e7c40be6bb2a7b089f7387
 SHA512 
a814d61298b60d99388289e742dbedf2ed1ab454a5e1ea20d48bb2f18b36c01553ab1f097a06f733439d67e804d48cb823a82ff249c404fb0b83a281564f3040

diff --git a/app-forensics/aflplusplus/aflplusplus-3.12c.ebuild 
b/app-forensics/aflplusplus/aflplusplus-3.12c.ebuild
new file mode 100644
index 000..8f54edd03d1
--- /dev/null
+++ b/app-forensics/aflplusplus/aflplusplus-3.12c.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+LLVM_MAX_SLOT=11
+inherit toolchain-funcs llvm python-single-r1
+
+DESCRIPTION="A fork of AFL, the popular compile-time instrumentation fuzzer"
+HOMEPAGE="https://github.com/AFLplusplus/AFLplusplus";
+SRC_URI="https://github.com/AFLplusplus/AFLplusplus/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/AFLplusplus-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# Tests involve heavy use of LD_PRELOAD in some cases
+# This isn't compatible with sandbox
+RESTRICT="test"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   || (
+   sys-devel/llvm:10
+   sys-devel/llvm:11
+   sys-devel/llvm:12
+   )
+"
+DEPEND="
+   ${RDEPEND}
+   test? ( dev-util/cmocka )
+"
+
+QA_PREBUILT="/usr/share/afl/testcases/others/elf/small_exec.elf"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-3.0c-LDFLAGS.patch"
+   "${FILESDIR}/${PN}-3.0c-CFLAGS.patch"
+)
+
+pkg_setup() {
+   llvm_pkg_setup
+   python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+
+   sed -i -e 's/-O3 -fno-unroll-loops//' GNUmakefile || die
+}
+
+src_compile() {
+   emake \
+   CC="$(tc-getCC)" \
+   CFLAGS_FLTO="" \
+   PREFIX="${EPREFIX}/usr" \
+   HELPER_PATH="${EPREFIX}/usr/$(get_libdir)/afl" \
+   DOC_PATH="${EPREFIX}/usr/share/doc/${PF}" \
+   MAN_PATH="${EPREFIX}/usr/share/man/man8"
+}
+
+src_install() {
+   emake \
+   DESTDIR="${D}"
+   PREFIX="${EPREFIX}/usr" \
+   HELPER_PATH="${EPREFIX}/usr/$(get_libdir)/afl" \
+   DOC_PATH="${EPREFIX}/usr/share/doc/${PF}" \
+   MAN_PATH="${EPREFIX}/usr/share/man/man8" \
+   install
+}

diff --git a/app-forensics/aflplusplus/files/aflplusplus-3.0c-CFLAGS.patch 
b/app-forensics/aflplusplus/files/aflplusplus-3.0c-CFLAGS.patch
new file mode 100644
index 000..a3477fd7559
--- /dev/null
+++ b/app-forensics/aflplusplus/files/aflplusplus-3.0c-CFLAGS.patch
@@ -0,0 +1,110 @@
+--- a/GNUmakefile.gcc_plugin
 b/GNUmakefile.gcc_plugin
+@@ -28,14 +28,14 @@ MAN_PATH?= $(PREFIX)/share/man/man8
+ 
+ VERSION = $(shell grep '^$(HASH)define VERSION ' ./config.h | cut -d '"' 
-f2)
+ 
+-CFLAGS  ?= -O3 -g -funroll-loops -D_FORTIFY_SOURCE=2
++CFLAGS  ?= -D_FORTIFY_SOURCE=2
+ CFLAGS_SAFE := -Wall -Iinclude -Wno-pointer-sign \
+-DAFL_PATH=\"$(HELPER_PATH)\" -DBIN_PATH=\"$(BIN_PATH)\" \
+-DGCC_VERSION=\"$(GCCVER)\" -DGCC_BINDIR=\"$(GCCBINDIR)\" \
+-Wno-unused-function
+ override CFLAGS += $(CFLAGS_SAFE)
+ 
+-CXXFLAGS?= -O3 -g -funroll-loops -D_FORTIFY_SOURCE=2
++CXXFLAGS?= -D_FORTIFY_SOURCE=2
+ CXXEFLAGS   := $(CXXFLAGS) -Wall -std=c++11
+ 
+ CC  ?= gcc
+--- a/GNUmakefile.llvm
 b/GNUmakefile.llvm
+@@ -237,7 +237,7 @@ else
+ AFL_CLANG_DEBUG_PREFIX =
+ endif
+ 
+-CFLAGS  ?= -O3 -funroll-loops -fPIC -D_FORTIFY_SOURCE=2
++CFLAGS  ?= -fPIC -D_FORTIFY_SOURCE=2
+ CFLAGS_SAFE := -Wall -g -Wno-cast-qual -Wno-variadic-macros 
-Wno-pointer-sign -I ./include/ -I ./instrumentation/ \
+-DAFL_PATH=\"$(HELPER_PATH)\" -DBIN_PATH=\"$(BIN_PATH)\" \
+-DLLVM_B

[gentoo-commits] repo/gentoo:master commit in: games-misc/bsd-games/files/, games-misc/bsd-games/

2021-03-31 Thread Sam James
commit: 5fa8041c6e3cfb5b627ddd9ed7410caf2362a7a4
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 20:30:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:38:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fa8041c

games-misc/bsd-games: drop 2.17-r5 (games.eclass) => rebase patches as -p1

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

 games-misc/bsd-games/Manifest  |   2 -
 games-misc/bsd-games/bsd-games-2.17-r5.ebuild  | 132 -
 games-misc/bsd-games/bsd-games-2.17_p28.ebuild |  10 +-
 .../bsd-games/files/bsd-games-2.17-64bitutmp.patch |   4 +-
 games-misc/bsd-games/files/bsd-games-2.17-bg.patch |   4 +-
 .../bsd-games/files/bsd-games-2.17-gcc4.patch  |   8 +-
 .../bsd-games/files/bsd-games-2.17-headers.patch   |   4 +-
 .../bsd-games-2.17-rename-getdate-clash.patch  |   6 -
 ...mes-3.1-no-install-manpages-automatically.patch |   2 -
 9 files changed, 14 insertions(+), 158 deletions(-)

diff --git a/games-misc/bsd-games/Manifest b/games-misc/bsd-games/Manifest
index fa75813e015..7bc99d0ea37 100644
--- a/games-misc/bsd-games/Manifest
+++ b/games-misc/bsd-games/Manifest
@@ -1,6 +1,4 @@
-DIST bsd-games-2.17.tar.gz 2563311 BLAKE2B 
9dfff4e70929e14a422c536c661cd95c5f1ac81d9112494525b9ef13d7a39b66bd59b6a264e614cfb29784fdb63364f56b12b4d284b125b5b3c12e92def07fb0
 SHA512 
cb2ee60474f164d42e3d47700270bbeeda3c8279d64da409c9cc05e36437ef95b92d0a85543298e97604635fcf3e068f3a5cc812e90b5c61fb8d146cf35bc38f
 DIST bsd-games-3.1-verbose-build.patch.gz 4633 BLAKE2B 
cc75175ac2ef9d476c03bdb08b8c054d13090d6cdd1a14dd44022d13290112c68a7663d0c03f9ca7535ea10f2bb5e49a84acca4f782f0ced59685f762efd5151
 SHA512 
120c0859bb73a026dae017bcc2bc7505ca156b454bf5f87c91b4887417d5ac62f3dec706af91b22b11be8b5bce11d168f9205d722a9fd30dea654f682a66b1c8
 DIST bsd-games-3.1.tar.gz 267636 BLAKE2B 
116b340e383430fc56e9d2379a398494b43664aa124157bfa01f2c6a76ebdc90128cc676abae83b6d74680b0ad9396d24f1c0d11adcff1f552a3e68717b8cc8f
 SHA512 
3f311e89481913b734a21fc7d0765628637af8251228d5a38349c27cc702c307240e81711785bbd7428e208a142bd07597630d29e97e2c7bf5bd9cac1ebc6ada
-DIST bsdgames_2.17-22.debian.tar.xz 32268 BLAKE2B 
2485abc1d80b8319c7eb68e2747c0a4166d18079047eca67c1de549cd011f75a767b6fe69021cb4ce09aaf029823a097e6ac658efcab5e19e976a89ed798d06f
 SHA512 
902d86557dd3813c31333fe18437d8046ae100814c9c1b340ab1f8266c817545f21e000702b1ca93babb9d632896ea5bada1e146436abfa7916b469681fceed5
 DIST bsdgames_2.17-28.debian.tar.xz 58464 BLAKE2B 
3f5a70322341b153a8b3cb8df81fea1e773971d0f3b79ba8fb0c0877e95c61c8e8689952333f8ac4263948d781c2dc64c8178f9dac6a1c09ae702f91794b9583
 SHA512 
7e2db9f830c0657f3fcd1371635bda4a87e7a68180e486e44752904740c0710c02271522ff2d4b606542b3c502dd28795fcecf883360c3ac5bea78c148281f6a
 DIST bsdgames_2.17.orig.tar.gz 2563311 BLAKE2B 
9dfff4e70929e14a422c536c661cd95c5f1ac81d9112494525b9ef13d7a39b66bd59b6a264e614cfb29784fdb63364f56b12b4d284b125b5b3c12e92def07fb0
 SHA512 
cb2ee60474f164d42e3d47700270bbeeda3c8279d64da409c9cc05e36437ef95b92d0a85543298e97604635fcf3e068f3a5cc812e90b5c61fb8d146cf35bc38f

diff --git a/games-misc/bsd-games/bsd-games-2.17-r5.ebuild 
b/games-misc/bsd-games/bsd-games-2.17-r5.ebuild
deleted file mode 100644
index 6679e61b5fc..000
--- a/games-misc/bsd-games/bsd-games-2.17-r5.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils toolchain-funcs games
-
-DEB_PATCH_VER=22
-DESCRIPTION="collection of games from NetBSD"
-HOMEPAGE="https://www.polyomino.org.uk/computer/software/bsd-games/";
-SRC_URI="https://www.polyomino.org.uk/computer/software/bsd-games/${P}.tar.gz
-   
mirror://debian/pool/main/b/bsdgames/bsdgames_${PV}-${DEB_PATCH_VER}.debian.tar.xz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86"
-IUSE=""
-
-RDEPEND="!games-misc/wtf
-   !app-misc/banner
-   !games-puzzle/hangman
-   sys-libs/ncurses:0
-   sys-apps/miscfiles"
-DEPEND="${RDEPEND}
-   sys-devel/flex
-   sys-devel/bison
-   virtual/pkgconfig"
-
-# Set GAMES_TO_BUILD variable to whatever you want
-GAMES_TO_BUILD=${GAMES_TO_BUILD:=adventure arithmetic atc
-backgammon banner battlestar bcd boggle caesar canfield countmail cribbage
-dab dm factor fish gomoku hack hangman hunt mille monop morse
-number phantasia pig pom ppt primes quiz rain random robots sail snake
-tetris trek wargames worm worms wtf}
-
-src_prepare() {
-   local d="${WORKDIR}"/debian/patches
-   EPATCH_SOURCE="${d}" epatch $(<"${d}"/series)
-
-   # Used by gentoo config.params. See bug 531200
-   export GAMES_BINDIR GAMES_DATADIR GAMES_STATEDIR
-
-   epatch \
-   "${FILESDIR}"/${P}-64bitutmp.patch \
-   "${FILESDIR}"/${P}-headers.patch \
-   "${FILESDIR}"/${P}-bg.patch \
-   "${FILESDIR}"/${P}-gcc4.patch
-
-   # Use pkg-config to query Libs: from ncurses.pc 

[gentoo-commits] repo/gentoo:master commit in: games-misc/bsd-games/files/, games-misc/bsd-games/

2021-03-31 Thread Sam James
commit: 0c13ca36bf039e92078a64b63d84d04949948ef4
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 20:28:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:38:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c13ca36

games-misc/bsd-games: add 2.17_p28

Upgrade to new Debian patchset (p28) which may help resolve
some of the open bugs. It's also a nice stopgap because
the new fork upstream drops some games and it means
we don't take as big of a risk when simply
porting away from games.eclass.

(Not dumping games.eclass *AND* choosing a new upstream
all at once, with no option for users to downgrade.)

Bug: https://bugs.gentoo.org/732374
Bug: https://bugs.gentoo.org/537010
Bug: https://bugs.gentoo.org/715778
Signed-off-by: Sam James  gentoo.org>

 games-misc/bsd-games/Manifest  |   2 +
 games-misc/bsd-games/bsd-games-2.17_p28.ebuild | 155 +
 .../bsd-games-2.17-rename-getdate-clash.patch  |  39 ++
 3 files changed, 196 insertions(+)

diff --git a/games-misc/bsd-games/Manifest b/games-misc/bsd-games/Manifest
index c48313d617e..2bccdb8acb3 100644
--- a/games-misc/bsd-games/Manifest
+++ b/games-misc/bsd-games/Manifest
@@ -1,2 +1,4 @@
 DIST bsd-games-2.17.tar.gz 2563311 BLAKE2B 
9dfff4e70929e14a422c536c661cd95c5f1ac81d9112494525b9ef13d7a39b66bd59b6a264e614cfb29784fdb63364f56b12b4d284b125b5b3c12e92def07fb0
 SHA512 
cb2ee60474f164d42e3d47700270bbeeda3c8279d64da409c9cc05e36437ef95b92d0a85543298e97604635fcf3e068f3a5cc812e90b5c61fb8d146cf35bc38f
 DIST bsdgames_2.17-22.debian.tar.xz 32268 BLAKE2B 
2485abc1d80b8319c7eb68e2747c0a4166d18079047eca67c1de549cd011f75a767b6fe69021cb4ce09aaf029823a097e6ac658efcab5e19e976a89ed798d06f
 SHA512 
902d86557dd3813c31333fe18437d8046ae100814c9c1b340ab1f8266c817545f21e000702b1ca93babb9d632896ea5bada1e146436abfa7916b469681fceed5
+DIST bsdgames_2.17-28.debian.tar.xz 58464 BLAKE2B 
3f5a70322341b153a8b3cb8df81fea1e773971d0f3b79ba8fb0c0877e95c61c8e8689952333f8ac4263948d781c2dc64c8178f9dac6a1c09ae702f91794b9583
 SHA512 
7e2db9f830c0657f3fcd1371635bda4a87e7a68180e486e44752904740c0710c02271522ff2d4b606542b3c502dd28795fcecf883360c3ac5bea78c148281f6a
+DIST bsdgames_2.17.orig.tar.gz 2563311 BLAKE2B 
9dfff4e70929e14a422c536c661cd95c5f1ac81d9112494525b9ef13d7a39b66bd59b6a264e614cfb29784fdb63364f56b12b4d284b125b5b3c12e92def07fb0
 SHA512 
cb2ee60474f164d42e3d47700270bbeeda3c8279d64da409c9cc05e36437ef95b92d0a85543298e97604635fcf3e068f3a5cc812e90b5c61fb8d146cf35bc38f

diff --git a/games-misc/bsd-games/bsd-games-2.17_p28.ebuild 
b/games-misc/bsd-games/bsd-games-2.17_p28.ebuild
new file mode 100644
index 000..fc382f97d8c
--- /dev/null
+++ b/games-misc/bsd-games/bsd-games-2.17_p28.ebuild
@@ -0,0 +1,155 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs flag-o-matic
+
+DEB_PATCH_VER=28
+DESCRIPTION="Collection of games from NetBSD"
+HOMEPAGE="https://www.polyomino.org.uk/computer/software/bsd-games/";
+#SRC_URI="https://www.polyomino.org.uk/computer/software/bsd-games/${PN}-$(ver_cut
 1-2).tar.gz"
+SRC_URI="http://deb.debian.org/debian/pool/main/b/bsdgames/bsdgames_2.17.orig.tar.gz";
+SRC_URI+=" mirror://debian/pool/main/b/bsdgames/bsdgames_$(ver_cut 
1-2)-${DEB_PATCH_VER}.debian.tar.xz"
+S="${WORKDIR}/${PN}-$(ver_cut 1-2)"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~x86"
+
+DEPEND="
+   sys-apps/miscfiles
+   sys-libs/ncurses:0
+   app-misc/banner
+   !games-misc/wtf
+   !games-puzzle/hangman
+"
+RDEPEND="
+   ${DEPEND}
+   acct-group/gamestat
+"
+BDEPEND="
+   sys-devel/bison
+   sys-devel/flex
+   virtual/pkgconfig
+"
+
+# Set GAMES_TO_BUILD variable to whatever you want
+GAMES_TO_BUILD=${GAMES_TO_BUILD:=adventure arithmetic atc
+backgammon banner battlestar bcd boggle caesar canfield countmail cribbage
+dab dm fish gomoku hack hangman hunt mille monop morse
+number phantasia pig pom primes ppt quiz rain random robots sail snake
+tetris trek wargames worm worms wtf}
+
+src_prepare() {
+   local debian_patch_dir="${WORKDIR}"/debian/patches
+   for patch in $(<"${debian_patch_dir}"/series) ; do
+   eapply "${debian_patch_dir}"/${patch}
+   done
+
+   eapply "${FILESDIR}"/${PN}-2.17-64bitutmp.patch
+   eapply -p0 "${FILESDIR}"/${PN}-2.17-bg.patch
+   eapply -p0 "${FILESDIR}"/${PN}-2.17-gcc4.patch
+   eapply "${FILESDIR}"/${PN}-2.17-rename-getdate-clash.patch
+
+   default
+
+   # TODO: Check this?
+   # Used by gentoo config.params. See bug 531200
+
+   # Use pkg-config to query Libs: from ncurses.pc (for eg. -ltinfo) wrt 
#459652
+   sed -i \
+   -e "/ncurses_lib/s:-lncurses:'$($(tc-getPKG_CONFIG) 
--libs-only-l ncurses)':" \
+   configure || die
+
+   sed -i \
+   -e "s:/usr/games:/usr/bin:" \
+   wargames/wargames || die
+
+

[gentoo-commits] repo/gentoo:master commit in: games-misc/bsd-games/files/, games-misc/bsd-games/

2021-03-31 Thread Sam James
commit: 6898e5b44450c1c69205203bc8f9d1ee3f9b08d3
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 17:56:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:38:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6898e5b4

games-misc/bsd-games: add 3.1

This is a fork of bsd-games after many years. Thanks to the new maintainer
upstream for reaching out to us.

Closes: https://bugs.gentoo.org/732374
Bug: https://bugs.gentoo.org/537010
Bug: https://bugs.gentoo.org/715778
Signed-off-by: Sam James  gentoo.org>

 games-misc/bsd-games/Manifest  |   2 +
 games-misc/bsd-games/bsd-games-3.1.ebuild  | 151 +
 ...mes-3.1-no-install-manpages-automatically.patch |  15 ++
 3 files changed, 168 insertions(+)

diff --git a/games-misc/bsd-games/Manifest b/games-misc/bsd-games/Manifest
index 2bccdb8acb3..fa75813e015 100644
--- a/games-misc/bsd-games/Manifest
+++ b/games-misc/bsd-games/Manifest
@@ -1,4 +1,6 @@
 DIST bsd-games-2.17.tar.gz 2563311 BLAKE2B 
9dfff4e70929e14a422c536c661cd95c5f1ac81d9112494525b9ef13d7a39b66bd59b6a264e614cfb29784fdb63364f56b12b4d284b125b5b3c12e92def07fb0
 SHA512 
cb2ee60474f164d42e3d47700270bbeeda3c8279d64da409c9cc05e36437ef95b92d0a85543298e97604635fcf3e068f3a5cc812e90b5c61fb8d146cf35bc38f
+DIST bsd-games-3.1-verbose-build.patch.gz 4633 BLAKE2B 
cc75175ac2ef9d476c03bdb08b8c054d13090d6cdd1a14dd44022d13290112c68a7663d0c03f9ca7535ea10f2bb5e49a84acca4f782f0ced59685f762efd5151
 SHA512 
120c0859bb73a026dae017bcc2bc7505ca156b454bf5f87c91b4887417d5ac62f3dec706af91b22b11be8b5bce11d168f9205d722a9fd30dea654f682a66b1c8
+DIST bsd-games-3.1.tar.gz 267636 BLAKE2B 
116b340e383430fc56e9d2379a398494b43664aa124157bfa01f2c6a76ebdc90128cc676abae83b6d74680b0ad9396d24f1c0d11adcff1f552a3e68717b8cc8f
 SHA512 
3f311e89481913b734a21fc7d0765628637af8251228d5a38349c27cc702c307240e81711785bbd7428e208a142bd07597630d29e97e2c7bf5bd9cac1ebc6ada
 DIST bsdgames_2.17-22.debian.tar.xz 32268 BLAKE2B 
2485abc1d80b8319c7eb68e2747c0a4166d18079047eca67c1de549cd011f75a767b6fe69021cb4ce09aaf029823a097e6ac658efcab5e19e976a89ed798d06f
 SHA512 
902d86557dd3813c31333fe18437d8046ae100814c9c1b340ab1f8266c817545f21e000702b1ca93babb9d632896ea5bada1e146436abfa7916b469681fceed5
 DIST bsdgames_2.17-28.debian.tar.xz 58464 BLAKE2B 
3f5a70322341b153a8b3cb8df81fea1e773971d0f3b79ba8fb0c0877e95c61c8e8689952333f8ac4263948d781c2dc64c8178f9dac6a1c09ae702f91794b9583
 SHA512 
7e2db9f830c0657f3fcd1371635bda4a87e7a68180e486e44752904740c0710c02271522ff2d4b606542b3c502dd28795fcecf883360c3ac5bea78c148281f6a
 DIST bsdgames_2.17.orig.tar.gz 2563311 BLAKE2B 
9dfff4e70929e14a422c536c661cd95c5f1ac81d9112494525b9ef13d7a39b66bd59b6a264e614cfb29784fdb63364f56b12b4d284b125b5b3c12e92def07fb0
 SHA512 
cb2ee60474f164d42e3d47700270bbeeda3c8279d64da409c9cc05e36437ef95b92d0a85543298e97604635fcf3e068f3a5cc812e90b5c61fb8d146cf35bc38f

diff --git a/games-misc/bsd-games/bsd-games-3.1.ebuild 
b/games-misc/bsd-games/bsd-games-3.1.ebuild
new file mode 100644
index 000..9d1bc6d4120
--- /dev/null
+++ b/games-misc/bsd-games/bsd-games-3.1.ebuild
@@ -0,0 +1,151 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs flag-o-matic
+
+DESCRIPTION="collection of games from NetBSD"
+HOMEPAGE="https://www.polyomino.org.uk/computer/software/bsd-games/";
+SRC_URI="https://github.com/msharov/bsd-games/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
+SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-verbose-build.patch.gz";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   sys-apps/miscfiles
+   sys-libs/ncurses:=
+   !games-misc/wtf
+   !app-misc/banner
+   !games-puzzle/hangman
+"
+RDEPEND="
+   ${DEPEND}
+   acct-group/gamestat
+"
+BDEPEND="
+   sys-devel/bison
+   sys-devel/flex
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.1-no-install-manpages-automatically.patch
+)
+
+# Set GAMES_TO_BUILD variable to whatever you want
+GAMES_TO_BUILD=${GAMES_TO_BUILD:=adventure atc battlestar caesar cribbage
+dab drop4 gofish gomoku hangman klondike robots sail snake spirhunt
+worm wump}
+
+src_prepare() {
+   eapply "${WORKDIR}"/${PN}-3.1-verbose-build.patch
+
+   default
+
+   # Use completely our own CFLAGS/LDFLAGS, no stripping and so on
+   sed -i \
+   -e 's/+= -std=c11 @pkgcflags@ ${CFLAGS}/= -std=c11 @pkgcflags@ 
${CFLAGS}/' \
+   -e 's/+= @pkgldflags@ ${LDFLAGS}/= @pkgldflags@ ${LDFLAGS}/' \
+   -e s'/${INSTALL} -m 755 -s/${INSTALL} -m 755/' \
+   -e '/man[6]dir/d' \
+   Config.mk.in || die
+
+   # Yes, this stinks.
+   # Right now, the custom configure script calls pkg-config manually
+   # and seds it a bunch, and this is easier.
+   if has_version sys-libs/ncurses[unicode] ; then
+   # Force looking f

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

2021-03-31 Thread Sam James
commit: a0383cdd4e5f5399a0db34401dac1a9b2cf62b97
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 22:43:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:13:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0383cdd

app-crypt/mhash: refresh bundled libtool

Closes: https://bugs.gentoo.org/668666
Signed-off-by: Sam James  gentoo.org>

 app-crypt/mhash/mhash-0.9.9.9-r2.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild 
b/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
index ac1dfcae39a..a1d32fa5402 100644
--- a/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
+++ b/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=7
 
+inherit autotools
+
 DESCRIPTION="Library providing a uniform interface to a large number of hash 
algorithms"
 HOMEPAGE="http://mhash.sourceforge.net/";
 SRC_URI="mirror://sourceforge/mhash/${P}.tar.gz"
@@ -35,6 +37,11 @@ src_prepare() {
sed -i \
-e 's/--netscape//' \
"${S}"/doc/Makefile.in || die
+
+   # Refresh bundled libtool (ltmain.sh)
+   # (elibtoolize is not sufficient)
+   # bug #668666
+   eautoreconf
 }
 
 src_configure() {



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

2021-03-31 Thread Sam James
commit: 45b0684e5b1c45313cad6e36b533cf6aee9db9d5
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 23:04:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:13:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45b0684e

media-libs/libuninameslist: add 20200413

Contains the latest libtool, so no need
for us to refresh by ourselves.

Closes: https://bugs.gentoo.org/668406
Signed-off-by: Sam James  gentoo.org>

 media-libs/libuninameslist/Manifest |  1 +
 .../libuninameslist/libuninameslist-20200413.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/media-libs/libuninameslist/Manifest 
b/media-libs/libuninameslist/Manifest
index 61e8d80e744..41b1d12d101 100644
--- a/media-libs/libuninameslist/Manifest
+++ b/media-libs/libuninameslist/Manifest
@@ -1 +1,2 @@
 DIST libuninameslist-20091231.tar.bz2 568820 BLAKE2B 
09574729cc8b655bc9921c49b6f81a7c242a761d70865a0ca6b9ef479582f158f05580e81b94100994ede623ebf8e16f482ae2bacbd596d195b2201023a8ee7e
 SHA512 
3780759428ef2bf2fd808de6ea87a44cf85952f926240ea355d692ef08b5e50c1cf068a2ee05b00cf0fc6b725d71142306aae01e9d6e5144291f6e5dc4505bc2
+DIST libuninameslist-dist-20200413.tar.gz 1210689 BLAKE2B 
10577d930e4f1e2d8dc41d7df684b63897f62dae31d0bb2208b26ec9102ecc2fd0181d7d3d05c6c678de69b4f379805bfcbf0a484fd0076ff65ee2fa1e9d1368
 SHA512 
88befff4bf7efed149b4e3a5d58a733b2cb6477e103ec34529ff02a88f8c72a6fc9d7b0be9e97cd539a75c8ebe5e4127cdf03a568da2f219157174b9b585b2a3

diff --git a/media-libs/libuninameslist/libuninameslist-20200413.ebuild 
b/media-libs/libuninameslist/libuninameslist-20200413.ebuild
new file mode 100644
index 000..a84c4db8e5c
--- /dev/null
+++ b/media-libs/libuninameslist/libuninameslist-20200413.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Library of unicode annotation data"
+HOMEPAGE="https://github.com/fontforge/libuninameslist";
+SRC_URI="https://github.com/fontforge/libuninameslist/releases/download/${PV}/${PN}-dist-${PV}.tar.gz";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+
+src_configure() {
+   econf --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}"/usr -name '*.la' -delete || die
+}



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

2021-03-31 Thread Sam James
commit: 77ad8caa35a52d27f9bf21d39e24c8c922b38a5b
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 23:12:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:13:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77ad8caa

dev-libs/libdaemon: refresh bundled libtool

Closes: https://bugs.gentoo.org/668404
Signed-off-by: Sam James  gentoo.org>

 dev-libs/libdaemon/libdaemon-0.14-r3.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild 
b/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild
index ca071b501b6..5c2fddc9776 100644
--- a/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild
+++ b/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit multilib-minimal
+inherit autotools multilib-minimal
 
 DESCRIPTION="Simple library for creating daemon processes in C"
 HOMEPAGE="http://0pointer.de/lennart/projects/libdaemon/";
@@ -23,6 +23,11 @@ PATCHES=(
 src_prepare() {
default
 
+   # Refresh bundled libtool (ltmain.sh)
+   # (elibtoolize is insufficient)
+   # bug #668404
+   eautoreconf
+
# doxygen is broken with out-of-source builds
multilib_copy_sources
 }



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

2021-03-31 Thread Sam James
commit: 0d92d88158671ef12631f953e08db164dbb0bd27
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 23:09:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:13:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d92d881

net-libs/libasyncns: style changes, missing || die

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

 net-libs/libasyncns/libasyncns-0.8-r4.ebuild | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild 
b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
index a09e4fae9e1..a55c87358a0 100644
--- a/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
+++ b/net-libs/libasyncns/libasyncns-0.8-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,6 @@ HOMEPAGE="http://0pointer.de/lennart/projects/libasyncns/";
 SRC_URI="http://0pointer.de/lennart/projects/libasyncns/${P}.tar.gz";
 
 SLOT="0"
-
 LICENSE="LGPL-2.1"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
 
@@ -18,12 +17,15 @@ IUSE="doc debug"
 
 BDEPEND="doc? ( app-doc/doxygen )"
 
-src_prepare() {
-   default
+PATCHES=(
# fix libdir in pkgconfig file
-   eapply "${FILESDIR}/${P}-libdir.patch"
+   "${FILESDIR}"/${P}-libdir.patch
# fix configure check for res_query
-   eapply "${FILESDIR}/${P}-configure-res_query.patch"
+   "${FILESDIR}"/${P}-configure-res_query.patch
+)
+
+src_prepare() {
+   default
eautoreconf
 }
 
@@ -31,8 +33,7 @@ multilib_src_configure() {
# libasyncns uses assert()
use debug || append-cppflags -DNDEBUG
 
-   ECONF_SOURCE=${S} \
-   econf \
+   ECONF_SOURCE="${S}" econf \
--disable-lynx \
--disable-static
 }
@@ -55,5 +56,5 @@ multilib_src_install() {
 }
 
 multilib_src_install_all() {
-   find "${D}" -name '*.la' -delete
+   find "${ED}" -name '*.la' -delete || die
 }



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

2021-03-31 Thread Sam James
commit: 78a2e7d20351a261f990a9b54683f9f7b1314f18
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 23:04:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:13:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78a2e7d2

media-libs/libuninameslist: add github upstream metadata

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

 media-libs/libuninameslist/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/libuninameslist/metadata.xml 
b/media-libs/libuninameslist/metadata.xml
index 3e2614d5413..97181e4b01d 100644
--- a/media-libs/libuninameslist/metadata.xml
+++ b/media-libs/libuninameslist/metadata.xml
@@ -10,6 +10,7 @@
Fonts


+   fontforge/libuninameslist
libuninameslist

 



[gentoo-commits] repo/gentoo:master commit in: app-crypt/mhash/, app-crypt/mhash/files/

2021-03-31 Thread Sam James
commit: 3ef9576b099dfc7aa84ab72dc8879f02da693762
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 22:41:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:13:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ef9576b

app-crypt/mhash: style changes

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

 .../mhash-0.9.9-autotools-namespace-stomping.patch | 15 --
 .../mhash/files/mhash-0.9.9-fix-mem-leak.patch |  4 +--
 .../files/mhash-0.9.9-fix-snefru-segfault.patch|  4 +--
 .../files/mhash-0.9.9-fix-whirlpool-segfault.patch |  4 +--
 app-crypt/mhash/files/mhash-0.9.9.9-align.patch|  5 ++--
 .../mhash/files/mhash-0.9.9.9-alignment.patch  |  5 ++--
 .../files/mhash-0.9.9.9-force64bit-tiger.patch |  5 ++--
 .../mhash-0.9.9.9-remove_premature_free.patch  |  5 ++--
 app-crypt/mhash/mhash-0.9.9.9-r2.ebuild| 32 ++
 9 files changed, 35 insertions(+), 44 deletions(-)

diff --git 
a/app-crypt/mhash/files/mhash-0.9.9-autotools-namespace-stomping.patch 
b/app-crypt/mhash/files/mhash-0.9.9-autotools-namespace-stomping.patch
index 19981b6b907..4bccf6765ae 100644
--- a/app-crypt/mhash/files/mhash-0.9.9-autotools-namespace-stomping.patch
+++ b/app-crypt/mhash/files/mhash-0.9.9-autotools-namespace-stomping.patch
@@ -7,9 +7,8 @@ Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=221093
 Patch-URL: http://bugs.gentoo.org/attachment.cgi?id=152625&action=view
 Signed-off-by: Peter Alfredson 
 
-diff -NrU5 mhash-0.9.9.orig/configure.in mhash-0.9.9/configure.in
 mhash-0.9.9.orig/configure.in  2008-05-09 16:17:52.0 +0200
-+++ mhash-0.9.9/configure.in   2008-05-09 16:18:20.0 +0200
+--- a/configure.in
 b/configure.in
 @@ -4,10 +4,11 @@
  AC_CANONICAL_TARGET
  AC_CONFIG_SRCDIR([lib/mhash.c])
@@ -22,9 +21,8 @@ diff -NrU5 mhash-0.9.9.orig/configure.in 
mhash-0.9.9/configure.in
  
  dnl Check system.
  
-diff -NrU5 mhash-0.9.9.orig/include/mutils/config.h.in 
mhash-0.9.9/include/mutils/config.h.in
 mhash-0.9.9.orig/include/mutils/config.h.in1970-01-01 
01:00:00.0 +0100
-+++ mhash-0.9.9/include/mutils/config.h.in 2008-05-09 16:18:20.0 
+0200
+--- a/include/mutils/config.h.in
 b/include/mutils/config.h.in
 @@ -0,0 +1,22 @@
 +/* Name of package */
 +#undef PACKAGE
@@ -48,9 +46,8 @@ diff -NrU5 mhash-0.9.9.orig/include/mutils/config.h.in 
mhash-0.9.9/include/mutil
 +#undef VERSION
 +
 +
-diff -NrU5 mhash-0.9.9.orig/include/mutils/mhash_config.h.in 
mhash-0.9.9/include/mutils/mhash_config.h.in
 mhash-0.9.9.orig/include/mutils/mhash_config.h.in  2008-05-09 
16:17:52.0 +0200
-+++ mhash-0.9.9/include/mutils/mhash_config.h.in   2008-05-09 
16:19:17.0 +0200
+--- a/include/mutils/mhash_config.h.in
 b/include/mutils/mhash_config.h.in
 @@ -179,28 +179,10 @@
  #undef MHASH_VERSION
  

diff --git a/app-crypt/mhash/files/mhash-0.9.9-fix-mem-leak.patch 
b/app-crypt/mhash/files/mhash-0.9.9-fix-mem-leak.patch
index 74552499501..f6083eb180f 100644
--- a/app-crypt/mhash/files/mhash-0.9.9-fix-mem-leak.patch
+++ b/app-crypt/mhash/files/mhash-0.9.9-fix-mem-leak.patch
@@ -14,8 +14,8 @@ Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=255006
 Patch-URL: http://bugs.gentoo.org/attachment.cgi?id=178560
 Signed-off-by: Thomas Harning 
 
 mhash-0.9.9/lib/mhash.c2007-02-21 01:18:46.0 -0500
-+++ mhash-0.9.9-new/lib/mhash.c2009-01-15 01:57:53.0 -0500
+--- a/lib/mhash.c
 b/lib/mhash.c
 @@ -719,6 +719,8 @@
mutils_memcpy( &ret->state_size, &mem[pos], sizeof(ret->state_size));
pos += sizeof( ret->state_size);

diff --git a/app-crypt/mhash/files/mhash-0.9.9-fix-snefru-segfault.patch 
b/app-crypt/mhash/files/mhash-0.9.9-fix-snefru-segfault.patch
index c308269c1b2..6e9e0275b02 100644
--- a/app-crypt/mhash/files/mhash-0.9.9-fix-snefru-segfault.patch
+++ b/app-crypt/mhash/files/mhash-0.9.9-fix-snefru-segfault.patch
@@ -14,8 +14,8 @@ Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=255131
 Patch-URL: http://bugs.gentoo.org/attachment.cgi?id=178666&action=view
 Signed-off-by: Thomas Harning 
 
 mhash-0.9.9/lib/snefru.c   2009-01-16 00:16:04.0 -0500
-+++ mhash-0.9.9-new/lib/snefru.c   2009-01-16 00:16:21.0 -0500
+--- a/lib/snefru.c
 b/lib/snefru.c
 @@ -859,6 +859,8 @@
  {
mutils_word32 i;

diff --git a/app-crypt/mhash/files/mhash-0.9.9-fix-whirlpool-segfault.patch 
b/app-crypt/mhash/files/mhash-0.9.9-fix-whirlpool-segfault.patch
index 6c79139d579..8437e624b2e 100644
--- a/app-crypt/mhash/files/mhash-0.9.9-fix-whirlpool-segfault.patch
+++ b/app-crypt/mhash/files/mhash-0.9.9-fix-whirlpool-segfault.patch
@@ -14,8 +14,8 @@ Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=255131
 Patch-URL: http://bugs.gentoo.org/attachment.cgi?id=178667&action=view
 Signed-off-by: Thomas Harning 
 
 mhash-0.9.9/lib/whirlpool.c2006-01-08 03:14:47.0 -0500
-+++ mhash-0

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

2021-03-31 Thread Sam James
commit: db1701be28a5216a1b96ac78ee34d31c544be2e4
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 23:10:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:13:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1701be

dev-libs/libdaemon: port to EAPI 7

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

 dev-libs/libdaemon/libdaemon-0.14-r3.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild 
b/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild
index d4e5dbbfdfe..ca071b501b6 100644
--- a/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild
+++ b/dev-libs/libdaemon/libdaemon-0.14-r3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit multilib-minimal
 
@@ -14,8 +14,7 @@ SLOT="0/5"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
 IUSE="doc examples static-libs"
 
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
+BDEPEND="doc? ( app-doc/doxygen )"
 
 PATCHES=(
"${FILESDIR}"/${PV}-man-page-typo-fix.patch
@@ -57,7 +56,8 @@ multilib_src_install() {
 
 multilib_src_install_all() {
einstalldocs
-   find "${D}" -name '*.la' -delete || die
+
+   find "${ED}" -name '*.la' -delete || die
 
if use examples; then
docinto examples



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

2021-03-31 Thread Sam James
commit: b14723d22aabedfec516ca0fe742b4a6942f77ab
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 22:38:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 23:13:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b14723d2

media-libs/libuninameslist: update EAPI 6 -> 7

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

 .../libuninameslist/libuninameslist-20091231-r1.ebuild  | 13 +
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/media-libs/libuninameslist/libuninameslist-20091231-r1.ebuild 
b/media-libs/libuninameslist/libuninameslist-20091231-r1.ebuild
index 4b87f6978b1..5b94c812b36 100644
--- a/media-libs/libuninameslist/libuninameslist-20091231-r1.ebuild
+++ b/media-libs/libuninameslist/libuninameslist-20091231-r1.ebuild
@@ -1,25 +1,22 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DESCRIPTION="Library of unicode annotation data"
 HOMEPAGE="http://libuninameslist.sourceforge.net/";
 SRC_URI="mirror://sourceforge/libuninameslist/${P}.tar.bz2"
+S="${WORKDIR}/${PN}"
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
-IUSE=""
-
-S="${WORKDIR}/${PN}"
 
 src_configure() {
-   econf \
-   --disable-static
+   econf --disable-static
 }
 
 src_install() {
default
-   find "${ED%/}"/usr -name '*.la' -delete || die
+   find "${ED}"/usr -name '*.la' -delete || die
 }



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

2021-03-31 Thread Thomas Deutschmann
commit: ef7c4bacba33dac9ad48e980d68cfe57e2bf6858
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Mar 31 22:54:33 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Mar 31 22:54:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef7c4bac

sys-apps/busybox: security cleanup

Bug: https://bugs.gentoo.org/777255
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-apps/busybox/Manifest |   1 -
 sys-apps/busybox/busybox-1.32.0-r1.ebuild | 337 --
 2 files changed, 338 deletions(-)

diff --git a/sys-apps/busybox/Manifest b/sys-apps/busybox/Manifest
index 42946ab9197..b15a4a97e0d 100644
--- a/sys-apps/busybox/Manifest
+++ b/sys-apps/busybox/Manifest
@@ -1,3 +1,2 @@
-DIST busybox-1.32.0.tar.bz2 2439463 BLAKE2B 
75937ae6e1401d7ab947d80f4b206112023ff2b7d04257ffa2c254cadabb92282ba04d5d608659b6c98fade1ccd0b0f6b204c8758263d59dea6508a3157a7c69
 SHA512 
1b1227af69a97e820e28f5f1c62413e4e179202ab525725ea0b1afe9b9f9a5f00e5e32f4603e804ba1596b0fedd60d60457a6d2b8fcedfab45b6e049caeb319b
 DIST busybox-1.32.1.tar.bz2 2444679 BLAKE2B 
b0258345d40628d8c12b4cc5c3efdb318cfb469e029242942cdad22aeec5142963291a746fbac450b43a4a1f2f7e9204442456691fa98f18eeaa58c70d714caf
 SHA512 
3a33e99adaf7cbd51dcbeb31b5361123bf61ac040c0a032656c654ddb69c4074af75fb4335ba63f283067f61a22d7d7cbca8e1ed265c9522982c453ce48ea2fd
 DIST busybox-1.33.0.tar.bz2 2448841 BLAKE2B 
bc25c2187cd7e357dd2f75b3eaae33ab9da318bbcec861e0b6b00da8466a86a17a71933035958f70badb9f1f143fa7f11f114c12a52f3680042730471f56cefe
 SHA512 
20f8f5197c5cbc8b244f69d82d6628066296c7306a9736ee1344cb555882854412cf7f264490f9a735251c139b9621004f48e972d06ef2623a3c99278f8e765a

diff --git a/sys-apps/busybox/busybox-1.32.0-r1.ebuild 
b/sys-apps/busybox/busybox-1.32.0-r1.ebuild
deleted file mode 100644
index a0431ffc93b..000
--- a/sys-apps/busybox/busybox-1.32.0-r1.ebuild
+++ /dev/null
@@ -1,337 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# See `man savedconfig.eclass` for info on how to use USE=savedconfig.
-
-EAPI=7
-
-inherit flag-o-matic savedconfig toolchain-funcs
-
-DESCRIPTION="Utilities for rescue and embedded systems"
-HOMEPAGE="https://www.busybox.net/";
-if [[ ${PV} == "" ]] ; then
-   MY_P=${P}
-   EGIT_REPO_URI="https://git.busybox.net/busybox";
-   inherit git-r3
-else
-   MY_P=${PN}-${PV/_/-}
-   SRC_URI="https://www.busybox.net/downloads/${MY_P}.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86 ~amd64-linux ~x86-linux"
-fi
-
-LICENSE="GPL-2" # GPL-2 only
-SLOT="0"
-IUSE="debug ipv6 livecd make-symlinks math mdev pam selinux sep-usr static 
syslog systemd"
-REQUIRED_USE="pam? ( !static )"
-RESTRICT="test"
-
-COMMON_DEPEND="!static? ( selinux? ( sys-libs/libselinux ) )
-   pam? ( sys-libs/pam )
-   virtual/libcrypt:="
-DEPEND="${COMMON_DEPEND}
-   static? (
-   virtual/libcrypt[static-libs]
-   selinux? ( sys-libs/libselinux[static-libs(+)] )
-   )
-   >=sys-kernel/linux-headers-2.6.39"
-RDEPEND="${COMMON_DEPEND}
-   mdev? ( !::g'
 \
-   Makefile.flags || die
-   #sed -i '/bbsh/s:^//::' include/applets.h
-   sed -i '/^#error Aborting compilation./d' applets/applets.c || die
-   use elibc_glibc && sed -i 's:-Wl,--gc-sections::' Makefile
-   sed -i \
-   -e "/^CROSS_COMPILE/s:=.*:= ${CHOST}-:" \
-   -e "/^AR\>/s:=.*:= $(tc-getAR):" \
-   -e "/^CC\>/s:=.*:= $(tc-getCC):" \
-   -e "/^HOSTCC/s:=.*:= $(tc-getBUILD_CC):" \
-   -e "/^PKG_CONFIG\>/s:=.*:= $(tc-getPKG_CONFIG):" \
-   Makefile || die
-   sed -i \
-   -e 's:-static-libgcc::' \
-   Makefile.flags || die
-}
-
-src_configure() {
-   # check for a busybox config before making one of our own.
-   # if one exist lets return and use it.
-
-   restore_config .config
-   if [ -f .config ]; then
-   yes "" | emake -j1 -s oldconfig >/dev/null
-   return 0
-   else
-   ewarn "Could not locate user configfile, so we will save a 
default one"
-   fi
-
-   # setup the config file
-   emake -j1 -s allyesconfig >/dev/null
-   # nommu forces a bunch of things off which we want on #387555
-   busybox_config_option n NOMMU
-   sed -i '/^#/d' .config
-   yes "" | emake -j1 -s oldconfig >/dev/null
-
-   # now turn off stuff we really don't want
-   busybox_config_option n DMALLOC
-   busybox_config_option n FEATURE_2_4_MODULES #607548
-   busybox_config_option n FEATURE_SUID_CONFIG
-   busybox_config_option n BUILD_AT_ONCE
-   busybox_config_option n BUILD_LIBBUSYBOX
-   busybox_config_option n FEATURE_CLEAN_UP
-   busybox_config_option n MONOTONIC_SYSCALL
-  

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

2021-03-31 Thread James Le Cuirot
commit: 54d2c207b4e88fb14ca7b39246ea7c938c983d3d
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Mar 10 09:17:53 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Mar 31 22:33:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d2c207

media-libs/sdl-image: CVE-2019-13616 v1.2.12_p20210308

Bug: https://bugs.gentoo.org/772194
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/19863
Signed-off-by: James Le Cuirot  gentoo.org>

 media-libs/sdl-image/Manifest  |  1 +
 .../sdl-image/sdl-image-1.2.12_p20210308.ebuild| 59 ++
 2 files changed, 60 insertions(+)

diff --git a/media-libs/sdl-image/Manifest b/media-libs/sdl-image/Manifest
index 4b0d4096b96..88fd1297d53 100644
--- a/media-libs/sdl-image/Manifest
+++ b/media-libs/sdl-image/Manifest
@@ -1 +1,2 @@
 DIST SDL_image-1.2.12.tar.gz 2231074 BLAKE2B 
0d63e0b2207d1d347ec882e610eb37a625811febc215f089eb00dddec92b1a9fe026d2ab7823677c46e595585f3b5e176c35f9ac1f9ec2debf430ecc3ea950a6
 SHA512 
0e71b280abc2a7f15755e4480a3c1b52d41f9f8b0c9216a6f5bd9fc0e939456fb5d6c10419e1d1904785783f9a1891ead278c03e88b0466fecc6871c3ca40136
+DIST SDL_image-1.2.12_p20210308.tar.gz 10890257 BLAKE2B 
69c97e47e4be82f08cc5ab1d3efeb40f3931e8528f510d0b15cb2d2fe76e3686c9f2cb5eab44fde41f58b636e725292d9af90b4a5d8113da46240064efffdfc7
 SHA512 
5cae510c413db1e32dec7791ec143317a3ad91864e067ee44db8fa9df3d1edffafde28582f387d8930bda74fd99a2082736677e3201d2dd961902291f1ddeaaa

diff --git a/media-libs/sdl-image/sdl-image-1.2.12_p20210308.ebuild 
b/media-libs/sdl-image/sdl-image-1.2.12_p20210308.ebuild
new file mode 100644
index 000..b447ae3a9fd
--- /dev/null
+++ b/media-libs/sdl-image/sdl-image-1.2.12_p20210308.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit multilib-minimal
+
+MY_P="${P/sdl-/SDL_}"
+MY_COMMIT="93e58981dcd947f9f153309fda46b0d1cb4eca83"
+DESCRIPTION="Image file loading library"
+HOMEPAGE="https://www.libsdl.org/projects/SDL_image/release-1.2.html";
+SRC_URI="https://github.com/libsdl-org/SDL_image/archive/${MY_COMMIT}.tar.gz 
-> ${MY_P}.tar.gz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+IUSE="gif jpeg png static-libs tiff webp"
+
+RDEPEND="
+   sys-libs/zlib[${MULTILIB_USEDEP}]
+   >=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]
+   png? ( media-libs/libpng:0[${MULTILIB_USEDEP}] )
+   jpeg? ( virtual/jpeg:0[${MULTILIB_USEDEP}] )
+   tiff? ( media-libs/tiff:0[${MULTILIB_USEDEP}] )
+   webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/SDL_image-${MY_COMMIT}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   --disable-jpg-shared \
+   --disable-png-shared \
+   --disable-tif-shared \
+   --disable-webp-shared \
+   $(use_enable static-libs static) \
+   $(use_enable gif) \
+   $(use_enable jpeg jpg) \
+   $(use_enable tiff tif) \
+   $(use_enable png) \
+   $(use_enable webp) \
+   --enable-bmp \
+   --enable-lbm \
+   --enable-pcx \
+   --enable-pnm \
+   --enable-tga \
+   --enable-xcf \
+   --enable-xpm \
+   --enable-xv
+}
+
+multilib_src_install() {
+   emake DESTDIR="${D}" install
+   dobin .libs/showimage
+}
+
+multilib_src_install_all() {
+   dodoc CHANGES README
+   use static-libs || find "${ED}" -type f -name "*.la" -delete || die
+}



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

2021-03-31 Thread James Le Cuirot
commit: 79e4939b0a50c4138fb99908ab31e19f9f3dc368
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Mar 31 22:39:56 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Mar 31 22:39:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e4939b

media-libs/sdl-image: Bump to 20210314 snapshot, drop old 20210308

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: James Le Cuirot  gentoo.org>

 media-libs/sdl-image/Manifest   | 2 +-
 ...-image-1.2.12_p20210308.ebuild => sdl-image-1.2.12_p20210314.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/sdl-image/Manifest b/media-libs/sdl-image/Manifest
index 88fd1297d53..7aa11fed3b8 100644
--- a/media-libs/sdl-image/Manifest
+++ b/media-libs/sdl-image/Manifest
@@ -1,2 +1,2 @@
 DIST SDL_image-1.2.12.tar.gz 2231074 BLAKE2B 
0d63e0b2207d1d347ec882e610eb37a625811febc215f089eb00dddec92b1a9fe026d2ab7823677c46e595585f3b5e176c35f9ac1f9ec2debf430ecc3ea950a6
 SHA512 
0e71b280abc2a7f15755e4480a3c1b52d41f9f8b0c9216a6f5bd9fc0e939456fb5d6c10419e1d1904785783f9a1891ead278c03e88b0466fecc6871c3ca40136
-DIST SDL_image-1.2.12_p20210308.tar.gz 10890257 BLAKE2B 
69c97e47e4be82f08cc5ab1d3efeb40f3931e8528f510d0b15cb2d2fe76e3686c9f2cb5eab44fde41f58b636e725292d9af90b4a5d8113da46240064efffdfc7
 SHA512 
5cae510c413db1e32dec7791ec143317a3ad91864e067ee44db8fa9df3d1edffafde28582f387d8930bda74fd99a2082736677e3201d2dd961902291f1ddeaaa
+DIST SDL_image-1.2.12_p20210314.tar.gz 10890897 BLAKE2B 
ddc3e0a49e4ce8fc3c46c5dabe277f9bd2db81f43880aadc8fbd3b6fa09254669fdac90ee4c3c7b92d5c7ec97747944c3953ea2dca065e646416391730cb22dd
 SHA512 
f087472593cbaa9e65c5d643d7801e2ff5e49bee66502d8c094ea18bcd5f66e6da153d39bff7bc81ed20556c909fc4cce279275ff55ee00aebf07d39c27fd543

diff --git a/media-libs/sdl-image/sdl-image-1.2.12_p20210308.ebuild 
b/media-libs/sdl-image/sdl-image-1.2.12_p20210314.ebuild
similarity index 96%
rename from media-libs/sdl-image/sdl-image-1.2.12_p20210308.ebuild
rename to media-libs/sdl-image/sdl-image-1.2.12_p20210314.ebuild
index b447ae3a9fd..c0ad65d10de 100644
--- a/media-libs/sdl-image/sdl-image-1.2.12_p20210308.ebuild
+++ b/media-libs/sdl-image/sdl-image-1.2.12_p20210314.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 inherit multilib-minimal
 
 MY_P="${P/sdl-/SDL_}"
-MY_COMMIT="93e58981dcd947f9f153309fda46b0d1cb4eca83"
+MY_COMMIT="5d792dde2f764daf15dc48521774a3354330db69"
 DESCRIPTION="Image file loading library"
 HOMEPAGE="https://www.libsdl.org/projects/SDL_image/release-1.2.html";
 SRC_URI="https://github.com/libsdl-org/SDL_image/archive/${MY_COMMIT}.tar.gz 
-> ${MY_P}.tar.gz"



[gentoo-commits] repo/gentoo:master commit in: net-nntp/sabnzbd/

2021-03-31 Thread Thomas Deutschmann
commit: 58c900dfcec55396d2818b36d7724db65f669068
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Mar 31 22:18:49 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Mar 31 22:19:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58c900df

net-nntp/sabnzbd: bump to v3.2.1

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

 net-nntp/sabnzbd/Manifest |   1 +
 net-nntp/sabnzbd/sabnzbd-3.2.1.ebuild | 121 ++
 2 files changed, 122 insertions(+)

diff --git a/net-nntp/sabnzbd/Manifest b/net-nntp/sabnzbd/Manifest
index bad913e2950..a43f30d3442 100644
--- a/net-nntp/sabnzbd/Manifest
+++ b/net-nntp/sabnzbd/Manifest
@@ -1,2 +1,3 @@
 DIST SABnzbd-3.1.1-src.tar.gz 2735624 BLAKE2B 
411963a49468cb0654be2f586790baaf1f0657491f7f1da848afe2d0fa89750cde8dc06c8a748fe6cb120d27a961881befb1100a234a28d7ec211b4435011576
 SHA512 
4e8debd2a0ef7379789df035f7d929e2b3dbf13d9394dfebb6075d8b877e610d4ef8953e98eeafd6048952738046bb6b9539e85516f8783c5e06bda1470b3c7e
 DIST SABnzbd-3.2.0-src.tar.gz 2774559 BLAKE2B 
82e662355f79a9be54b482ac29d1fb7fe7232355df6784ce3c908d6ee3bfe3cf22db1144034319542df5274ddbb1ef563cf67c5a848062a3f6880a45b308d522
 SHA512 
98797695950ca35098b8b4103216fd9fcb3fa33112cf2e3918033c26ef094a1affd2a2f389aadcc3ef1666cff1b6de91a99a45032b51711870254568ff9f723a
+DIST SABnzbd-3.2.1-src.tar.gz 2777984 BLAKE2B 
6e0ebe122a01f8cbd5b26eefe3728478dd348b3d11fb274c2a146b7567f306074ddd93b438463471e22fc77c6c2223e864c6019ba0d7ab464162451e9f9c8cb9
 SHA512 
ace29199eb6f03450d25fc3b79960d1afc336f0013771bcf698e7df5c5e5ed920ad783f542ba8f3dbcd451d279993a6d4299d78075184e43ad74411ac19c3f59

diff --git a/net-nntp/sabnzbd/sabnzbd-3.2.1.ebuild 
b/net-nntp/sabnzbd/sabnzbd-3.2.1.ebuild
new file mode 100644
index 000..e842f9ed1be
--- /dev/null
+++ b/net-nntp/sabnzbd/sabnzbd-3.2.1.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+# Require python-2 with sqlite USE flag
+PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_REQ_USE="sqlite"
+
+inherit python-single-r1 systemd
+
+MY_PV="${PV/_rc/RC}"
+MY_PV="${MY_PV//_pre*}"
+
+MY_P="${PN/sab/SAB}-${MY_PV}"
+
+DESCRIPTION="Binary newsgrabber with web-interface"
+HOMEPAGE="https://sabnzbd.org/";
+SRC_URI="https://github.com/sabnzbd/sabnzbd/releases/download/${MY_PV}/${MY_P}-src.tar.gz";
+
+# Sabnzbd is GPL-2 but bundles software with the following licenses.
+LICENSE="GPL-2 BSD LGPL-2 MIT BSD-1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+7za +rar unzip"
+
+# Sabnzbd is installed to /usr/share/ as upstream makes it clear they should 
not
+# be in python's sitedir.  See: 
https://sabnzbd.org/wiki/advanced/unix-packaging
+
+COMMON_DEPS="
+   acct-user/sabnzbd
+   acct-group/sabnzbd
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/chardet[${PYTHON_MULTI_USEDEP}]
+   dev-python/cheetah3[${PYTHON_MULTI_USEDEP}]
+   dev-python/cherrypy[${PYTHON_MULTI_USEDEP}]
+   dev-python/configobj[${PYTHON_MULTI_USEDEP}]
+   dev-python/cryptography[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/feedparser-6[${PYTHON_MULTI_USEDEP}]
+   dev-python/notify2[${PYTHON_MULTI_USEDEP}]
+   dev-python/portend[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/sabyenc-4[${PYTHON_MULTI_USEDEP}]
+   ')
+"
+
+DEPEND="${COMMON_DEPS}"
+
+RDEPEND="
+   ${COMMON_DEPS}
+   >=app-arch/par2cmdline-0.4
+   net-misc/wget
+   7za? ( app-arch/p7zip )
+   rar? ( || ( app-arch/unrar app-arch/rar ) )
+   unzip? ( >=app-arch/unzip-5.5.2 )
+"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+   MY_HOMEDIR="/var/lib/${PN}"
+   python-single-r1_pkg_setup
+}
+
+src_install() {
+   local d
+
+   for d in email icons interfaces locale po sabnzbd scripts tools; do
+   insinto "/usr/share/${PN}/${d}"
+   doins -r ${d}/*
+   done
+
+   exeinto "/usr/share/${PN}"
+   doexe SABnzbd.py
+
+   python_fix_shebang "${ED}/usr/share/${PN}"
+   python_optimize "${ED}/usr/share/${PN}"
+
+   newinitd "${FILESDIR}/${PN}-r1.initd" "${PN}"
+   newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+
+   diropts -o "${PN}" -g "${PN}"
+   dodir "/etc/${PN}"
+   keepdir "/var/log/${PN}"
+
+   insinto "/etc/${PN}"
+   insopts -m 0600 -o "${PN}" -g "${PN}"
+   newins "${FILESDIR}"/${PN}-r1.ini ${PN}.ini
+
+   dodoc ISSUES.txt README.mkd
+
+   systemd_newunit "${FILESDIR}"/sabnzbd_at.service 'sabnzbd@.service'
+}
+
+pkg_postinst() {
+   if [[ -z "${REPLACING_VERSIONS}" ]]; then
+   # This is a new installation
+   einfo "Default directory: ${MY_HOMEDIR}"
+   einfo
+   einfo "To add a user to the sabnzbd group so it can edit 
SABnzbd+ fi

[gentoo-commits] repo/gentoo:master commit in: app-misc/mc/, app-misc/mc/files/

2021-03-31 Thread Sergei Trofimovich
commit: 10a9d09e7c28f9a838a2bf4ad27a6e657aee7e86
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 31 21:24:54 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 22:17:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10a9d09e

app-misc/mc: backport file seccomp failure

Reported-by: Anton Bolshakov
Closes: https://bugs.gentoo.org/776988
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-misc/mc/files/mc-4.8.26-file-seccomp.patch | 142 +
 app-misc/mc/mc-4.8.26-r2.ebuild| 118 
 2 files changed, 260 insertions(+)

diff --git a/app-misc/mc/files/mc-4.8.26-file-seccomp.patch 
b/app-misc/mc/files/mc-4.8.26-file-seccomp.patch
new file mode 100644
index 000..0a36f47f3a4
--- /dev/null
+++ b/app-misc/mc/files/mc-4.8.26-file-seccomp.patch
@@ -0,0 +1,142 @@
+https://bugs.gentoo.org/776988
+https://github.com/MidnightCommander/mc/commit/1ed638d66cf803f69ac12ee80a72d217f2146e43
+
+From 1ed638d66cf803f69ac12ee80a72d217f2146e43 Mon Sep 17 00:00:00 2001
+From: Andrew Borodin 
+Date: Tue, 16 Feb 2021 16:29:51 +0300
+Subject: [PATCH] Ticket #4180: fix zip handling.
+
+After 8857423e4ebb770b6f0ea3103abf5d35c85fcbe8 zip archives opened with
+an error:
+
+file -L -z archive.zip: Bad system call
+
+This caused by using /usr/bin/file with -z option, because seccomp (a
+security sandbox) doesn't allow it..
+
+Solution: use -S option together with -z one.
+
+The file command accepts the -S option since 5.33.
+
+Signed-off-by: Andrew Borodin 
+---
+ configure.ac  | 66 +++
+ src/filemanager/ext.c |  7 +++--
+ src/setup.c   |  2 ++
+ 3 files changed, 60 insertions(+), 15 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 5f372dc3f5..f2351c99ad 100644
+--- a/configure.ac
 b/configure.ac
+@@ -115,23 +115,65 @@ fi
+ AC_SUBST(MANDOC)
+ AC_SUBST(MAN_FLAGS)
+ 
+-dnl Check for -L option to file
++dnl Check for -z, -L, and -S options to file
+ AC_CHECK_PROG(HAVE_FILECMD, file, true, false)
+ if $HAVE_FILECMD; then
+-AC_MSG_CHECKING([for -L option to file command])
+-AC_CACHE_VAL(mc_cv_filel, [
+-file -L . > /dev/null 2>&1
+-if test $? = 0; then
+-  mc_cv_filel=yes
++dnl Don't use the file command if it doesn't accept the -z option
++AC_MSG_CHECKING([for -z option to file command])
++AC_CACHE_VAL(mc_cv_file_z, [
++file -z . > /dev/null 2>&1
++if test $? = 0; then
++mc_cv_file_z=yes
++else
++mc_cv_file_z=no
++fi
++])
++AC_MSG_RESULT([$mc_cv_file_z])
++
++if test x$mc_cv_file_z = xyes; then
++AC_DEFINE(USE_FILE_CMD, 1, [Define if the file command accepts the -z 
option])
+ else
+-  mc_cv_filel=no
++AC_MSG_WARN([The file command doesn't accept the -z option and will 
not be used])
+ fi
+-])
+-if test x$mc_cv_filel = xyes; then
+-  AC_DEFINE(FILE_L, 1, [Define if the file command accepts the -L option])
++
++if test x$mc_cv_file_z = xyes; then
++dnl file is used; check -L and -S options
++
++AC_MSG_CHECKING([for -L option to file command])
++AC_CACHE_VAL(mc_cv_file_L, [
++file -L . > /dev/null 2>&1
++if test $? = 0; then
++mc_cv_file_L=yes
++else
++mc_cv_file_L=no
++fi
++])
++AC_MSG_RESULT([$mc_cv_file_L])
++
++if test x$mc_cv_file_L = xyes; then
++AC_DEFINE(FILE_L, "-L ", [Define if the file command accepts the 
-L option])
++else
++AC_DEFINE(FILE_L, "", [Define if the file command accepts the -L 
option])
++fi
++
++dnl The file command accepts the -S option since 5.33
++AC_MSG_CHECKING([for -S option to file command])
++AC_CACHE_VAL(mc_cv_file_S, [
++file -S . > /dev/null 2>&1
++if test $? = 0; then
++mc_cv_file_S=yes
++else
++mc_cv_file_S=no
++fi
++])
++AC_MSG_RESULT([$mc_cv_file_S])
++
++if test x$mc_cv_file_S = xyes; then
++AC_DEFINE(FILE_S, "-S ", [Define if file command accepts the -S 
option])
++else
++AC_DEFINE(FILE_S, "", [Define if file command accepts the -S 
option])
++fi
+ fi
+-filel=$mc_cv_filel
+-AC_MSG_RESULT([$filel])
+ fi
+ 
+ dnl Only list browsers here that can be run in background (i.e. with `&')
+diff --git a/src/filemanager/ext.c b/src/filemanager/ext.c
+index 4e6f10c6c5..d6a09df7bb 100644
+--- a/src/filemanager/ext.c
 b/src/filemanager/ext.c
+@@ -71,10 +71,11 @@
+ 
+ /*** file scope macro definitions 
/
+ 
+-#ifdef FILE_L
+-#define FILE_CMD "file -L -z "
++#ifdef USE_FILE_CMD
++#define FILE_CMD "file -z " FI

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

2021-03-31 Thread Thomas Deutschmann
commit: 0446e98bdc51a3ce6d360232b8db24d6dae5b482
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Mar 31 21:45:58 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Mar 31 22:13:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0446e98b

app-text/ghostscript-gpl: bump to v9.54.0

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

 app-text/ghostscript-gpl/Manifest  |   1 +
 .../ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild  | 189 +
 2 files changed, 190 insertions(+)

diff --git a/app-text/ghostscript-gpl/Manifest 
b/app-text/ghostscript-gpl/Manifest
index 38c9679d466..13482a32c51 100644
--- a/app-text/ghostscript-gpl/Manifest
+++ b/app-text/ghostscript-gpl/Manifest
@@ -1,4 +1,5 @@
 DIST ghostscript-9.52.tar.xz 39711040 BLAKE2B 
317042ae7e2bfdeded2ae9d9a1bd1521422d1ce1dd6b9b2cdedf4c503cce1285684d5329663dc8ee7263591761c33254827d16b1a93f8c10aad4baab1d859f93
 SHA512 
4c4a33884e1138bad553eee61fac1a72158297ad5c2ce46a4b36150848dea8158affaf2b902f4ff03e4f72ebc8154c198b618112624f409230a610b7648faa67
 DIST ghostscript-9.53.3.tar.xz 41368160 BLAKE2B 
6b5840a420d7527c7155bfb707fe19b3412bdd3a6707f44d058c20f607e6695cfc878cf5df4c4528686c1c1f488b2dbdb81ef5fdf38b950eb15751d2ebafb0a9
 SHA512 
eb832c27eecd30f15e346408c592d7096fd23ef0a6fa59bd50ca327578915434530a4868e69249c2594def0910c527302e99d54f0877f726a8ca8bea6f0f17b7
+DIST ghostscript-9.54.0.tar.xz 56001768 BLAKE2B 
4a98b1af74c4b4caf8d263cd5529059304a76884418c90401b0fc9a89e0f5de5417a439f6e08b95374e62158eec65528ef5f949497d5050a6408fb7c87e54aa9
 SHA512 
a3c96925f4dbf5e276fc543b88df185a0435c68166db15ac532094329ba8db314d739a292da18be7954daaafeeb290e641ea03edf54d7e752998ec6062cc
 DIST ghostscript-gpl-9.52-patchset-01.tar.xz 3292 BLAKE2B 
b6ac4f06c149301b07f57a5dd1f4507cc1e6d17ea60132b64177972ca58a29b2f6ff2f034b20b8ac083b60ea999f50ff75b74f86eec0cd73179741ed8a1486a8
 SHA512 
2498c5f396807a282727a7a9bd678e2008a1e4112722745aab48a12601661b08557c5d49f0a5ee67fb636f8c2b00c737640e894523b904ef3600f66d107999cb
 DIST ghostscript-gpl-9.53-patchset-01.tar.xz 2340 BLAKE2B 
55d82c88f1b57c084318839e1382ffa112461d074411b1f6586a5a9ace37772b144abdda9f742defd077ce937df590d63bd7a2306bad52438949d1036bb7900c
 SHA512 
ab58485df9152bb32c6f0eb25bd45689089bd17ffb0323c54e1977c5f810ec5eb09f358637251c428591749bfb42c6f8489c74d4bd0a7ae5d696eb2346503c44

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild 
b/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild
new file mode 100644
index 000..628cdad34f4
--- /dev/null
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild
@@ -0,0 +1,189 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic toolchain-funcs
+
+DESCRIPTION="Interpreter for the PostScript language and PDF"
+HOMEPAGE="https://ghostscript.com/";
+
+MY_PN=${PN/-gpl}
+MY_P="${MY_PN}-${PV/_}"
+PVM=$(ver_cut 1-2)
+PVM_S=$(ver_rs 1-2 "")
+
+MY_PATCHSET="ghostscript-gpl-9.53-patchset-01.tar.xz"
+
+SRC_URI="https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PVM_S}/${MY_P}.tar.xz";
+
+if [[ -n "${MY_PATCHSET}" ]] ; then
+   SRC_URI+=" 
https://dev.gentoo.org/~whissi/dist/ghostscript-gpl/${MY_PATCHSET}";
+fi
+
+LICENSE="AGPL-3 CPL-1.0"
+SLOT="0/$(ver_cut 1-2)"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="cups dbus gtk +jpeg2k l10n_de static-libs unicode X"
+
+LANGS="ja ko zh-CN zh-TW"
+for X in ${LANGS} ; do
+   IUSE="${IUSE} l10n_${X}"
+done
+
+DEPEND="
+   app-text/libpaper
+   media-libs/fontconfig
+   >=media-libs/freetype-2.4.9:2=
+   >=media-libs/jbig2dec-0.19:=
+   >=media-libs/lcms-2.6:2
+   >=media-libs/libpng-1.6.2:0=
+   >=media-libs/tiff-4.0.1:0=
+   >=sys-libs/zlib-1.2.7
+   virtual/jpeg:0
+   cups? ( >=net-print/cups-1.3.8 )
+   dbus? ( sys-apps/dbus )
+   gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) )
+   jpeg2k? ( >=media-libs/openjpeg-2.1.0:2= )
+   unicode? ( net-dns/libidn:0= )
+   X? ( x11-libs/libXt x11-libs/libXext )
+"
+BDEPEND="virtual/pkgconfig"
+RDEPEND="${DEPEND}
+   app-text/poppler-data
+   >=media-fonts/urw-fonts-2.4.9
+   l10n_ja? ( media-fonts/kochi-substitute )
+   l10n_ko? ( media-fonts/baekmuk-fonts )
+   l10n_zh-CN? ( media-fonts/arphicfonts )
+   l10n_zh-TW? ( media-fonts/arphicfonts )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   if [[ -n "${MY_PATCHSET}" ]] ; then
+   # apply various patches, many borrowed from Fedora
+   # https://src.fedoraproject.org/rpms/ghostscript
+   # and Debian
+   # 
https://salsa.debian.org/printing-team/ghostscript/tree/debian/mas

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

2021-03-31 Thread Thomas Deutschmann
commit: 46d3607eb0f3378e1f53a718b16b2e213424d8d7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Mar 31 22:13:25 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Mar 31 22:13:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46d3607e

app-text/ghostscript-gpl: fix docdir

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

 app-text/ghostscript-gpl/Manifest  | 1 +
 app-text/ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-text/ghostscript-gpl/Manifest 
b/app-text/ghostscript-gpl/Manifest
index 13482a32c51..6bdcc0767c2 100644
--- a/app-text/ghostscript-gpl/Manifest
+++ b/app-text/ghostscript-gpl/Manifest
@@ -3,3 +3,4 @@ DIST ghostscript-9.53.3.tar.xz 41368160 BLAKE2B 
6b5840a420d7527c7155bfb707fe19b3
 DIST ghostscript-9.54.0.tar.xz 56001768 BLAKE2B 
4a98b1af74c4b4caf8d263cd5529059304a76884418c90401b0fc9a89e0f5de5417a439f6e08b95374e62158eec65528ef5f949497d5050a6408fb7c87e54aa9
 SHA512 
a3c96925f4dbf5e276fc543b88df185a0435c68166db15ac532094329ba8db314d739a292da18be7954daaafeeb290e641ea03edf54d7e752998ec6062cc
 DIST ghostscript-gpl-9.52-patchset-01.tar.xz 3292 BLAKE2B 
b6ac4f06c149301b07f57a5dd1f4507cc1e6d17ea60132b64177972ca58a29b2f6ff2f034b20b8ac083b60ea999f50ff75b74f86eec0cd73179741ed8a1486a8
 SHA512 
2498c5f396807a282727a7a9bd678e2008a1e4112722745aab48a12601661b08557c5d49f0a5ee67fb636f8c2b00c737640e894523b904ef3600f66d107999cb
 DIST ghostscript-gpl-9.53-patchset-01.tar.xz 2340 BLAKE2B 
55d82c88f1b57c084318839e1382ffa112461d074411b1f6586a5a9ace37772b144abdda9f742defd077ce937df590d63bd7a2306bad52438949d1036bb7900c
 SHA512 
ab58485df9152bb32c6f0eb25bd45689089bd17ffb0323c54e1977c5f810ec5eb09f358637251c428591749bfb42c6f8489c74d4bd0a7ae5d696eb2346503c44
+DIST ghostscript-gpl-9.54-patchset-01.tar.xz 2600 BLAKE2B 
e89f16f149ba3c46b1e81d774a3dca8345dfb60ec959249292cc0f3d8bc811ac169e232e3fb85de9d0ce65dd41453f90461798007b8b9fdd2c6e44d55e7a9d10
 SHA512 
0c49fbe6ece86b0c7729421cf06a6a210341fbe676efd89c0f97c96a426d3156e6a8ee596e050b8ee6a1af7a94ea8d1d54a6166f020a7d40fec95949cd7f3b12

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild 
b/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild
index 628cdad34f4..6b35ee1d7bd 100644
--- a/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.54.0.ebuild
@@ -13,7 +13,7 @@ MY_P="${MY_PN}-${PV/_}"
 PVM=$(ver_cut 1-2)
 PVM_S=$(ver_rs 1-2 "")
 
-MY_PATCHSET="ghostscript-gpl-9.53-patchset-01.tar.xz"
+MY_PATCHSET="ghostscript-gpl-9.54-patchset-01.tar.xz"
 
 
SRC_URI="https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${PVM_S}/${MY_P}.tar.xz";
 



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

2021-03-31 Thread Matt Turner
commit: fdebad1cf5dc75a224619fc3d29a298c65656e24
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Mar 31 22:05:45 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Mar 31 22:10:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdebad1c

x11-libs/libXres: Version bump to 1.2.1

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

 x11-libs/libXres/Manifest |  1 +
 x11-libs/libXres/libXres-1.2.1.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/x11-libs/libXres/Manifest b/x11-libs/libXres/Manifest
index 989d4f8173f..29d38e883a0 100644
--- a/x11-libs/libXres/Manifest
+++ b/x11-libs/libXres/Manifest
@@ -1 +1,2 @@
 DIST libXres-1.2.0.tar.bz2 286635 BLAKE2B 
0c0813118c7ecd5851b075a4001e0e34fa3df92bd8367717eee42ec20352cab3443d232715c1d40c5df313f6508d2dddc779980d11744a1f897cc7511bfdfdf4
 SHA512 
8eb5a36b1f030eb4e27e676cc4befcc073da66a7bce2b39089314e1facb629d13b087bb53ca2c95fe5291857da7ff9f80c6ab28fb3e245eeb9e0344937900172
+DIST libXres-1.2.1.tar.bz2 311025 BLAKE2B 
f1ecc2397547cd6bcd37dc94968bacc378ab67d004fc31f02890b26bf169057bda61f6a08559ec23eb70bee5910f200e9d1016add3ca816fc4dd49115e718256
 SHA512 
c17d28406e17e305dc4976f095e88059735f5bd8c600adf2e556523c9e0dd7fa01dcbf7a9d28a642e77e49a5b30f54bb9b2fc34bfbedce467ee2a020bba5cdf1

diff --git a/x11-libs/libXres/libXres-1.2.1.ebuild 
b/x11-libs/libXres/libXres-1.2.1.ebuild
new file mode 100644
index 000..f647c8c5637
--- /dev/null
+++ b/x11-libs/libXres/libXres-1.2.1.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+XORG_DOC=doc
+inherit xorg-3
+
+DESCRIPTION="X.Org XRes library"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+
+RDEPEND="x11-libs/libX11
+   x11-libs/libXext"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"



[gentoo-commits] repo/gentoo:master commit in: app-backup/borgbackup/

2021-03-31 Thread Sam James
commit: 2ba9031a76bfa58c3ffd2247a25559da7c979f28
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 31 21:15:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 31 21:57:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ba9031a

app-backup/borgbackup: fix whitespace on KEYWORDS line

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

 app-backup/borgbackup/borgbackup-1.1.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/borgbackup/borgbackup-1.1.16.ebuild 
b/app-backup/borgbackup/borgbackup-1.1.16.ebuild
index 4e0cf2f81ce..a85b2a0012c 100644
--- a/app-backup/borgbackup/borgbackup-1.1.16.ebuild
+++ b/app-backup/borgbackup/borgbackup-1.1.16.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 fi
 
 DESCRIPTION="Deduplicating backup program with compression and authenticated 
encryption"



[gentoo-commits] repo/proj/guru:dev commit in: app-misc/vrms-gentoo/

2021-03-31 Thread Alessandro Barbieri
commit: 5139e0c14e17ecfcdfea848104b7a4925de6dc3c
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Wed Mar 31 21:14:47 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Wed Mar 31 21:15:24 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5139e0c1

app-misc/vrms-gentoo: bump

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

 app-misc/vrms-gentoo/Manifest  |  1 +
 .../vrms-gentoo/vrms-gentoo-0_pre20201102.ebuild   | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/app-misc/vrms-gentoo/Manifest b/app-misc/vrms-gentoo/Manifest
index ea07f7964..57278a32a 100644
--- a/app-misc/vrms-gentoo/Manifest
+++ b/app-misc/vrms-gentoo/Manifest
@@ -1 +1,2 @@
 DIST vrms-gentoo-0_pre20181120.tar.gz 9340 BLAKE2B 
751df8ffbc0842ab535620aa706665827c780f03aac9a89729776c6f375889bd25dff9426a2875a58b8e02a61f380c4bfc82746eec0a0631cec92479aca97c21
 SHA512 
a3f9c48d83649f205290622a52455363e2bda58d431261dae648568b81b4b62baaa9de3363d569402ced7d1089e8e2fcff26d37942d0b71394226a32f02c8dd8
+DIST vrms-gentoo-0_pre20201102.tar.gz 9458 BLAKE2B 
a49342e5ef3afb0326c57b8c222b2874cc5f81a62da20edd68e23ea52c50cb2bdf0ef75f5c4779457a4c6ebdcbb0d5334b46cdff94ac6d50884037db13601043
 SHA512 
9c24eea49d5cc5e4afdfc4ea5467f4c89777499b6187e3b5495de90a87f88b78edf13c605edb98792b42cc36b7b5ba751dfb6ae3e62d92b48d9505de9af07246

diff --git a/app-misc/vrms-gentoo/vrms-gentoo-0_pre20201102.ebuild 
b/app-misc/vrms-gentoo/vrms-gentoo-0_pre20201102.ebuild
new file mode 100644
index 0..b414db9c8
--- /dev/null
+++ b/app-misc/vrms-gentoo/vrms-gentoo-0_pre20201102.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+COMMIT="4fd604c4816d620be3cf9c5e9dd578b2c30c21bc"
+
+SRC_URI="https://github.com/z411/vrms-gentoo/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+DESCRIPTION="vrms clone for Gentoo Linux"
+HOMEPAGE="https://github.com/z411/vrms-gentoo";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND=""
+RDEPEND="
+   dev-lang/perl
+"
+
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+src_install() {
+   default
+
+   dobin "${PN}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/

2021-03-31 Thread Andreas Sturmlechner
commit: d6a83a2a74be8fa150f1f433ad91eea1cd1ed97e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Mar 30 12:46:27 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Mar 31 19:59:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6a83a2a

dev-tcltk/itk: Drop 3.4.1, 4.0.0 and 4.0.1, EAPI5--

Closes: https://bugs.gentoo.org/677358
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-tcltk/itk/Manifest |  3 ---
 dev-tcltk/itk/itk-3.4.1.ebuild | 60 --
 dev-tcltk/itk/itk-4.0.0.ebuild | 58 
 dev-tcltk/itk/itk-4.0.1.ebuild | 59 -
 4 files changed, 180 deletions(-)

diff --git a/dev-tcltk/itk/Manifest b/dev-tcltk/itk/Manifest
index f40d2d58b20..e63dd42916d 100644
--- a/dev-tcltk/itk/Manifest
+++ b/dev-tcltk/itk/Manifest
@@ -1,4 +1 @@
-DIST itk3.4.1.tar.gz 182311 BLAKE2B 
e1db1b9f7e6e8c5b93eec5bb29fc24af7e6cc5cb3f209df346f03553d3fe7248614c9bb10e2ababd93ea56c63963c1db4ee65bedbae8c279fbe84b6d0eaad3f9
 SHA512 
4680db81a0212e695cfe2c40cabe6dceb94520cf3ee06e2e332f12316838726da14c0b925b117ea351aa14fd2d695f361bcb4062743c66099ef783ae31ab37ef
-DIST itk4.0.0.tar.gz 177838 BLAKE2B 
6bb975c414d40c81bac4b8651ce89f0d84d712114e6f60e1555071d2079f778850f4de7df1a79254db1d1152e8d43f261e0bf9827737fb69abb2801e72d72d6d
 SHA512 
4fd993e3683376bd2852a19e8ac63ec20a9319f3987737a32f7af78b645ff27416b18572b7e30fc1e41a5e4e06ac064280fd86d979738ca9906e2605069c51f3
-DIST itk4.0.1.tar.gz 182029 BLAKE2B 
fe3ed0adddf71af9bf795949b18baf7d983edc1e6e95939db18bdf896069083afbc8498935b0c59e2c5f4179fdc6f624e67198afa0755e8183d754c181d50642
 SHA512 
d64beeb42949e96b384ef2fd571971813697086df8b18af79399cedbb80eba19dc013677957959ea93dc0dcd7cdc4be012b3f9a5f0eedf0bd743550837bd78fc
 DIST itk4.1.0.tar.gz 253796 BLAKE2B 
7d51689d41871f39fbdf940f1aede2c89ee0165cc6be989f7da65df85a0d15e5db037722a5e30a284e51129b7bfff20dfde0fbc78d2d72d8acb9031f328a5d16
 SHA512 
1deed09daf66ae1d0cc88550be13814edff650f3ef2ecb5ae8d28daf92e37550b0e46921eb161da8ccc3886aaf62a4a3087df0f13610839b7c2d6f4b39c9f07e

diff --git a/dev-tcltk/itk/itk-3.4.1.ebuild b/dev-tcltk/itk/itk-3.4.1.ebuild
deleted file mode 100644
index 98286e3171d..000
--- a/dev-tcltk/itk/itk-3.4.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils multilib versionator virtualx
-
-MY_PV=${PV/_beta/b}
-ITCL_VERSION="$(get_version_component_range 1-2)"
-
-DESCRIPTION="Object Oriented Enhancements for Tcl/Tk"
-HOMEPAGE="http://incrtcl.sourceforge.net/";
-SRC_URI="mirror://sourceforge/project/incrtcl/%5BIncr%20Tcl_Tk%5D-source/${PV}/${PN}${PV}.tar.gz"
-
-IUSE=""
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="amd64 ~ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   > "${T}"/34${PN} <<- EOF
-   LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}${MY_PV}/"
-   EOF
-   doenvd "${T}"/34${PN}
-}

diff --git a/dev-tcltk/itk/itk-4.0.0.ebuild b/dev-tcltk/itk/itk-4.0.0.ebuild
deleted file mode 100644
index 76db73b077f..000
--- a/dev-tcltk/itk/itk-4.0.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=5
-
-inherit autotools eutils multilib versionator
-
-MY_PV=${PV/_beta/b}
-ITCL_VERSION="$(get_version_component_range 1-2)"
-
-DESCRIPTION="Object Oriented Enhancements for Tcl/Tk"
-HOMEPAGE="http://incrtcl.sourceforge.net/";
-SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/Itcl%20${MY_PV}/${PN}${MY_PV}.tar.gz"
-#SRC_URI="mirror://sourceforge/%5Bincr%20Tcl_Tk%5D-4-source/Itcl%20${MY_PV}/${PN}${MY_PV}.tar.gz"
-
-IUSE=""
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
-
-DEPEND="
-   >=dev-lang/tk-8.6:=
-   =dev-tcltk/itcl-${ITCL_VERSION}*"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}${MY_PV}"
-
-src_prepare() {
-#  epatch "${FILESDIR}"/${P}-install_data.patch
-   AT_M4DIR=.. eautoconf
-   sed 's:-pipe::g' -i configure || die
-}
-
-src_configure() {
-   source 
"${EPREFIX}"/usr/$(get_libdir)/itcl${ITCL_VERSION}*/itclConfig.sh || die
-   econf \
-   --with-tcl="${EPREFIX}"/usr/$(get_libdir) \
-   --with-tk="${EPREFIX}"/usr/$(get_libdir) \
-   --with-tclinclude="${EPREFIX}"/usr/include \
-   --with-tkinclude="${EPREFIX}"/usr/include \
-   --with-itcl="${ITCL_SRC_DIR}" \
-   --with-x
-}
-
-src_compile() {
-   emake CFLAGS_DEFAULT="${CFLAGS}"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   dodoc license.terms
-
-   cat >> "${T}"/34${PN} <<- EOF
-   LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}${MY_PV}/"
-   EOF
-   doenvd "${T}"/

[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tktray/

2021-03-31 Thread Andreas Sturmlechner
commit: 6fe8bf9da54c13357bfa31345dcd41cb62be63b2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Mar 30 18:11:50 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Mar 31 19:59:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe8bf9d

dev-tcltk/tktray: EAPI-7 bump, drop useless virtualx and src_test()

Xemake did nothing at all in this case and by that hid the fact that tests
are indeed (still) impossible to run for us, see also the ancient bug.

Bug: https://bugs.gentoo.org/284919
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-tcltk/tktray/tktray-1.3.9.ebuild | 27 +--
 1 file changed, 9 insertions(+), 18 deletions(-)

diff --git a/dev-tcltk/tktray/tktray-1.3.9.ebuild 
b/dev-tcltk/tktray/tktray-1.3.9.ebuild
index 3cb9eb4b38a..cdfa53b8e12 100644
--- a/dev-tcltk/tktray/tktray-1.3.9.ebuild
+++ b/dev-tcltk/tktray/tktray-1.3.9.ebuild
@@ -1,21 +1,20 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-inherit eutils virtualx
-
-MY_P="${PN}${PV}"
+EAPI=7
 
 DESCRIPTION="System Tray Icon Support for Tk on X11"
 HOMEPAGE="https://code.google.com/p/tktray/";
-SRC_URI="https://tktray.googlecode.com/files/${MY_P}.tar.gz";
+SRC_URI="https://tktray.googlecode.com/files/${PN}${PV}.tar.gz";
+S="${WORKDIR}/${PN}${PV}"
 
 LICENSE="tcltk"
 SLOT="0"
 KEYWORDS="amd64 ~ppc ~sparc x86"
-IUSE="debug threads test"
-RESTRICT="!test? ( test )"
+IUSE="debug threads"
+
+# tests need actual X server with user interaction, bug #284919
+RESTRICT="test"
 
 DEPEND="
>=dev-lang/tcl-8.4:0=
@@ -23,11 +22,7 @@ DEPEND="
x11-libs/libXext"
 RDEPEND="${DEPEND}"
 
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/1.1-ldflags.patch
-}
+PATCHES=( "${FILESDIR}"/1.1-ldflags.patch )
 
 src_configure() {
source /usr/lib/tclConfig.sh
@@ -36,7 +31,3 @@ src_configure() {
$(use_enable debug symbols) \
$(use_enable threads)
 }
-
-src_test() {
-   Xemake
-}



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itcl/

2021-03-31 Thread Andreas Sturmlechner
commit: a7e7e46d9918d6a296b6913a87fd5bd523bb8e8b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Mar 30 18:19:06 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Mar 31 19:59:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7e7e46d

dev-tcltk/itcl: Drop 3.4.1 and 4.0.3, EAPI5--

Closes: https://bugs.gentoo.org/677358
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-tcltk/itcl/Manifest  |  2 --
 dev-tcltk/itcl/itcl-3.4.1.ebuild | 44 ---
 dev-tcltk/itcl/itcl-4.0.3.ebuild | 65 
 3 files changed, 111 deletions(-)

diff --git a/dev-tcltk/itcl/Manifest b/dev-tcltk/itcl/Manifest
index e3466f43aeb..555b91d5bde 100644
--- a/dev-tcltk/itcl/Manifest
+++ b/dev-tcltk/itcl/Manifest
@@ -1,4 +1,2 @@
-DIST itcl3.4.1.tar.gz 263316 BLAKE2B 
ba4a94d2dfe80b095e754d01036b189130918d7f29701f003873d59fa8e75074b1601dd907d94e5a9f680e05b18493d5782d6a4ddbb56d7df9ff85c8d5b17ecf
 SHA512 
288c9b636f1814371bedd33d570a8d46055e136953685a111b76f3b89a6c7aaa1ee9223ceaae1c5ce43198195cb1adc2b178d7c4101d7fd14cb7e756c98bf2b0
-DIST itcl4.0.3.tar.gz 430522 BLAKE2B 
e1ce0325a501b0227f6ec721927488dff0e2ea323bb8b03b046ce23964b55cdf44d7633f34546b9b0432785e609bb7dddeb3a300cbb2d82a9e4eb70acb1bfd66
 SHA512 
9736a08f0f33e0afa677a77eb643454908531786435b73314a80d9ee211c06f037eb0de3c2c2608b728253f9ec613a601d76f16f29964eb06b667ecbb3400df4
 DIST itcl4.1.1.tar.gz 436718 BLAKE2B 
50f5518460dc6569edcd0229b71439cb10a724b50c31387ebd1ffa85f9fbf58d5bd5163847a1d7ffa791d5acd5d72b08188f01f0e5c4730ba9060fc531071cd4
 SHA512 
1e08dbefe33e5464320c62e32d153b3e473462cded2d715ba1c504deacf190062672fbece40a021f25798440e2fbed4ecda763db5789fc6afb5eb2052bdf66e2
 DIST itcl4.2.0.tar.gz 428635 BLAKE2B 
38898f3377583115eed3b4d5a8a610e0d0a515a1e4852fe3cea04eea68fe64f158bc79d7d5f3041831f97e5e28cee5a67721a187ed5cfbaa33c69e4668b55f31
 SHA512 
42d13d7f4f841bff49c508fe5d17c12e81b7e381db470d7db658c925b6e609a0821953aa8344764633a3b996eb5757aaae7014df13f4e38ade2dd7aa068ba385

diff --git a/dev-tcltk/itcl/itcl-3.4.1.ebuild b/dev-tcltk/itcl/itcl-3.4.1.ebuild
deleted file mode 100644
index 76655429ee2..000
--- a/dev-tcltk/itcl/itcl-3.4.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib versionator
-
-MY_P="${PN}${PV/_beta/b}"
-
-DESCRIPTION="Object Oriented Enhancements for Tcl/Tk"
-HOMEPAGE="http://incrtcl.sourceforge.net/";
-SRC_URI="mirror://sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/$(get_version_component_range
 1-2)/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~alpha amd64 ~ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="> "${T}"/34${PN} <<- EOF
-   LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}$(get_version_component_range 
1-2)/"
-   EOF
-   doenvd "${T}"/34${PN}
-}

diff --git a/dev-tcltk/itcl/itcl-4.0.3.ebuild b/dev-tcltk/itcl/itcl-4.0.3.ebuild
deleted file mode 100644
index c4a648a95f8..000
--- a/dev-tcltk/itcl/itcl-4.0.3.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib versionator
-
-MY_P="${PN}${PV}"
-TCL_VER="8.6.2"
-
-DESCRIPTION="Object Oriented Enhancements for Tcl/Tk"
-HOMEPAGE="http://incrtcl.sourceforge.net/";
-SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itcl%20${PV}/${MY_P}.tar.gz"
-#SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itcl%204.0.2/itcl4.0.2.tar.gz"
-#SRC_URI="mirror://sourceforge/project/tcl/Tcl/${TCL_VER}/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~alpha amd64 ~ia64 ppc sparc x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND=">=dev-lang/tcl-8.6:0="
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${PN}${PV}"
-
-# somehow broken
-#RESTRICT=test
-
-src_configure() {
-   econf \
-   --with-tcl="${EPREFIX}"/usr/$(get_libdir) \
-   --with-tclinclude="${EPREFIX}"/usr/include \
-   --disable-rpath
-}
-
-src_compile() {
-   # adjust install_name on darwin
-   if [[ ${CHOST} == *-darwin* ]]; then
-   sed -i \
-   -e 's:^\(SHLIB_LD\W.*\)$:\1 -install_name 
${pkglibdir}/$@:' \
-   "${S}"/Makefile || die 'sed failed'
-   fi
-
-   sed 's:-pipe::g' -i Makefile || die
-
-   emake CFLAGS_DEFAULT="${CFLAGS}"
-}
-
-src_install() {
-   default
-
-   sed \
-   -e "/BUILD_LIB_SPEC/s:-L${S}::g" \
-   -e "/BUILD_STUB_LIB_SPEC/s:-L${S}::g" \
-   -e 
"/BUILD_STUB_LIB_PATH/s:${S}:${EPREFIX}/usr/$(get_libdir)/${MY_P}/:g" \
-   -e "/INCLUDE_SPEC/s:${S}/generic:${EPREFIX}/usr/include:g" \
-   -e "s:${S}:${EPREFIX}/usr/$(get_libdir)/${MY_P}/:g" \
-

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

2021-03-31 Thread Andreas Sturmlechner
commit: d8ea7781476ed7ddeabd9358649bb6d19789bf2d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Mar 30 12:45:22 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Mar 31 19:59:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8ea7781

dev-lang/tk: Drop 8.5.17-r1, EAPI5--

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

 dev-lang/tk/Manifest|   1 -
 dev-lang/tk/tk-8.5.17-r1.ebuild | 127 
 2 files changed, 128 deletions(-)

diff --git a/dev-lang/tk/Manifest b/dev-lang/tk/Manifest
index d61cb3f94de..acc2f5b2ecf 100644
--- a/dev-lang/tk/Manifest
+++ b/dev-lang/tk/Manifest
@@ -1,4 +1,3 @@
-DIST tk8.5.17-src.tar.gz 4095985 BLAKE2B 
4cbb140c30ca717ee499b9ad9e1a3df27a470a78613edbaec425c39afaa41d59276bbe487933a4e77a9722fcafa9113b203cf5c828660bdeb38f667c3263c3cd
 SHA512 
ddadc738c2567e35d1257b59212c8a0eb70a1bf041d986bc6df3b841b51d934d79a0ef389c928223a64516a92cae3357b2c789edca9c8a626ff4c1cf320c4f4f
 DIST tk8.6.10-src.tar.gz 764 BLAKE2B 
f56647e005778c802352aee0257c0a8f5e0014c9d21362592f08030252d83141cca385f0fb95c0e7e930016255c3b2cef49a65064e056a877214b7d7a1a01246
 SHA512 
d12ef3a5bde9e10209a24e9f978bd23360a979d8fa70a859cf750a79ca51067a11ef6df7589303b52fe2a2baed4083583ddaa19e2c7cb433ea523639927f1be5
 DIST tk8.6.11-src.tar.gz 4496914 BLAKE2B 
c3050a48d5cb3bd3095b2c439b3d33992551f953a981bf23eedbf774368b383abc77fb3156aa4bcaae658d0706495cff03536ab8258f9d824ff8f4325b36cc38
 SHA512 
2e11490f2f51ef7e723661dd91c95622234fb97850e80d8ecd564be8c28f7c8fb0334a97cf8267af9d68f63e4adea887a1a4eec8d2e807d6a970b5912f99d3f2
 DIST tk8.6.11.1-src.tar.gz 4496008 BLAKE2B 
d7bae2fa535411ad8620ec81cdc0b34a1206fed82f50dbd98d3977af46ac43f794166cb7029f274f7903228c62ce83dfbd56cea06669ff1e382b185d733b0792
 SHA512 
e2a1d27ba63601731d43c4c4e2b658771a14afd97ef8231f8bc7854e762b83a42f23b8db600e4b4a4a14ae6fc97378d0b9a9a180ae09308b9d12436ec2b176c4

diff --git a/dev-lang/tk/tk-8.5.17-r1.ebuild b/dev-lang/tk/tk-8.5.17-r1.ebuild
deleted file mode 100644
index 8d2d501f43f..000
--- a/dev-lang/tk/tk-8.5.17-r1.ebuild
+++ /dev/null
@@ -1,127 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils multilib prefix toolchain-funcs versionator virtualx
-
-MY_P="${PN}${PV/_beta/b}"
-
-DESCRIPTION="Tk Widget Set"
-HOMEPAGE="http://www.tcl.tk/";
-SRC_URI="mirror://sourceforge/tcl/${MY_P}-src.tar.gz"
-
-LICENSE="tcltk"
-SLOT="0/8.5"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE="debug threads truetype aqua xscreensaver"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   !aqua? (
-   media-libs/fontconfig
-   media-libs/freetype:2
-   x11-libs/libX11
-   x11-libs/libXt
-   truetype? ( x11-libs/libXft )
-   xscreensaver? ( x11-libs/libXScrnSaver )
-   )
-   ~dev-lang/tcl-${PV}:0="
-DEPEND="${RDEPEND}
-   !aqua? ( x11-base/xorg-proto )"
-
-SPARENT="${WORKDIR}/${MY_P}"
-S="${SPARENT}"/unix
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${PN}-8.5.11-fedora-xft.patch \
-   "${FILESDIR}"/${PN}-8.5.13-multilib.patch
-
-   epatch "${FILESDIR}"/${PN}-8.4.15-aqua.patch
-   eprefixify Makefile.in
-
-   # Bug 125971
-   epatch "${FILESDIR}"/${PN}-8.5.14-conf.patch
-
-   # Bug 648570
-   epatch "${FILESDIR}"/${PN}-8.6.8-libieee.patch
-
-   # Make sure we use the right pkg-config, and link against fontconfig
-   # (since the code base uses Fc* functions).
-   sed \
-   -e 's/FT_New_Face/XftFontOpen/g' \
-   -e "s:\:$(tc-getPKG_CONFIG):" \
-   -e 's:xft freetype2:xft freetype2 fontconfig:' \
-   -i configure.in || die
-   rm -f configure || die
-
-   sed \
-   -e '/chmod/s:555:755:g' \
-   -i Makefile.in || die
-
-   tc-export CC
-
-   eautoconf
-}
-
-src_configure() {
-   local mylibdir=$(get_libdir)
-
-   econf \
-   --with-tcl="${EPREFIX}/usr/${mylibdir}" \
-   $(use_enable threads) \
-   $(use_enable aqua) \
-   $(use_enable truetype xft) \
-   $(use_enable xscreensaver xss) \
-   $(use_enable debug symbols)
-}
-
-src_test() {
-   Xemake test
-}
-
-src_install() {
-   #short version number
-   local v1=$(get_version_component_range 1-2)
-   local mylibdir=$(get_libdir)
-
-   S= default
-
-   # normalize $S path, bug #280766 (pkgcore)
-   local nS="$(cd "${S}"; pwd)"
-
-   # fix the tkConfig.sh to eliminate refs to the build directory
-   # and drop unnecessary -L inclusion to default system libdir
-
-   sed \
-   

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

2021-03-31 Thread Lars Wendler
commit: 175d8dc6b2f3d1c8911e59b28187a93b45f4b887
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 19:58:46 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 19:59:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=175d8dc6

net-misc/dhcpcd: Fixed build with USE="privsep"

Closes: https://bugs.gentoo.org/777600
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/dhcpcd/dhcpcd-9.3.4.ebuild|  1 +
 .../files/dhcpcd-9.3.4-include_termios.patch   | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/net-misc/dhcpcd/dhcpcd-9.3.4.ebuild 
b/net-misc/dhcpcd/dhcpcd-9.3.4.ebuild
index 90ee346ea29..2b787b26667 100644
--- a/net-misc/dhcpcd/dhcpcd-9.3.4.ebuild
+++ b/net-misc/dhcpcd/dhcpcd-9.3.4.ebuild
@@ -35,6 +35,7 @@ RDEPEND="
 
 PATCHES=(
"${FILESDIR}/${PN}-9.4.0-sparc_privsep.patch" #776178
+   "${FILESDIR}/${PN}-9.3.4-include_termios.patch" #777600
 )
 
 src_configure() {

diff --git a/net-misc/dhcpcd/files/dhcpcd-9.3.4-include_termios.patch 
b/net-misc/dhcpcd/files/dhcpcd-9.3.4-include_termios.patch
new file mode 100644
index 000..58a6a0216b8
--- /dev/null
+++ b/net-misc/dhcpcd/files/dhcpcd-9.3.4-include_termios.patch
@@ -0,0 +1,22 @@
+From 7c08f3777a69c69e87a149bb35681ce2ed2f0490 Mon Sep 17 00:00:00 2001
+From: Mikhail Efremov 
+Date: Tue, 8 Dec 2020 16:15:28 +
+Subject: [PATCH] Linux: Fix privsep build by including sys/termios.h for all
+ platforms
+
+---
+ src/privsep-linux.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/privsep-linux.c b/src/privsep-linux.c
+index e588ecd7..1fbe97fa 100644
+--- a/src/privsep-linux.c
 b/src/privsep-linux.c
+@@ -29,6 +29,7 @@
+ #include 
+ #include 
+ #include 
++#include   /* For TCGETS */
+ 
+ #include 
+ #include 



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

2021-03-31 Thread Conrad Kostecki
commit: e466d8e9d2f2a09b7d8027fccbf508f5bbd2db9b
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Mar 29 18:01:18 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Mar 31 19:51:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e466d8e9

dev-python/netcdf4-python: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/20183
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/netcdf4-python-1.5.5-tests.patch | 33 --
 1 file changed, 33 deletions(-)

diff --git a/dev-python/netcdf4-python/files/netcdf4-python-1.5.5-tests.patch 
b/dev-python/netcdf4-python/files/netcdf4-python-1.5.5-tests.patch
deleted file mode 100644
index ff0085c7a1f..000
--- a/dev-python/netcdf4-python/files/netcdf4-python-1.5.5-tests.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-# tst_diskless.py fails and tst_dap.py requires network
 a/test/run_all.py
-+++ b/test/run_all.py
-@@ -16,9 +16,6 @@ if python3:
- else:
- test_files.remove('tst_unicode3.py')
- sys.stdout.write('not running tst_unicode3.py ...\n')
--if __netcdf4libversion__ < '4.2.1' or __has_parallel4_support__ or 
__has_pnetcdf_support__:
--test_files.remove('tst_diskless.py')
--sys.stdout.write('not running tst_diskless.py ...\n')
- if not __has_nc_inq_path__:
- test_files.remove('tst_filepath.py')
- sys.stdout.write('not running tst_filepath.py ...\n')
-@@ -29,14 +26,11 @@ if not __has_cdf5_format__ or struct.calcsize("P") < 8:
- test_files.remove('tst_cdf5.py')
- sys.stdout.write('not running tst_cdf5.py ...\n')
- 
--# Don't run tests that require network connectivity
--if os.getenv('NO_NET'):
--test_files.remove('tst_dap.py');
--sys.stdout.write('not running tst_dap.py ...\n')
--else:
--# run opendap test first (issue #856).
--test_files.remove('tst_dap.py')
--test_files.insert(0,'tst_dap.py')
-+test_files.remove('tst_diskless.py')
-+sys.stdout.write('not running tst_diskless.py ...\n')
-+
-+test_files.remove('tst_dap.py');
-+sys.stdout.write('not running tst_dap.py ...\n')
- 
- # Build the test suite from the tests found in the test files.
- testsuite = unittest.TestSuite()



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

2021-03-31 Thread Conrad Kostecki
commit: f1793aa6cc9fb435bdbea14069b72356f211032c
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Mar 29 18:03:16 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Mar 31 19:50:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1793aa6

sys-devel/m4: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/20184
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 sys-devel/m4/files/m4-1.4.17-posix_spawn.patch | 111 -
 1 file changed, 111 deletions(-)

diff --git a/sys-devel/m4/files/m4-1.4.17-posix_spawn.patch 
b/sys-devel/m4/files/m4-1.4.17-posix_spawn.patch
deleted file mode 100644
index 5954cc35d54..000
--- a/sys-devel/m4/files/m4-1.4.17-posix_spawn.patch
+++ /dev/null
@@ -1,111 +0,0 @@
-This fixes the search for posix_spawn() to use AC_SEARCH_LIBS which
-is needed for uClibc which puts the function in librt [1].  The fix
-is in gnulib commit d6eab2e [2], but we can't just apply that patch
-and autoreconf because that means we must depend on autotools.eclass
-and this leads to a circular dependency.  So we have to patch
-configure directlly.
-
-[1] https://bugs.gentoo.org/show_bug.cgi?id=580688
-[2] 
http://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=d6eab2e70fc5ccc82a73e5c988b76a229e4cd3d5
-[3] https://bugs.gentoo.org/show_bug.cgi?id=581086
-
-Signed-off-by: Anthony G. Basile 
-
-diff -Naur m4-1.4.17.orig/configure m4-1.4.17/configure
 m4-1.4.17.orig/configure   2013-09-22 06:38:28.0 +
-+++ m4-1.4.17/configure2016-04-25 22:27:12.774118561 +
-@@ -808,6 +808,7 @@
- GNULIB_SIGNAL_H_SIGPIPE
- GNULIB_RAISE
- GNULIB_PTHREAD_SIGMASK
-+LIB_POSIX_SPAWN
- REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN
- REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2
- REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE
-@@ -3590,7 +3591,6 @@
- as_fn_append ac_func_list " mkstemp"
- as_fn_append ac_func_list " nl_langinfo"
- as_fn_append ac_func_list " pipe2"
--as_fn_append ac_func_list " posix_spawn"
- gl_printf_safe=yes
- as_fn_append ac_func_list " isblank"
- as_fn_append ac_func_list " iswctype"
-@@ -15877,8 +15881,78 @@
- 
- 
- 
-+  LIB_POSIX_SPAWN=
-+
-+  gl_saved_libs=$LIBS
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing 
posix_spawn" >&5
-+$as_echo_n "checking for library containing posix_spawn... " >&6; }
-+if ${ac_cv_search_posix_spawn+:} false; then :
-+  $as_echo_n "(cached) " >&6
-+else
-+  ac_func_search_save_LIBS=$LIBS
-+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-+/* end confdefs.h.  */
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char posix_spawn ();
-+int
-+main ()
-+{
-+return posix_spawn ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+for ac_lib in '' rt; do
-+  if test -z "$ac_lib"; then
-+ac_res="none required"
-+  else
-+ac_res=-l$ac_lib
-+LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
-+  fi
-+  if ac_fn_c_try_link "$LINENO"; then :
-+  ac_cv_search_posix_spawn=$ac_res
-+fi
-+rm -f core conftest.err conftest.$ac_objext \
-+conftest$ac_exeext
-+  if ${ac_cv_search_posix_spawn+:} false; then :
-+  break
-+fi
-+done
-+if ${ac_cv_search_posix_spawn+:} false; then :
-+
-+else
-+  ac_cv_search_posix_spawn=no
-+fi
-+rm conftest.$ac_ext
-+LIBS=$ac_func_search_save_LIBS
-+fi
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_posix_spawn" 
>&5
-+$as_echo "$ac_cv_search_posix_spawn" >&6; }
-+ac_res=$ac_cv_search_posix_spawn
-+if test "$ac_res" != no; then :
-+  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
-+  test "$ac_cv_search_posix_spawn" = "none required" ||
-+LIB_POSIX_SPAWN=$ac_cv_search_posix_spawn
-+fi
-+
-+for ac_func in posix_spawn
-+do :
-+  ac_fn_c_check_func "$LINENO" "posix_spawn" "ac_cv_func_posix_spawn"
-+if test "x$ac_cv_func_posix_spawn" = xyes; then :
-+  cat >>confdefs.h <<_ACEOF
-+#define HAVE_POSIX_SPAWN 1
-+_ACEOF
- 
-+fi
-+done
- 
-+  LIBS=$gl_saved_libs
- 
-   if test $ac_cv_func_posix_spawn != yes; then
- HAVE_POSIX_SPAWN=0



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

2021-03-31 Thread Conrad Kostecki
commit: 1a2cdb4f630c00f7d1271ce095a32fce5d95b637
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Mar 29 18:04:24 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Mar 31 19:50:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a2cdb4f

www-client/elinks: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/20185
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 www-client/elinks/files/elinks-0.13.4-ruby-gcc10.patch | 13 -
 1 file changed, 13 deletions(-)

diff --git a/www-client/elinks/files/elinks-0.13.4-ruby-gcc10.patch 
b/www-client/elinks/files/elinks-0.13.4-ruby-gcc10.patch
deleted file mode 100644
index 380dce51f0d..000
--- a/www-client/elinks/files/elinks-0.13.4-ruby-gcc10.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-https://github.com/rkd77/felinks/pull/61
-
 a/src/scripting/ruby/core.h
-+++ b/src/scripting/ruby/core.h
-@@ -21,7 +21,7 @@
- #define RB_ERRINFO (ruby_errinfo)
- #endif
- 
--VALUE erb_module;
-+extern VALUE erb_module;
- 
- void alert_ruby_error(struct session *ses, unsigned char *msg);
- void erb_report_error(struct session *ses, int state);



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luaposix/

2021-03-31 Thread Conrad Kostecki
commit: d810adcd6834e06725f271ef7af2df72c902fcb2
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Wed Mar 31 19:43:20 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Mar 31 19:43:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d810adcd

dev-lua/luaposix: drop old version

Closes: https://bugs.gentoo.org/779574
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-lua/luaposix/luaposix-35.0-r101.ebuild | 76 --
 1 file changed, 76 deletions(-)

diff --git a/dev-lua/luaposix/luaposix-35.0-r101.ebuild 
b/dev-lua/luaposix/luaposix-35.0-r101.ebuild
deleted file mode 100644
index 17f6c70f4f1..000
--- a/dev-lua/luaposix/luaposix-35.0-r101.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-
-inherit lua toolchain-funcs
-
-DESCRIPTION="Bindings for POSIX APIs"
-HOMEPAGE="https://luaposix.github.io/luaposix/ 
https://github.com/luaposix/luaposix";
-SRC_URI="https://github.com/luaposix/luaposix/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~arm ~sparc ~x86 ~amd64-linux ~x86-linux"
-
-IUSE="doc"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-
-# Requires specl, which is not in the tree yet
-RESTRICT="test"
-
-DEPEND="${LUA_DEPS}"
-RDEPEND="${DEPEND}
-   lua_targets_lua5-1? ( dev-lua/lua-bit32[lua_targets_lua5-1(-)] )
-   lua_targets_luajit? ( dev-lua/lua-bit32[lua_targets_luajit(-)] )
-"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-   default
-
-   # Temporary fix for respect LDFLAGS (#739050)
-   # Fixed in luke 0.2.1
-   sed -i -e "s:c_module,libdirs:c_module,'\$LDFLAGS',libdirs:g" \
-   build-aux/luke || die
-
-   lua_copy_sources
-}
-
-lua_src_compile() {
-   pushd "${BUILD_DIR}" || die
-
-   # LDOC=true means disable ldoc update documentation
-   ./build-aux/luke --verbose package="${PN}" version="${PV}" \
-   LDOC=true \
-   PREFIX="${ED}/usr" \
-   INST_LIBDIR="${ED}/$(lua_get_cmod_dir)" \
-   INST_LUADIR="${ED}/$(lua_get_lmod_dir)" \
-   CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" || die
-
-   popd || die
-}
-
-src_compile() {
-   lua_foreach_impl lua_src_compile
-}
-
-lua_src_install() {
-   pushd "${BUILD_DIR}" || die
-
-   ./build-aux/luke install \
-   LDOC=true \
-   PREFIX="${ED}/usr" \
-   INST_LIBDIR="${ED}/$(lua_get_cmod_dir)" \
-   INST_LUADIR="${ED}/$(lua_get_lmod_dir)" \
-   || die
-
-   popd || die
-}
-
-src_install() {
-   lua_foreach_impl lua_src_install
-   dodoc {NEWS,README}.md
-   use doc && dodoc -r doc
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luaposix/

2021-03-31 Thread Conrad Kostecki
commit: 10d0523dbd630c97a99d91541d5910deab9b85cf
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Wed Mar 31 19:42:28 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Mar 31 19:43:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d0523d

dev-lua/luaposix: use correct lua includedir

Closes: https://bugs.gentoo.org/779574
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-lua/luaposix/luaposix-35.0-r102.ebuild | 77 ++
 1 file changed, 77 insertions(+)

diff --git a/dev-lua/luaposix/luaposix-35.0-r102.ebuild 
b/dev-lua/luaposix/luaposix-35.0-r102.ebuild
new file mode 100644
index 000..a996b374857
--- /dev/null
+++ b/dev-lua/luaposix/luaposix-35.0-r102.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+
+inherit lua toolchain-funcs
+
+DESCRIPTION="Bindings for POSIX APIs"
+HOMEPAGE="https://luaposix.github.io/luaposix/ 
https://github.com/luaposix/luaposix";
+SRC_URI="https://github.com/luaposix/luaposix/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~arm ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+IUSE="doc"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+# Requires specl, which is not in the tree yet
+RESTRICT="test"
+
+DEPEND="${LUA_DEPS}"
+RDEPEND="${DEPEND}
+   lua_targets_lua5-1? ( dev-lua/lua-bit32[lua_targets_lua5-1(-)] )
+   lua_targets_luajit? ( dev-lua/lua-bit32[lua_targets_luajit(-)] )
+"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+
+   # Temporary fix for respect LDFLAGS (#739050)
+   # Fixed in luke 0.2.1
+   sed -i -e "s:c_module,libdirs:c_module,'\$LDFLAGS',libdirs:g" \
+   build-aux/luke || die
+
+   lua_copy_sources
+}
+
+lua_src_compile() {
+   pushd "${BUILD_DIR}" || die
+
+   # LDOC=true means disable ldoc update documentation
+   ./build-aux/luke --verbose package="${PN}" version="${PV}" \
+   LDOC=true \
+   PREFIX="${ED}/usr" \
+   INST_LIBDIR="${ED}/$(lua_get_cmod_dir)" \
+   INST_LUADIR="${ED}/$(lua_get_lmod_dir)" \
+   LUA_INCDIR="${EPREFIX}/$(lua_get_include_dir)" \
+   CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" || die
+
+   popd || die
+}
+
+src_compile() {
+   lua_foreach_impl lua_src_compile
+}
+
+lua_src_install() {
+   pushd "${BUILD_DIR}" || die
+
+   ./build-aux/luke install \
+   LDOC=true \
+   PREFIX="${ED}/usr" \
+   INST_LIBDIR="${ED}/$(lua_get_cmod_dir)" \
+   INST_LUADIR="${ED}/$(lua_get_lmod_dir)" \
+   || die
+
+   popd || die
+}
+
+src_install() {
+   lua_foreach_impl lua_src_install
+   dodoc {NEWS,README}.md
+   use doc && dodoc -r doc
+}



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

2021-03-31 Thread William Hubbs
commit: 6639436bf8159440af2ebf817605f882fc207db0
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Mar 31 19:13:36 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Mar 31 19:41:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6639436b

app-emulation/docker: remove unstable versions

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

 app-emulation/docker/Manifest |   2 -
 app-emulation/docker/docker-20.10.3-r2.ebuild | 293 --
 app-emulation/docker/docker-20.10.4.ebuild| 273 
 3 files changed, 568 deletions(-)

diff --git a/app-emulation/docker/Manifest b/app-emulation/docker/Manifest
index 23ad1890cb5..730b80b336e 100644
--- a/app-emulation/docker/Manifest
+++ b/app-emulation/docker/Manifest
@@ -1,4 +1,2 @@
 DIST docker-19.03.15.tar.gz 18284803 BLAKE2B 
a1fac5d841934382d12c781353546b7c7a8167d0f2dc4150659a4aece210ea7361c59de25e3d450dae20fd536ea8dc33a18e55f9565ee4fdc818166810391fbf
 SHA512 
ffd8e683a93a6ce69789603d24457aebe3379594692cb3dadc25bc8d407771a29d76087b0ca70856707f151622b1853f283a1071311c033ff90a1e44b0d9ffbc
-DIST docker-20.10.3.tar.gz 11063792 BLAKE2B 
9309573dd83d0746bb492cf68e06d69e60550718f8f934a065b33d1538847a4effcf6310638daa9b535515bc43cc1b47636482c90d4499f2b46b74aa37882dd7
 SHA512 
8389980e0b47e34872301bbe703d7abfc7819946736bab0ef4fee983daa4f798c7c6373d823dc62a3995076e71ca6bc86dc793f736b68e8ec1040332193cfdb8
-DIST docker-20.10.4.tar.gz 11068487 BLAKE2B 
2bff1f36f646de8664731650590d06b4d3b0cc2538aee216f049df6ba394d837154fed4f4b29047f11514eb1bff19c0862a170461be681afd8ab00c4ffbe358b
 SHA512 
6cbead817d37dc3a4d2686556562d3b52f802ac2cd611a1ff6e373db0464080d8babefd3af31175487b700905fbc876ec8ce235989780b037a4408febdf70985
 DIST docker-20.10.5.tar.gz 11068359 BLAKE2B 
16021065f20b6298e47f7b235f522a81ee1cbf046420edf43b241750f39ae19ddee8250090710c124ce09d9c0b20de58378b7df056b37d040a44884e32c5d12d
 SHA512 
620a5345d99be16b4c6ba7321e91e4896128f7d638dfe2220554a6cadeb78b21dd3003cff6db60ed5ffd671ea243b310b21cc1123543b0e0cbfa93eec2900973

diff --git a/app-emulation/docker/docker-20.10.3-r2.ebuild 
b/app-emulation/docker/docker-20.10.3-r2.ebuild
deleted file mode 100644
index 7f4e790bf85..000
--- a/app-emulation/docker/docker-20.10.3-r2.ebuild
+++ /dev/null
@@ -1,293 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-EGO_PN=github.com/docker/docker
-GIT_COMMIT=46229ca1d8
-inherit bash-completion-r1 linux-info systemd udev golang-vcs-snapshot
-
-DESCRIPTION="The core functions you need to create Docker images and run 
Docker containers"
-HOMEPAGE="https://www.docker.com/";
-MY_PV=${PV/_/-}
-SRC_URI="https://github.com/moby/moby/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE="apparmor aufs btrfs +cli +container-init device-mapper hardened overlay 
seccomp"
-
-DEPEND="
-   acct-group/docker
-   >=dev-db/sqlite-3.7.9:3
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( >=sys-fs/btrfs-progs-3.16.1 )
-   device-mapper? ( >=sys-fs/lvm2-2.02.89[thin] )
-   seccomp? ( >=sys-libs/libseccomp-2.2.1 )
-"
-
-# 
https://github.com/moby/moby/blob/master/project/PACKAGERS.md#runtime-dependencies
-# 
https://github.com/moby/moby/blob/master/project/PACKAGERS.md#optional-dependencies
-# https://github.com/moby/moby/tree/master//hack/dockerfile/install
-# make sure containerd, docker-proxy and tini pinned to exact versions from ^,
-# for appropriate branchch/version of course
-RDEPEND="
-   ${DEPEND}
-   >=net-firewall/iptables-1.4
-   sys-process/procps
-   >=dev-vcs/git-1.7
-   >=app-arch/xz-utils-4.9
-   dev-libs/libltdl
-   
>=app-emulation/containerd-1.4.1[apparmor?,btrfs?,device-mapper?,seccomp?]
-   ~app-emulation/docker-proxy-0.8.0_p20201215
-   cli? ( app-emulation/docker-cli )
-   container-init? ( >=sys-process/tini-0.19.0[static] )
-"
-
-# 
https://github.com/docker/docker/blob/master/project/PACKAGERS.md#build-dependencies
-BDEPEND="
-   >=dev-lang/go-1.13.12
-   dev-go/go-md2man
-   virtual/pkgconfig
-"
-
-RESTRICT="installsources strip"
-
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-# see "contrib/check-config.sh" from upstream's sources
-CONFIG_CHECK="
-   ~NAMESPACES ~NET_NS ~PID_NS ~IPC_NS ~UTS_NS
-   ~CGROUPS ~CGROUP_CPUACCT ~CGROUP_DEVICE ~CGROUP_FREEZER ~CGROUP_SCHED 
~CPUSETS ~MEMCG
-   ~KEYS
-   ~VETH ~BRIDGE ~BRIDGE_NETFILTER
-   ~IP_NF_FILTER ~IP_NF_TARGET_MASQUERADE ~NETFILTER_XT_MARK
-   ~NETFILTER_NETLINK ~NETFILTER_XT_MATCH_ADDRTYPE 
~NETFILTER_XT_MATCH_CONNTRACK ~NETFILTER_XT_MATCH_IPVS
-   ~IP_NF_NAT ~NF_NAT
-   ~POSIX_MQUEUE
-
-   ~USER_NS
-   ~SECCOMP
-   ~CGROUP_PIDS
-   ~MEMCG_SWAP
-
-   ~BLK_CGROUP ~BLK_DEV_THROTTLING
-   ~CGROUP_PERF
-   ~CGROUP_HUGETLB
-   ~NET_CLS_CGROUP
-   ~CFS_BAN

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

2021-03-31 Thread Stephan Hartmann
commit: baa09bf87b4833b968d8a9e167f91080e5102d41
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Wed Mar 31 18:57:45 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Wed Mar 31 18:57:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baa09bf8

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

Signed-off-by: Stephan Hartmann  gentoo.org>

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

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 6cb99caf37a..1aca442e064 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_90.0.4430.40-1_amd64.deb 77768616 BLAKE2B 
109ba108a70c0796b64efb2f252394722ef3307fa70d2837fe73a3988634c867dd55eb30811908c00c63538e94dc23c15062e62f1160f9cd2f6c1e5259b2063b
 SHA512 
c9b75ad0dd14325c8339c1a9f3cffb38b18690172900cbd425bb5af68b57572d28507bb94ed7dcc4e44a413cee38debe846f7d33259c055e7d74b4b25eea
+DIST google-chrome-beta_90.0.4430.51-1_amd64.deb 0648 BLAKE2B 
eb7d92f6c8ff1b5dc22702766caf171d0ebf7810738a749cc8ea35e9fde393f38603363aac9c961e9e6d2fb41900d654a58d6901ceca6d6738d90930c2cf7273
 SHA512 
601959d89decc8745a8123732dd6b1a8ef2909cac42f3f49303f0f0c4b860e5e5c0c197141d406dae5f793ff1640b3e8e74e20ade6c94cda03552766e6813fa5

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



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

2021-03-31 Thread Stephan Hartmann
commit: c292af3c168a394bfa400e32b135b225ff8d1ed2
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Wed Mar 31 18:57:48 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Wed Mar 31 18:57:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c292af3c

www-plugins/chrome-binary-plugins: automated update (90.0.4430.51)

Signed-off-by: Stephan Hartmann  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...30.40_beta.ebuild => chrome-binary-plugins-90.0.4430.51_beta.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 91b6df26d39..105af786d6c 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_90.0.4430.40-1_amd64.deb 77768616 BLAKE2B 
109ba108a70c0796b64efb2f252394722ef3307fa70d2837fe73a3988634c867dd55eb30811908c00c63538e94dc23c15062e62f1160f9cd2f6c1e5259b2063b
 SHA512 
c9b75ad0dd14325c8339c1a9f3cffb38b18690172900cbd425bb5af68b57572d28507bb94ed7dcc4e44a413cee38debe846f7d33259c055e7d74b4b25eea
+DIST google-chrome-beta_90.0.4430.51-1_amd64.deb 0648 BLAKE2B 
eb7d92f6c8ff1b5dc22702766caf171d0ebf7810738a749cc8ea35e9fde393f38603363aac9c961e9e6d2fb41900d654a58d6901ceca6d6738d90930c2cf7273
 SHA512 
601959d89decc8745a8123732dd6b1a8ef2909cac42f3f49303f0f0c4b860e5e5c0c197141d406dae5f793ff1640b3e8e74e20ade6c94cda03552766e6813fa5
 DIST google-chrome-stable_89.0.4389.114-1_amd64.deb 75857544 BLAKE2B 
b39c6db6aba2686f73ec31e7299f5bae3ed4b7abd074e28ea976b7f0f9beb515fe6faa89978a4eb20f2a87ebcea58b0e0fe152a1bf9b377f781dc692b7a42d90
 SHA512 
33813521e2ad77f261d91ce3d13480c76c7d4d4e58b2d3f1dc2201c9aa0caed51ea4e4470a539b39d6f4ce38d11c318243e02642d44979c636a8e83d12f79a10
 DIST google-chrome-unstable_91.0.4455.2-1_amd64.deb 78950724 BLAKE2B 
79240cea248b27eacffb9abe74beb9ba61f6fd1406bc78dd62c50dc829bde4c167e6a7a1c3c0fa69747cb2bec684d58569cdf84adb43c3c8ec9617b61873eb37
 SHA512 
1a68587e6c34cc30e688b92af5cae49b7b52662fd97041b74cfa32d91d66ae3f2447dd6824e39822f8111ad11fd2d71cb6cf1f1d95ae6a67e822ab209f9a65c8

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



[gentoo-commits] repo/gentoo:master commit in: www-client/microsoft-edge-dev/

2021-03-31 Thread Stephan Hartmann
commit: 04716e93e52ddd92dcc739e2e4167aa8b18cbcd2
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Wed Mar 31 18:56:16 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Wed Mar 31 18:56:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04716e93

www-client/microsoft-edge-dev: bump to 91.0.838.3

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Stephan Hartmann  gentoo.org>

 www-client/microsoft-edge-dev/Manifest |   1 +
 .../microsoft-edge-dev-91.0.838.3.ebuild   | 114 +
 2 files changed, 115 insertions(+)

diff --git a/www-client/microsoft-edge-dev/Manifest 
b/www-client/microsoft-edge-dev/Manifest
index 129591ddef1..d49cf3257e1 100644
--- a/www-client/microsoft-edge-dev/Manifest
+++ b/www-client/microsoft-edge-dev/Manifest
@@ -2,3 +2,4 @@ DIST microsoft-edge-dev_90.0.818.0-1_amd64.deb 94011664 BLAKE2B 
66d2a4566b4897a4
 DIST microsoft-edge-dev_90.0.818.6-1_amd64.deb 93113886 BLAKE2B 
d311ec9ca8126c35b1ce0ee5cd0ee858d6eaf2e8374c6da9b680e8172ca3746351b53831f4b7c1b18e17288ba3b2dda9badc51dbdca560223862704c0bd5f72a
 SHA512 
22020ebf3f7bddf43a886dc880b678a3e3047d926127041db2b3744b0a9bdaecdf6f90a5d295ec73f07088c9f21c8ca952c9f0f2f9604d62d7cc06cd66ddf695
 DIST microsoft-edge-dev_91.0.825.0-1_amd64.deb 94610646 BLAKE2B 
645c6f0ea3c9cb3415ccb4c1c31750cc55dc0299314e424a521299c3b28795cad32bc394919e0fa4acb2abf39f40b26a8424b9eed7a1de95f8b9de64ab684791
 SHA512 
083494b1716bd4b76973941e0f02d3c2e63051e3911dbcc8b98e94d798f141b49fb86065ba8b3091f03b8120fa2d3e8daf596209ea39e50ad84be711b0232c98
 DIST microsoft-edge-dev_91.0.831.1-1_amd64.deb 96326636 BLAKE2B 
6552d4269ba568742fb86bfb188639954d38f040ad8c1f12491f35a5bf204abe6726432b52e9466fcb57202f0dd0b33f2e235aa618b9151f974cb678e9202dd0
 SHA512 
4050a8881e9efc5217d2d66c92a153a259db930c35f2bd88cca8f8856ce318e772e31678a216bbe211a14fc5132aee05de7d190f1efbec866f3a29c67f87e8d2
+DIST microsoft-edge-dev_91.0.838.3-1_amd64.deb 99149360 BLAKE2B 
291c37cc86ae8c4716562575256c4c0792ce40dc792a309041838d75e34611acb3acae53c6ca5685776b75238fee99cc4adae31fa6e5ad8ab72583672d4abbdc
 SHA512 
fc5231f411e6f9ab1ee912fb7146d6ff17caadb7ab60d616ba3c02e05676252d348595822418dd2a93dd57135050f8ff4691c277c1c7a13026f4635f4cb8e6ff

diff --git a/www-client/microsoft-edge-dev/microsoft-edge-dev-91.0.838.3.ebuild 
b/www-client/microsoft-edge-dev/microsoft-edge-dev-91.0.838.3.ebuild
new file mode 100644
index 000..07e3b73f875
--- /dev/null
+++ b/www-client/microsoft-edge-dev/microsoft-edge-dev-91.0.838.3.ebuild
@@ -0,0 +1,114 @@
+# Copyright 2011-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit chromium-2 desktop pax-utils unpacker xdg-utils
+
+DESCRIPTION="The web browser from Microsoft"
+HOMEPAGE="https://www.microsoft.com/en-us/edge";
+
+if [[ ${PN} == microsoft-edge ]]; then
+   MY_PN=${PN}-stable
+else
+   MY_PN=${PN}
+fi
+
+KEYWORDS="-* ~amd64"
+
+MY_P="${MY_PN}_${PV}-1"
+
+SRC_URI="https://packages.microsoft.com/repos/edge/pool/main/m/${MY_PN}/${MY_P}_amd64.deb";
+
+LICENSE="microsoft-edge"
+SLOT="0"
+RESTRICT="bindist mirror strip"
+
+RDEPEND="
+   app-accessibility/at-spi2-atk:2
+   app-accessibility/at-spi2-core:2
+   app-misc/ca-certificates
+   dev-libs/atk
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-fonts/liberation-fonts
+   media-libs/alsa-lib
+   media-libs/mesa[gbm]
+   net-misc/wget
+   net-print/cups
+   sys-apps/dbus
+   sys-apps/util-linux
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:3[X]
+   x11-libs/libdrm
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/pango
+   x11-misc/xdg-utils
+"
+
+QA_PREBUILT="*"
+QA_DESKTOP_FILE="usr/share/applications/microsoft-edge.*\\.desktop"
+S=${WORKDIR}
+EDGE_HOME="opt/microsoft/msedge${PN#microsoft-edge}"
+
+pkg_nofetch() {
+   eerror "Please wait 24 hours and sync your tree before reporting a bug 
for microsoft-edge fetch failures."
+}
+
+pkg_pretend() {
+   # Protect against people using autounmask overzealously
+   use amd64 || die "microsoft-edge only works on amd64"
+}
+
+pkg_setup() {
+   chromium_suid_sandbox_check_kernel_config
+}
+
+src_unpack() {
+   :
+}
+
+src_install() {
+   dodir /
+   cd "${ED}" || die
+   unpacker
+
+   rm _gpgorigin || die
+
+   rm -r etc usr/share/menu || die
+   mv usr/share/doc/${MY_PN} usr/share/doc/${PF} || die
+
+   gzip -d usr/share/doc/${PF}/changelog.gz || die
+   gzip -d usr/share/man/man1/${MY_PN}.1.gz || die
+
+   local suffix=
+   [[ ${PN} == microsoft-edge-beta ]] && suffix=_beta
+   [[ ${PN} == microsoft-edge-dev ]] && suffix=_dev
+
+   local si

[gentoo-commits] repo/gentoo:master commit in: www-client/microsoft-edge-dev/

2021-03-31 Thread Stephan Hartmann
commit: 6f2263271ab90c77d061f753336131d05b0a0501
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Wed Mar 31 18:56:36 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Wed Mar 31 18:56:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f226327

www-client/microsoft-edge-dev: remove old

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Stephan Hartmann  gentoo.org>

 www-client/microsoft-edge-dev/Manifest |   2 -
 .../microsoft-edge-dev-90.0.818.0.ebuild   | 114 -
 .../microsoft-edge-dev-90.0.818.6.ebuild   | 114 -
 3 files changed, 230 deletions(-)

diff --git a/www-client/microsoft-edge-dev/Manifest 
b/www-client/microsoft-edge-dev/Manifest
index d49cf3257e1..6350d52e7e0 100644
--- a/www-client/microsoft-edge-dev/Manifest
+++ b/www-client/microsoft-edge-dev/Manifest
@@ -1,5 +1,3 @@
-DIST microsoft-edge-dev_90.0.818.0-1_amd64.deb 94011664 BLAKE2B 
66d2a4566b4897a4dbc71f15e50ba3b52af41034d0fce48b185901b1a892d9a7b974bacec35369a9be6b74b40d0ed05a0b4f24224ec349e29014f1b42e1ee9ee
 SHA512 
d1a154e028805c0143bb32496a785eeefce5e27d99d435a56a0d44ad4c8064590feaf688d5f708ef8db9453f51837ff997b8419eca05a2f8519e91a93fbd4a39
-DIST microsoft-edge-dev_90.0.818.6-1_amd64.deb 93113886 BLAKE2B 
d311ec9ca8126c35b1ce0ee5cd0ee858d6eaf2e8374c6da9b680e8172ca3746351b53831f4b7c1b18e17288ba3b2dda9badc51dbdca560223862704c0bd5f72a
 SHA512 
22020ebf3f7bddf43a886dc880b678a3e3047d926127041db2b3744b0a9bdaecdf6f90a5d295ec73f07088c9f21c8ca952c9f0f2f9604d62d7cc06cd66ddf695
 DIST microsoft-edge-dev_91.0.825.0-1_amd64.deb 94610646 BLAKE2B 
645c6f0ea3c9cb3415ccb4c1c31750cc55dc0299314e424a521299c3b28795cad32bc394919e0fa4acb2abf39f40b26a8424b9eed7a1de95f8b9de64ab684791
 SHA512 
083494b1716bd4b76973941e0f02d3c2e63051e3911dbcc8b98e94d798f141b49fb86065ba8b3091f03b8120fa2d3e8daf596209ea39e50ad84be711b0232c98
 DIST microsoft-edge-dev_91.0.831.1-1_amd64.deb 96326636 BLAKE2B 
6552d4269ba568742fb86bfb188639954d38f040ad8c1f12491f35a5bf204abe6726432b52e9466fcb57202f0dd0b33f2e235aa618b9151f974cb678e9202dd0
 SHA512 
4050a8881e9efc5217d2d66c92a153a259db930c35f2bd88cca8f8856ce318e772e31678a216bbe211a14fc5132aee05de7d190f1efbec866f3a29c67f87e8d2
 DIST microsoft-edge-dev_91.0.838.3-1_amd64.deb 99149360 BLAKE2B 
291c37cc86ae8c4716562575256c4c0792ce40dc792a309041838d75e34611acb3acae53c6ca5685776b75238fee99cc4adae31fa6e5ad8ab72583672d4abbdc
 SHA512 
fc5231f411e6f9ab1ee912fb7146d6ff17caadb7ab60d616ba3c02e05676252d348595822418dd2a93dd57135050f8ff4691c277c1c7a13026f4635f4cb8e6ff

diff --git a/www-client/microsoft-edge-dev/microsoft-edge-dev-90.0.818.0.ebuild 
b/www-client/microsoft-edge-dev/microsoft-edge-dev-90.0.818.0.ebuild
deleted file mode 100644
index 07e3b73f875..000
--- a/www-client/microsoft-edge-dev/microsoft-edge-dev-90.0.818.0.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 2011-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit chromium-2 desktop pax-utils unpacker xdg-utils
-
-DESCRIPTION="The web browser from Microsoft"
-HOMEPAGE="https://www.microsoft.com/en-us/edge";
-
-if [[ ${PN} == microsoft-edge ]]; then
-   MY_PN=${PN}-stable
-else
-   MY_PN=${PN}
-fi
-
-KEYWORDS="-* ~amd64"
-
-MY_P="${MY_PN}_${PV}-1"
-
-SRC_URI="https://packages.microsoft.com/repos/edge/pool/main/m/${MY_PN}/${MY_P}_amd64.deb";
-
-LICENSE="microsoft-edge"
-SLOT="0"
-RESTRICT="bindist mirror strip"
-
-RDEPEND="
-   app-accessibility/at-spi2-atk:2
-   app-accessibility/at-spi2-core:2
-   app-misc/ca-certificates
-   dev-libs/atk
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-fonts/liberation-fonts
-   media-libs/alsa-lib
-   media-libs/mesa[gbm]
-   net-misc/wget
-   net-print/cups
-   sys-apps/dbus
-   sys-apps/util-linux
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   x11-libs/gtk+:3[X]
-   x11-libs/libdrm
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/pango
-   x11-misc/xdg-utils
-"
-
-QA_PREBUILT="*"
-QA_DESKTOP_FILE="usr/share/applications/microsoft-edge.*\\.desktop"
-S=${WORKDIR}
-EDGE_HOME="opt/microsoft/msedge${PN#microsoft-edge}"
-
-pkg_nofetch() {
-   eerror "Please wait 24 hours and sync your tree before reporting a bug 
for microsoft-edge fetch failures."
-}
-
-pkg_pretend() {
-   # Protect against people using autounmask overzealously
-   use amd64 || die "microsoft-edge only works on amd64"
-}
-
-pkg_setup() {
-   chromium_suid_sandbox_check_kernel_config
-}
-
-src_unpack() {
-   :
-}
-
-src_install() {
-   dodir /
-   cd "${ED}" || die
-   unpacker
-
-   rm _gpgorigin || die
-
-   rm -r etc usr/share/menu || die
-  

[gentoo-commits] repo/gentoo:master commit in: games-engines/devilutionx/, games-engines/devilutionx/files/

2021-03-31 Thread Lars Wendler
commit: 4e3c1d7c6209e4b36fb34ee9c72d8d34a456ae8a
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 16:05:39 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 16:05:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3c1d7c

games-engines/devilutionx: New bundled font patch for live ebuild

Closes: https://bugs.gentoo.org/779547
Signed-off-by: Lars Wendler  gentoo.org>

 games-engines/devilutionx/devilutionx-.ebuild  |  2 +-
 .../devilutionx-1.2.0_pre-no_bundled_font.patch| 40 ++
 2 files changed, 41 insertions(+), 1 deletion(-)

diff --git a/games-engines/devilutionx/devilutionx-.ebuild 
b/games-engines/devilutionx/devilutionx-.ebuild
index 3c50e3ab9fb..70c9bb47460 100644
--- a/games-engines/devilutionx/devilutionx-.ebuild
+++ b/games-engines/devilutionx/devilutionx-.ebuild
@@ -40,7 +40,7 @@ BDEPEND="
 "
 
 PATCHES=(
-   "${FILESDIR}/${PN}-1.1.0-no_bundled_font.patch" #704508
+   "${FILESDIR}/${PN}-1.2.0_pre-no_bundled_font.patch" #704508
 )
 
 src_configure() {

diff --git 
a/games-engines/devilutionx/files/devilutionx-1.2.0_pre-no_bundled_font.patch 
b/games-engines/devilutionx/files/devilutionx-1.2.0_pre-no_bundled_font.patch
new file mode 100644
index 000..01f4006dd13
--- /dev/null
+++ 
b/games-engines/devilutionx/files/devilutionx-1.2.0_pre-no_bundled_font.patch
@@ -0,0 +1,40 @@
+From 6e75bb9550bd8b4c6249fcfc0cd488224336060e Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Wed, 31 Mar 2021 17:55:03 +0200
+Subject: [PATCH] Fix font location
+
+https://bugs.gentoo.org/704508
+---
+ SourceS/paths.cpp  | 2 +-
+ SourceX/DiabloUI/fonts.cpp | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/SourceS/paths.cpp b/SourceS/paths.cpp
+index dd60fcb5..1c4f9d69 100644
+--- a/SourceS/paths.cpp
 b/SourceS/paths.cpp
+@@ -11,7 +11,7 @@
+ #endif
+ 
+ #ifndef TTF_FONT_NAME
+-#define TTF_FONT_NAME "CharisSILB.ttf"
++#define TTF_FONT_NAME "sil-charis/CharisSIL-B.ttf"
+ #endif
+ 
+ namespace dvl {
+diff --git a/SourceX/DiabloUI/fonts.cpp b/SourceX/DiabloUI/fonts.cpp
+index 178dcbe9..5f825886 100644
+--- a/SourceX/DiabloUI/fonts.cpp
 b/SourceX/DiabloUI/fonts.cpp
+@@ -66,7 +66,7 @@ void LoadTtfFont()
+   std::string ttf_font_path = GetTtfPath() + GetTtfName();
+ #ifdef __linux__
+   if (!FileExists(ttf_font_path.c_str())) {
+-  ttf_font_path = "/usr/share/fonts/truetype/" + GetTtfName();
++  ttf_font_path = "/usr/share/fonts/" + GetTtfName();
+   }
+ #endif
+   font = TTF_OpenFont(ttf_font_path.c_str(), 17);
+-- 
+2.31.1
+



[gentoo-commits] repo/gentoo:master commit in: games-engines/devilutionx/

2021-03-31 Thread Lars Wendler
commit: 9c29502a0c6dbf7d2791488739dbb3929a7923a6
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 15:46:53 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 15:47:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c29502a

games-engines/devilutionx: Removed "hellfire" USE flag

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

 games-engines/devilutionx/devilutionx-.ebuild | 3 +--
 games-engines/devilutionx/metadata.xml| 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/games-engines/devilutionx/devilutionx-.ebuild 
b/games-engines/devilutionx/devilutionx-.ebuild
index 5c1340040dd..3c50e3ab9fb 100644
--- a/games-engines/devilutionx/devilutionx-.ebuild
+++ b/games-engines/devilutionx/devilutionx-.ebuild
@@ -25,7 +25,7 @@ fi
 LICENSE="public-domain"
 SLOT="0"
 
-IUSE="debug +hellfire lto"
+IUSE="debug lto"
 
 RDEPEND="
dev-libs/libsodium
@@ -50,7 +50,6 @@ src_configure() {
-DDISABLE_LTO="$(usex !lto)"
-DDIST="ON"
-DUBSAN="OFF"
-   -DHELLFIRE="$(usex hellfire)"
)
cmake_src_configure
 

diff --git a/games-engines/devilutionx/metadata.xml 
b/games-engines/devilutionx/metadata.xml
index cb26cf9fd00..6f7209b5d36 100644
--- a/games-engines/devilutionx/metadata.xml
+++ b/games-engines/devilutionx/metadata.xml
@@ -6,7 +6,6 @@
 Lars Wendler
   
   
-Enable support for Diablo Hellfire Expansion
 Build with link time optimization enabled
   
   



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

2021-03-31 Thread Matthew Thode
commit: 38a4d7e5cf0b0bb2f4d2af95b4c7cda4486afc77
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Mar 31 15:46:38 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Mar 31 15:47:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38a4d7e5

media-sound/pulseeffects: 5.0.2 cleanup and update deps in 

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

 media-sound/pulseeffects/Manifest | 2 +-
 .../{pulseeffects-5.0.2.ebuild => pulseeffects-5.0.3.ebuild}  | 2 +-
 media-sound/pulseeffects/pulseeffects-.ebuild | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-sound/pulseeffects/Manifest 
b/media-sound/pulseeffects/Manifest
index d5f416fcdec..418408bb1ae 100644
--- a/media-sound/pulseeffects/Manifest
+++ b/media-sound/pulseeffects/Manifest
@@ -1,3 +1,3 @@
 DIST pulseeffects-4.7.2.tar.gz 1998420 BLAKE2B 
6ac9d4b416ffac73f874fafcfd07b990ead7a2645832fd35eae23b3c9e9acb8663718b9cbb5fd0c1066c1f75272d0473257e711602d2646742785fe2c6ca5ea9
 SHA512 
f235504ca6edddf7a18f2c909ba58578a3d70e6fdab5ad0882f831c9d148f4fd35d0e55617305d787feefdba7a7544e1a72dac3dbc0e03bb9183e0937cdeaef2
 DIST pulseeffects-4.8.4.tar.gz 2029971 BLAKE2B 
6be45e748bd8df238391107531f46ac706fc9eb535c78c06f32526d910dffb82bec36af4130490645c95b200562c51f59f19de8905c3c54bda5d8a4b68b5297a
 SHA512 
4d68f5bd678c75f5b13519cddb2f46bd0a827516f1cc7431a8952204f51bd2691f701df869258092a93843bcdb4c61bac916291bade8c4428ed9a4d68b70c757
-DIST pulseeffects-5.0.2.tar.gz 2051616 BLAKE2B 
13df099b5f49c1a7be89fe9b684c68c03c750fb89854dc4a5c94cb8dfa04bfbb5e7ce0f70529db0c3b2706cca3918be1a93f70d558494316a2d577b3c68c53b5
 SHA512 
3cbfcc82c4ed052301d3f700e897a99bacc1a1c66000d2c837ebdb0516c914071fed9334bba917956aeb2b37784ea06054461aef5da95688ea74247311d09300
+DIST pulseeffects-5.0.3.tar.gz 2052473 BLAKE2B 
f313abae0f432f767ea4c91350207c97c261845fe64dbb32b0aebab4792b33a993c5ee4084f8b14116058bc989965380c8acb393d10f59a3243ad676c9916f33
 SHA512 
e9a969b7661e8daca84f5406dafba59a3cbf036f3b8a8893320574ed56465537454d2c854a7053c7f425728342776e9156ebcae8fa2b07bc5bfca04d04356dfd

diff --git a/media-sound/pulseeffects/pulseeffects-5.0.2.ebuild 
b/media-sound/pulseeffects/pulseeffects-5.0.3.ebuild
similarity index 98%
rename from media-sound/pulseeffects/pulseeffects-5.0.2.ebuild
rename to media-sound/pulseeffects/pulseeffects-5.0.3.ebuild
index 2e8da24b547..e9dde9ba03b 100644
--- a/media-sound/pulseeffects/pulseeffects-5.0.2.ebuild
+++ b/media-sound/pulseeffects/pulseeffects-5.0.3.ebuild
@@ -41,7 +41,7 @@ RDEPEND="
rubberband? ( media-libs/rubberband )
>=media-libs/zita-convolver-3.0.0
media-libs/libebur128
-   media-video/pipewire[gstreamer]
+   >=media-video/pipewire-0.3.24[gstreamer]
sys-apps/dbus"
 # see 47a950b00c6db383ad07502a8fc396ecca98c1ce for dev-libs/appstream-glib
 # and sys-devel/gettext depends reasoning

diff --git a/media-sound/pulseeffects/pulseeffects-.ebuild 
b/media-sound/pulseeffects/pulseeffects-.ebuild
index 8915be106aa..e9dde9ba03b 100644
--- a/media-sound/pulseeffects/pulseeffects-.ebuild
+++ b/media-sound/pulseeffects/pulseeffects-.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]];then
EGIT_REPO_URI="https://github.com/wwmm/pulseeffects";
 else
SRC_URI="https://github.com/wwmm/pulseeffects/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-3"
@@ -41,7 +41,7 @@ RDEPEND="
rubberband? ( media-libs/rubberband )
>=media-libs/zita-convolver-3.0.0
media-libs/libebur128
-   media-video/pipewire[gstreamer]
+   >=media-video/pipewire-0.3.24[gstreamer]
sys-apps/dbus"
 # see 47a950b00c6db383ad07502a8fc396ecca98c1ce for dev-libs/appstream-glib
 # and sys-devel/gettext depends reasoning



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

2021-03-31 Thread John Helmert III
commit: 1216ea4d1ffae3bb3a94c31f4b513150eb86576d
Author: John Helmert III  gentoo  org>
AuthorDate: Wed Mar 31 15:42:06 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Wed Mar 31 15:42:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1216ea4d

dev-util/rizin: add 0.1.2

Fix tests, use system tree-sitter.

Signed-off-by: John Helmert III  gentoo.org>

 dev-util/rizin/Manifest   |  2 ++
 dev-util/rizin/rizin-0.1.2.ebuild | 60 +++
 2 files changed, 62 insertions(+)

diff --git a/dev-util/rizin/Manifest b/dev-util/rizin/Manifest
index 97ccecd84fd..0f1272bae1b 100644
--- a/dev-util/rizin/Manifest
+++ b/dev-util/rizin/Manifest
@@ -1 +1,3 @@
 DIST rizin-src-0.1.1.tar.xz 5475164 BLAKE2B 
7646f07d462f0c7e9874fe29bf0b638f0d10756c2189e2811ee1711c6feb9b76e5c5e90574c084c568a8fbe204c8867e6bfad17f12567fa4a579924bdbda6932
 SHA512 
da3842e2b8534d1440aed547cf7a7ee351527d78883e7f989509b50cd99d3aebabb9307169a9a5cfcf6d82a8cf5ade5c653d2fdbf6b7d2052e46f049b1a4d035
+DIST rizin-src-0.1.2.tar.xz 5559560 BLAKE2B 
a9182ae49782c57c3c4d4028203cfb1aef5b743096f4749a0ba65fa80ee421a23c3eb8a4f413f06f51c909c763a9bb06cb058cd334b3f4b0711ff72ee93c0df6
 SHA512 
f52987af5d1cd9f88a699610dfbb8118b23c5ce205c530a7b0c7481b06ee95a8e4d0d66297ca34c18e0b9366c963ea3244f37d66a7fda0ec6ffaa084f2ae7568
+DIST rizin-testbins-b7d6c0ec57eb1c14e970b8301f36cbac997ee695.tar.gz 116758002 
BLAKE2B 
f30412c8b749de7e71e71b472ce1237091e71fac15d08e6ab5a3bcd9b87fbf75e347427cb588d18b62376040061f90b9b78016db689e46e5b32d3fd2aac6f1bf
 SHA512 
94aca148dc2aaede66c63253717b3ee5f34b46dc8a634d7a3916786c97075c6eb9ee98af25c2af2778a601ade7cfb1d41ed3b11de36ddb74abc5f4eabef74ef3

diff --git a/dev-util/rizin/rizin-0.1.2.ebuild 
b/dev-util/rizin/rizin-0.1.2.ebuild
new file mode 100644
index 000..d1ca78992fe
--- /dev/null
+++ b/dev-util/rizin/rizin-0.1.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# This is the commit that the CI for the release commit used
+BINS_COMMIT="b7d6c0ec57eb1c14e970b8301f36cbac997ee695"
+
+inherit meson
+
+DESCRIPTION="reverse engineering framework for binary analysis"
+HOMEPAGE="https://rizin.re/";
+
+SRC_URI="https://github.com/rizinorg/rizin/releases/download/v${PV}/rizin-src-${PV}.tar.xz
+   test? ( 
https://github.com/rizinorg/rizin-testbins/archive/${BINS_COMMIT}.tar.gz -> 
rizin-testbins-${BINS_COMMIT}.tar.gz )"
+KEYWORDS="~amd64"
+
+LICENSE="Apache-2.0 BSD LGPL-3 MIT"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   sys-apps/file
+   app-arch/lz4:0=
+   dev-libs/capstone:0=
+   dev-libs/libuv:0=
+   dev-libs/libzip:0=
+   dev-libs/openssl:0=
+   dev-libs/tree-sitter
+   dev-libs/xxhash
+   sys-libs/zlib:0=
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+
+   if use test; then
+  mv "${WORKDIR}/rizin-testbins-${BINS_COMMIT}" "${S}/test/bins" || die
+   fi
+}
+
+src_configure() {
+   local emesonargs=(
+   -Dcli=enabled
+   -Duse_sys_capstone=true
+   -Duse_sys_magic=true
+   -Duse_sys_zip=true
+   -Duse_sys_zlib=true
+   -Duse_sys_lz4=true
+   -Duse_sys_xxhash=true
+   -Duse_sys_openssl=true
+   -Duse_sys_tree_sitter=true
+
+   $(meson_use test enable_tests)
+   $(meson_use test enable_rz_test)
+   )
+   meson_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: net-proxy/haproxy/

2021-03-31 Thread Christian Ruppert
commit: 14499ff52c27844e256f715b36ee1dad7eaef141
Author: Christian Ruppert  gentoo  org>
AuthorDate: Wed Mar 31 15:32:38 2021 +
Commit: Christian Ruppert  gentoo  org>
CommitDate: Wed Mar 31 15:32:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14499ff5

net-proxy/haproxy: Version bump to 2.2.12

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Christian Ruppert  gentoo.org>

 net-proxy/haproxy/Manifest  |   1 +
 net-proxy/haproxy/haproxy-2.2.12.ebuild | 180 
 2 files changed, 181 insertions(+)

diff --git a/net-proxy/haproxy/Manifest b/net-proxy/haproxy/Manifest
index e19c24f9df6..8d7661b2c12 100644
--- a/net-proxy/haproxy/Manifest
+++ b/net-proxy/haproxy/Manifest
@@ -5,6 +5,7 @@ DIST haproxy-2.0.21.tar.gz 2696549 BLAKE2B 
97f211a768006370d85c0b2bda539440ac260
 DIST haproxy-2.1.12.tar.gz 2731180 BLAKE2B 
fe1d586c5f6a7844606d4b8cd8cb810464f0d7d5615d53e7d53e8d45eb383021952e419e2f00a9277dd9b92d2c62dad60db9dd7ea9a87e21a04c960287c05cba
 SHA512 
e33735311b0c7f349d5f6aa88fd69e1e9838c08fdf793f6e0d27779cd0c165d9a85022c778be880a8284f62c3c511c2b2d16374bf466268c902045631a4fbff1
 DIST haproxy-2.1.4.tar.gz 2684568 BLAKE2B 
0618e069e6cf6fd20eb9fad0cfcb5ca1714d4001a794e20ce60d812741f4f65d44088c46599e4181cb79536566a940d748030552d0bd010ba14d1552cf7156f4
 SHA512 
fd029ac1ec877fa89a9410944439b66795b1392b6c8416aaa7978943170530c3826ba50ea706366f3f7785b7cffed58497cb362fc2480dd6920a99af4f920d98
 DIST haproxy-2.2.11.tar.gz 2907128 BLAKE2B 
76ce4d75e6be1b3e169fe1f2a3ca4dc104f7b0a7af308e1713ce7c235e45525d094bcff71853de9d78e9b6d32115b96616d3d86fb72397d8fdf7d70f375f2547
 SHA512 
bf05666a712710a1b99e6014a97aceb0a3e9a3184afdaaf2ae4454e8f444f6b85fd855c41c211882e8158d5939f81f1da2dc8468a6a778914e6caa4a9246a5d3
+DIST haproxy-2.2.12.tar.gz 2913160 BLAKE2B 
0a9bc637e2d70a23ca33f3711569c0a3dbd0922f332cffc024ba523271bf8086871595a9cd9636d2ce71811f6f8c8190d1d58179458f2cf1d64562f826392471
 SHA512 
fc4d8725d85aaecc8cacd9177a81dea1b09d5b000ff27bb5217847779e89d67cabd35db6175acc898b674dc1c5aadfa20b015d54095a5ea2f2176444c858d90d
 DIST haproxy-2.2.5.tar.gz 2876429 BLAKE2B 
1da993769302186ab0d7e1b0c8651c7e9a151295176da44bc854461f6b27831cadaa01a71b153046a23b43de91b2ba17b11ee52ecea12f744ae7af5b9f66ee98
 SHA512 
74e3c8b2b786f1fb5fcb8b8071751450f45a58ff847b336a8e4413727dea87b7d5a140853e3a445603ae5c4079f371ce9aa31a9f06c18ff4eea7462661775dca
 DIST haproxy-2.3.7.tar.gz 2924802 BLAKE2B 
c2f82a49e7422b36f5af5568790002f2e5761adb971f4692406b8573035245782b155f6f05cd388400476f1af3734284dccf9922ba8a04ee3497dbf03d926bab
 SHA512 
ba567294c61dbd19c178acace8804979fdb26384115e77a4eb88444fa9d45b1c62f22a171efafeeba027ae65f3a70fb67b7a3f84042eada025b6cce3b9ad62ec
 DIST haproxy-2.3.8.tar.gz 2928770 BLAKE2B 
198529d7b2ff359b9586b0e67a73682cad084276a009a99ce7fe798c2c62c3d1a6854f5c6c6d22f5969fb19443f5b1a6f33a3986ac9da1c11e10a1bb18948ae4
 SHA512 
edc211f9328af3ceb323b2f232585c08b3a592d53286b4b2af79797dc3036dbef25dceff93f3344cf8d02d3e6f23515110d0e4c4368bb737e7171903c966

diff --git a/net-proxy/haproxy/haproxy-2.2.12.ebuild 
b/net-proxy/haproxy/haproxy-2.2.12.ebuild
new file mode 100644
index 000..09bca46c32f
--- /dev/null
+++ b/net-proxy/haproxy/haproxy-2.2.12.ebuild
@@ -0,0 +1,180 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+[[ ${PV} == * ]] && SCM="git-r3"
+inherit toolchain-funcs flag-o-matic systemd linux-info $SCM
+
+MY_P="${PN}-${PV/_beta/-dev}"
+
+DESCRIPTION="A TCP/HTTP reverse proxy for high availability environments"
+HOMEPAGE="http://www.haproxy.org";
+if [[ ${PV} != * ]]; then
+   SRC_URI="http://haproxy.1wt.eu/download/$(ver_cut 
1-2)/src/${MY_P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~ppc ~x86"
+else
+   EGIT_REPO_URI="http://git.haproxy.org/git/haproxy-$(ver_cut 1-2).git/"
+   EGIT_BRANCH=master
+fi
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/$(ver_cut 1-2)"
+IUSE="+crypt doc examples libressl slz +net_ns +pcre pcre-jit pcre2 pcre2-jit 
prometheus-exporter
+ssl systemd +threads tools vim-syntax +zlib lua device-atlas 51degrees wurfl"
+REQUIRED_USE="pcre-jit? ( pcre )
+   pcre2-jit? ( pcre2 )
+   pcre? ( !pcre2 )
+   device-atlas? ( pcre )
+   ?? ( slz zlib )"
+
+DEPEND="
+   pcre? (
+   dev-libs/libpcre
+   pcre-jit? ( dev-libs/libpcre[jit] )
+   )
+   pcre2? (
+   dev-libs/libpcre
+   pcre2-jit? ( dev-libs/libpcre2[jit] )
+   )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[zlib?] )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   slz? ( dev-libs/libslz:= )
+   zlib? ( sys-libs/zlib )
+   lua? ( dev-lang/lua:5.3 )
+   device-atlas? ( dev-libs/device-atlas-api-c )"
+RDEPEND="${DEPEND}
+   acct-group/haproxy
+   acct-user/haproxy"
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS=( CHANGELOG CONTRIBUTING MAINTAINERS README )
+CONTRIBS=( halog ipr

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

2021-03-31 Thread Sergei Trofimovich
commit: 495fec4a391383e2f51326510595fdecb063a534
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 15:06:53 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=495fec4a

sys-apps/install-xattr: stable 0.8 for hppa, bug #773625

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

 sys-apps/install-xattr/install-xattr-0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/install-xattr/install-xattr-0.8.ebuild 
b/sys-apps/install-xattr/install-xattr-0.8.ebuild
index b76850a3487..b797b164d5b 100644
--- a/sys-apps/install-xattr/install-xattr-0.8.ebuild
+++ b/sys-apps/install-xattr/install-xattr-0.8.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
S=${WORKDIR}/${PN}
 fi
 



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

2021-03-31 Thread Sergei Trofimovich
commit: f256716117a610734edb58a4f813f7540a6591e4
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 15:02:32 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2567161

net-dialup/mgetty: stable 1.2.1-r3 for sparc, bug #779433

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

 net-dialup/mgetty/mgetty-1.2.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/mgetty/mgetty-1.2.1-r3.ebuild 
b/net-dialup/mgetty/mgetty-1.2.1-r3.ebuild
index b0142154c53..178f1f43d6a 100644
--- a/net-dialup/mgetty/mgetty-1.2.1-r3.ebuild
+++ b/net-dialup/mgetty/mgetty-1.2.1-r3.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
 
 SLOT="0"
 LICENSE="GPL-2"
-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"
 IUSE="+fax fidonet split-usr"
 
 PATCHES=(



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

2021-03-31 Thread Sergei Trofimovich
commit: 395a311e80726674579eb4d0132646b8e3550b78
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 15:05:40 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=395a311e

dev-libs/nspr: stable 4.30 for hppa, bug #778941

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

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

diff --git a/dev-libs/nspr/nspr-4.30.ebuild b/dev-libs/nspr/nspr-4.30.ebuild
index dedbf8f7f26..72a4a2f0f76 100644
--- a/dev-libs/nspr/nspr-4.30.ebuild
+++ b/dev-libs/nspr/nspr-4.30.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz";
 
 LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
 IUSE="debug elibc_musl"
 
 MULTILIB_CHOST_TOOLS=(



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

2021-03-31 Thread Sergei Trofimovich
commit: 0c7ec963d593816f21341ea4483a484853200a0e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 15:07:49 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c7ec963

app-text/xmlto: stable 0.0.28-r4 for hppa, bug #757576

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

 app-text/xmlto/xmlto-0.0.28-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xmlto/xmlto-0.0.28-r4.ebuild 
b/app-text/xmlto/xmlto-0.0.28-r4.ebuild
index 28a47f6173b..7ff46873912 100644
--- a/app-text/xmlto/xmlto-0.0.28-r4.ebuild
+++ b/app-text/xmlto/xmlto-0.0.28-r4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="latex text"
 
 RDEPEND="app-text/docbook-xsl-stylesheets



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

2021-03-31 Thread Sergei Trofimovich
commit: e7f64d4e89c2e9c4137d6364985f069d44aa1eaa
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 15:06:10 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7f64d4e

dev-libs/nss-pem: stable 1.0.7 for hppa, bug #778941

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

 dev-libs/nss-pem/nss-pem-1.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/nss-pem/nss-pem-1.0.7.ebuild 
b/dev-libs/nss-pem/nss-pem-1.0.7.ebuild
index 54835bc0480..08a1f04cb08 100644
--- a/dev-libs/nss-pem/nss-pem-1.0.7.ebuild
+++ b/dev-libs/nss-pem/nss-pem-1.0.7.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/kdudka/${PN}/releases/download/${P}/${P}.tar.xz";
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~x64-solaris"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~x64-solaris"
 IUSE=""
 
 BDEPEND=" >=dev-libs/nss-3.50-r1 "



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

2021-03-31 Thread Sergei Trofimovich
commit: cdfda5e22df4785ef692ef196b218e4daccfcbe3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 14:59:49 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdfda5e2

sys-apps/pciutils: stable 3.7.0 for sparc, bug #774660

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

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

diff --git a/sys-apps/pciutils/pciutils-3.7.0.ebuild 
b/sys-apps/pciutils/pciutils-3.7.0.ebuild
index 2dbe46e68fa..36b179d35a6 100644
--- a/sys-apps/pciutils/pciutils-3.7.0.ebuild
+++ b/sys-apps/pciutils/pciutils-3.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mj.ucw.cz/download/linux/pci/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="dns +kmod static-libs +udev zlib"
 
 # Have the sub-libs in RDEPEND with [static-libs] since, logically,



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

2021-03-31 Thread Sergei Trofimovich
commit: 0056162b5869f4a03b3295ac0e8fe23fbdda19e1
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 15:05:08 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0056162b

dev-libs/nss: stable 3.63 for hppa, bug #778941

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

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

diff --git a/dev-libs/nss/nss-3.63.ebuild b/dev-libs/nss/nss-3.63.ebuild
index 685431a7f4c..026fd9ebc50 100644
--- a/dev-libs/nss/nss-3.63.ebuild
+++ b/dev-libs/nss/nss-3.63.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/$
 
 LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
 IUSE="cacert utils"
 # pkg-config called by nss-config -> virtual/pkgconfig in RDEPEND
 RDEPEND="



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

2021-03-31 Thread Sergei Trofimovich
commit: dcba2c9456ab669c10231c2459b8c4b0c1cfcc79
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 15:00:55 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcba2c94

x11-libs/tslib: stable 1.22 for sparc, bug #775539

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

 x11-libs/tslib/tslib-1.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/tslib/tslib-1.22.ebuild b/x11-libs/tslib/tslib-1.22.ebuild
index 7200aa67332..b3e2cb6092d 100644
--- a/x11-libs/tslib/tslib-1.22.ebuild
+++ b/x11-libs/tslib/tslib-1.22.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libts/tslib/releases/download/${PV}/${P}.tar.xz";
 
 LICENSE="LGPL-2 uinput? ( GPL-2+ )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86"
 IUSE="evdev sdl uinput"
 
 BDEPEND="



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

2021-03-31 Thread Sergei Trofimovich
commit: 58fbe5f088acdac4a92abc61bf4246980cc0f143
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 31 15:01:37 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 31 15:25:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58fbe5f0

net-libs/libnetfilter_conntrack: stable 1.0.8 for sparc, bug #773307

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

 net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild 
b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild
index 50c6afd18e5..3360618a1db 100644
--- a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild
+++ b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.8.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="static-libs"
 
 RDEPEND="



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

2021-03-31 Thread Lars Wendler
commit: fa971629bfa451716857f29d289a5a77e8b30fbb
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 15:02:50 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 15:03:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa971629

sys-apps/help2man: Removed old

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

 sys-apps/help2man/Manifest   |  1 -
 sys-apps/help2man/help2man-1.48.1.ebuild | 41 
 2 files changed, 42 deletions(-)

diff --git a/sys-apps/help2man/Manifest b/sys-apps/help2man/Manifest
index c4064c0dbf6..e41b1ef072e 100644
--- a/sys-apps/help2man/Manifest
+++ b/sys-apps/help2man/Manifest
@@ -1,4 +1,3 @@
 DIST help2man-1.47.17.tar.xz 211476 BLAKE2B 
67b1ccd4b6b66510a2fff424663bc2051e49e93c37c7e2a2b4631f3781d3773a97fd1773f96ca5ca2ba644bcd79ae35338931eff857ce199a847cc312d778b0e
 SHA512 
185cd04aa6db6d8a4c898b61ad6a0aded7775659c7f02244b45927310eb3f8cd932fe9dd725ccac3e793aa22c656338b5d16f291f3a0420ed121681d4a4bac25
-DIST help2man-1.48.1.tar.xz 210500 BLAKE2B 
9993e1f0c1102025f80fb64fa1afe31efe982ef54c9d5ff88bed9038bcfe1f4d5624737e0953abeb252df78cf92a645bbbd8f3b44939d70a2b50494c22110991
 SHA512 
506e7a0e6571facc570df57b875d6d6b911b281b38af1831d3a058a6de658c3656e3a5be970fa3d89c053ab6eafd4853527512b48524ceeff6da60f946f1ecef
 DIST help2man-1.48.2.tar.xz 210304 BLAKE2B 
ea13932ae4d181be6f08720f402e4fdedfd0b88eb9c2f3b6201a2c0893846ea5fb777423f010551c375758deb81f564128b4ebdef04f6a54eb6ba50e1311c351
 SHA512 
ddd3bde5b9b0e84e21cc03dec713469562b02aac7f4b465fbf18844fc9534e8975ec41f44474fcf1b06816eb9b4e0578eb974a6c9712b6f099d7be813f6d7528
 DIST help2man-1.48.3.tar.xz 211504 BLAKE2B 
407cc87b1238242c202d37c0c4cd394e0efba95759b86a88026aef7c05d6a097d1946614547ebfab45f7fe0c1ddd057724234629246d32e94862c3d633b78c31
 SHA512 
e000e7380604c0986b14cb64b852d55eff48595884bddd389e876056dde6ce72b37aa16d92230e6f8f6e128003b819954bae4aa90933a58b51d3665d3c0ba356

diff --git a/sys-apps/help2man/help2man-1.48.1.ebuild 
b/sys-apps/help2man/help2man-1.48.1.ebuild
deleted file mode 100644
index 2f5c10989e9..000
--- a/sys-apps/help2man/help2man-1.48.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="GNU utility to convert program --help output to a man page"
-HOMEPAGE="https://www.gnu.org/software/help2man/";
-SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="nls"
-
-RDEPEND="dev-lang/perl
-   nls? ( dev-perl/Locale-gettext )"
-DEPEND="${RDEPEND}"
-
-DOCS=( debian/changelog NEWS README THANKS ) #385753
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.46.1-linguas.patch
-)
-
-src_prepare() {
-   if [[ ${CHOST} == *-darwin* ]] ; then
-   sed -i \
-   -e 's/-shared/-bundle/' \
-   Makefile.in || die
-   fi
-   default
-}
-
-src_configure() {
-   # Disable gettext requirement as the release includes the gmo files 
#555018
-   local myeconfargs=(
-   ac_cv_path_MSGFMT=$(type -P false)
-   $(use_enable nls)
-   )
-   econf "${myeconfargs[@]}"
-}



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

2021-03-31 Thread Lars Wendler
commit: 8fe27aa36a27ec17043a8975e5776feee3e030f7
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 15:02:33 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 15:03:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe27aa3

sys-apps/help2man: Bump to version 1.48.3

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

 sys-apps/help2man/Manifest   |  1 +
 sys-apps/help2man/help2man-1.48.3.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/sys-apps/help2man/Manifest b/sys-apps/help2man/Manifest
index 79054124097..c4064c0dbf6 100644
--- a/sys-apps/help2man/Manifest
+++ b/sys-apps/help2man/Manifest
@@ -1,3 +1,4 @@
 DIST help2man-1.47.17.tar.xz 211476 BLAKE2B 
67b1ccd4b6b66510a2fff424663bc2051e49e93c37c7e2a2b4631f3781d3773a97fd1773f96ca5ca2ba644bcd79ae35338931eff857ce199a847cc312d778b0e
 SHA512 
185cd04aa6db6d8a4c898b61ad6a0aded7775659c7f02244b45927310eb3f8cd932fe9dd725ccac3e793aa22c656338b5d16f291f3a0420ed121681d4a4bac25
 DIST help2man-1.48.1.tar.xz 210500 BLAKE2B 
9993e1f0c1102025f80fb64fa1afe31efe982ef54c9d5ff88bed9038bcfe1f4d5624737e0953abeb252df78cf92a645bbbd8f3b44939d70a2b50494c22110991
 SHA512 
506e7a0e6571facc570df57b875d6d6b911b281b38af1831d3a058a6de658c3656e3a5be970fa3d89c053ab6eafd4853527512b48524ceeff6da60f946f1ecef
 DIST help2man-1.48.2.tar.xz 210304 BLAKE2B 
ea13932ae4d181be6f08720f402e4fdedfd0b88eb9c2f3b6201a2c0893846ea5fb777423f010551c375758deb81f564128b4ebdef04f6a54eb6ba50e1311c351
 SHA512 
ddd3bde5b9b0e84e21cc03dec713469562b02aac7f4b465fbf18844fc9534e8975ec41f44474fcf1b06816eb9b4e0578eb974a6c9712b6f099d7be813f6d7528
+DIST help2man-1.48.3.tar.xz 211504 BLAKE2B 
407cc87b1238242c202d37c0c4cd394e0efba95759b86a88026aef7c05d6a097d1946614547ebfab45f7fe0c1ddd057724234629246d32e94862c3d633b78c31
 SHA512 
e000e7380604c0986b14cb64b852d55eff48595884bddd389e876056dde6ce72b37aa16d92230e6f8f6e128003b819954bae4aa90933a58b51d3665d3c0ba356

diff --git a/sys-apps/help2man/help2man-1.48.3.ebuild 
b/sys-apps/help2man/help2man-1.48.3.ebuild
new file mode 100644
index 000..2f5c10989e9
--- /dev/null
+++ b/sys-apps/help2man/help2man-1.48.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="GNU utility to convert program --help output to a man page"
+HOMEPAGE="https://www.gnu.org/software/help2man/";
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="nls"
+
+RDEPEND="dev-lang/perl
+   nls? ( dev-perl/Locale-gettext )"
+DEPEND="${RDEPEND}"
+
+DOCS=( debian/changelog NEWS README THANKS ) #385753
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.46.1-linguas.patch
+)
+
+src_prepare() {
+   if [[ ${CHOST} == *-darwin* ]] ; then
+   sed -i \
+   -e 's/-shared/-bundle/' \
+   Makefile.in || die
+   fi
+   default
+}
+
+src_configure() {
+   # Disable gettext requirement as the release includes the gmo files 
#555018
+   local myeconfargs=(
+   ac_cv_path_MSGFMT=$(type -P false)
+   $(use_enable nls)
+   )
+   econf "${myeconfargs[@]}"
+}



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

2021-03-31 Thread Mike Gilbert
commit: b6c1c13329d49b73611f6da80f95a09f42f07541
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 31 14:28:56 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 31 14:28:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6c1c133

sys-apps/systemd: add 248, drop 248_rc4-r1

Signed-off-by: Mike Gilbert  gentoo.org>

 sys-apps/systemd/Manifest  | 2 +-
 sys-apps/systemd/{systemd-248_rc4-r1.ebuild => systemd-248.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/systemd/Manifest b/sys-apps/systemd/Manifest
index d632391a39a..ac0a6b7c910 100644
--- a/sys-apps/systemd/Manifest
+++ b/sys-apps/systemd/Manifest
@@ -1,4 +1,4 @@
 DIST systemd-246.tar.gz 9534036 BLAKE2B 
71b72abcd4d066d35d45d9835d41bec8faa9a7eddc80b48fe7073223f07d32f78a8442c52dc0800940f9750d9c5502123a633738981d797cf610d85df2035bf0
 SHA512 
7103f7da53f7ced3b5543c238f23bd11c82af8e37166c1720a90576b6b431b4329320c78726166c65a9f5e101dd465c0a86dd13c586c4e55e608a6273d8f324f
-DIST systemd-248-rc4.tar.gz 10288647 BLAKE2B 
350e13570b79d149cd9e0c92fcc2164f9ecca44e467d70c75d45c98ca4e772be585dac22e830278e71edda4196f732023d2f2245cfe442769cf3068061a5980a
 SHA512 
022e8aabdc84c45ea06928c7b373c13f99d78fd808d9c07d3cd79dae5a2356f70d012eafbc749a588ddfcc2b1d0155f65f33ee240c4f15190d16f784803ffeac
+DIST systemd-248.tar.gz 10306883 BLAKE2B 
3cb25d6101136a5f57e841d3f464f0d7649f6c1cb190b25e4dbf0a8f2be075d04a3cbe92e2fee5bb6a03b73bd8195d8c7b691661b39b7850547d512219cc40af
 SHA512 
486f6ac6c2897a2aac97a59306091a03fd50768340407401e1f088ea5b21c67dae726bff4cbe53cec6b89a8f0ee72205b340165a4fe3a3c16cff6d176506c6e0
 DIST systemd-stable-246.6.tar.gz 9545237 BLAKE2B 
5290736b30ca1a3188335a74d49b4f3e8b48007d9563efac1985ea6428a8b8fd6cad7ae87c35e13a32f851ebd27821829738274d35cfbff9340750bd3b086621
 SHA512 
1936b291d9831cf61f800fe718a4c2c2fe9b2a11fd817fe32bd48da2087a675dfc91013209a3478ea52e8ada593300ed906e248b8081dcf9141bf1cc17483ea9
 DIST systemd-stable-247.2.tar.gz 9890845 BLAKE2B 
5363f429f4e629b9a05248b77f7c102da37e23c5678e14621ca67edeea59d7995064d037f04eb0ce57dd17a1b3a40a04e00619f77dbde82a61aabbc02f5bc412
 SHA512 
220739bedb7ccbb35d9d2ff441a52e0615fbe80da5141f7e0420d469f4d66d3604ea72ce70c3deaa2afa5a32b3c7eec4340738337c96891b471e23ed43cd6a82

diff --git a/sys-apps/systemd/systemd-248_rc4-r1.ebuild 
b/sys-apps/systemd/systemd-248.ebuild
similarity index 100%
rename from sys-apps/systemd/systemd-248_rc4-r1.ebuild
rename to sys-apps/systemd/systemd-248.ebuild



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

2021-03-31 Thread Agostino Sarubbo
commit: 6f094022336a93f8e348931323b2c30beda7693a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:48 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f094022

dev-libs/nettle: s390 stable wrt bug #777615

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/nettle/nettle-3.7.2.ebuild 
b/dev-libs/nettle/nettle-3.7.2.ebuild
index 3ab22392b65..49360f415d2 100644
--- a/dev-libs/nettle/nettle-3.7.2.ebuild
+++ b/dev-libs/nettle/nettle-3.7.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/8-6" # subslot = libnettle - libhogweed soname version
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+asm doc +gmp static-libs test cpu_flags_x86_aes cpu_flags_arm_neon 
cpu_flags_x86_sha"
 RESTRICT="!test? ( test )"
 



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

2021-03-31 Thread Agostino Sarubbo
commit: d5f021e498c3e767674340befe87a6198e18c7a5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:08:13 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f021e4

sys-process/procps: s390 stable wrt bug #778935

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-process/procps/procps-3.3.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/procps/procps-3.3.17.ebuild 
b/sys-process/procps/procps-3.3.17.ebuild
index 2c987f6efbd..db59e397ad2 100644
--- a/sys-process/procps/procps-3.3.17.ebuild
+++ b/sys-process/procps/procps-3.3.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0/8" # libprocps.so
-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"
 IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test 
unicode"
 RESTRICT="!test? ( test )"
 



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

2021-03-31 Thread Agostino Sarubbo
commit: 03489ee07dcc614e5892bad112a92da66c2b7d43
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:08:09 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03489ee0

app-arch/rpm: s390 stable wrt bug #778500

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-arch/rpm/rpm-4.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/rpm/rpm-4.16.0.ebuild b/app-arch/rpm/rpm-4.16.0.ebuild
index 1742df61ac5..444bf99227f 100644
--- a/app-arch/rpm/rpm-4.16.0.ebuild
+++ b/app-arch/rpm/rpm-4.16.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 
1-2).x/${P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sparc x86 
~amd64-linux ~x86-linux"
 
 # Tests are broken. See bug 657500
 RESTRICT="test"



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

2021-03-31 Thread Agostino Sarubbo
commit: 0a2e6cb56f87b744b54a98394ad1a25ebd5e7f29
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:52 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2e6cb5

dev-db/sqlite: s390 stable wrt bug #777990

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-db/sqlite/sqlite-3.34.1.ebuild 
b/dev-db/sqlite/sqlite-3.34.1.ebuild
index 623578707fa..3da495bc28e 100644
--- a/dev-db/sqlite/sqlite-3.34.1.ebuild
+++ b/dev-db/sqlite/sqlite-3.34.1.ebuild
@@ -22,7 +22,7 @@ fi
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug doc icu +readline secure-delete static-libs tcl test tools"
 if [[ "${PV}" == "" ]]; then
PROPERTIES="live"



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

2021-03-31 Thread Agostino Sarubbo
commit: 25b46153d6710a3f3395a2ae390017edfacd8d48
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:39 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25b46153

sys-apps/pciutils: s390 stable wrt bug #774660

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-apps/pciutils/pciutils-3.7.0.ebuild 
b/sys-apps/pciutils/pciutils-3.7.0.ebuild
index 25dcf5789f8..2dbe46e68fa 100644
--- a/sys-apps/pciutils/pciutils-3.7.0.ebuild
+++ b/sys-apps/pciutils/pciutils-3.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mj.ucw.cz/download/linux/pci/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="dns +kmod static-libs +udev zlib"
 
 # Have the sub-libs in RDEPEND with [static-libs] since, logically,



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

2021-03-31 Thread Agostino Sarubbo
commit: d3a9ae7fce858a0ebb004096bb9ab445176eda71
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:43 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a9ae7f

x11-libs/tslib: s390 stable wrt bug #775539

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-libs/tslib/tslib-1.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/tslib/tslib-1.22.ebuild b/x11-libs/tslib/tslib-1.22.ebuild
index 47e35120b19..7200aa67332 100644
--- a/x11-libs/tslib/tslib-1.22.ebuild
+++ b/x11-libs/tslib/tslib-1.22.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libts/tslib/releases/download/${PV}/${P}.tar.xz";
 
 LICENSE="LGPL-2 uinput? ( GPL-2+ )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sparc 
x86"
 IUSE="evdev sdl uinput"
 
 BDEPEND="



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

2021-03-31 Thread Agostino Sarubbo
commit: 285f591f20c3bef1a11d0a1cac7bbcca25d2211b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:35 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=285f591f

net-misc/openssh: s390 stable wrt bug #774090

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/openssh/openssh-8.5_p1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openssh/openssh-8.5_p1-r1.ebuild 
b/net-misc/openssh/openssh-8.5_p1-r1.ebuild
index 8f15f44dc2f..96ef233d5dd 100644
--- a/net-misc/openssh/openssh-8.5_p1-r1.ebuild
+++ b/net-misc/openssh/openssh-8.5_p1-r1.ebuild
@@ -33,7 +33,7 @@ S="${WORKDIR}/${PARCH}"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 # Probably want to drop ssl defaulting to on in a future version.
 IUSE="abi_mips_n32 audit bindist debug hpn kerberos kernel_linux ldns libedit 
libressl livecd pam +pie +scp sctp security-key selinux +ssl static test X X509 
xmss"
 



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

2021-03-31 Thread Agostino Sarubbo
commit: fd678efa30ac45fa1685b6c24ffaaeabed3dd477
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:08:02 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd678efa

sys-apps/portage: s390 stable wrt bug #778185

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-apps/portage/portage-3.0.17-r2.ebuild 
b/sys-apps/portage/portage-3.0.17-r2.ebuild
index c15b19433d3..560c768fea1 100644
--- a/sys-apps/portage/portage-3.0.17-r2.ebuild
+++ b/sys-apps/portage/portage-3.0.17-r2.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage";
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86"
 SLOT="0"
 IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux test xattr"
 RESTRICT="!test? ( test )"



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

2021-03-31 Thread Agostino Sarubbo
commit: 0fb76d57e9abdc8e92552c3bee20333b2c2fb39b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:20 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fb76d57

net-misc/htpdate: s390 stable wrt bug #757204

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/net-misc/htpdate/htpdate-1.2.2.ebuild 
b/net-misc/htpdate/htpdate-1.2.2.ebuild
index 4869d4ad827..fd145b43e0f 100644
--- a/net-misc/htpdate/htpdate-1.2.2.ebuild
+++ b/net-misc/htpdate/htpdate-1.2.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.vervest.org/htp/archive/c/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ~ppc64 ~s390 x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ~ppc64 s390 x86 ~amd64-linux 
~x86-linux"
 
 DEPEND=""
 RDEPEND=""



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

2021-03-31 Thread Agostino Sarubbo
commit: cfc0bae547581b461877284a271aa6e0eda04a08
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:28 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfc0bae5

dev-libs/nss: s390 stable wrt bug #778941

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/nss/nss-3.63.ebuild b/dev-libs/nss/nss-3.63.ebuild
index 5aa4ded66b4..685431a7f4c 100644
--- a/dev-libs/nss/nss-3.63.ebuild
+++ b/dev-libs/nss/nss-3.63.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/$
 
 LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
 IUSE="cacert utils"
 # pkg-config called by nss-config -> virtual/pkgconfig in RDEPEND
 RDEPEND="



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

2021-03-31 Thread Agostino Sarubbo
commit: 4aac9a5e2524fb8f4b9633e589758e888e619f8b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:26 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aac9a5e

dev-libs/nspr: s390 stable wrt bug #778941

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/nspr/nspr-4.30.ebuild b/dev-libs/nspr/nspr-4.30.ebuild
index b2616298c7b..dedbf8f7f26 100644
--- a/dev-libs/nspr/nspr-4.30.ebuild
+++ b/dev-libs/nspr/nspr-4.30.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz";
 
 LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
 IUSE="debug elibc_musl"
 
 MULTILIB_CHOST_TOOLS=(



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

2021-03-31 Thread Agostino Sarubbo
commit: 242ec0cff8c30039e497c19c26aa10ff03fd8b7f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:07:31 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:08:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=242ec0cf

dev-libs/nss-pem: s390 stable wrt bug #778941

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-libs/nss-pem/nss-pem-1.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/nss-pem/nss-pem-1.0.7.ebuild 
b/dev-libs/nss-pem/nss-pem-1.0.7.ebuild
index 9b3f7d27546..54835bc0480 100644
--- a/dev-libs/nss-pem/nss-pem-1.0.7.ebuild
+++ b/dev-libs/nss-pem/nss-pem-1.0.7.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/kdudka/${PN}/releases/download/${P}/${P}.tar.xz";
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~x64-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~x64-solaris"
 IUSE=""
 
 BDEPEND=" >=dev-libs/nss-3.50-r1 "



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

2021-03-31 Thread Lars Wendler
commit: 9739194b9f3017af85679495544482e5d95cdf62
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 14:02:55 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 14:07:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9739194b

net-misc/htpdate: Added live ebuild for new upstream

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

 net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch | 35 ++
 net-misc/htpdate/htpdate-.ebuild  | 57 +++
 2 files changed, 92 insertions(+)

diff --git a/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch 
b/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch
new file mode 100644
index 000..fea1d85b10b
--- /dev/null
+++ b/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch
@@ -0,0 +1,35 @@
+From ea14fbcd91e5575bf16bc64b7660a6d02a855d7a Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Wed, 31 Mar 2021 15:46:38 +0200
+Subject: [PATCH] Makefile: Libraries belong into LDLIBS variable
+
+Signed-off-by: Lars Wendler 
+---
+ Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 21668a6..a531f90 100644
+--- a/Makefile
 b/Makefile
+@@ -8,7 +8,7 @@ PKG_CONFIG ?= pkg-config
+ 
+ ifdef ENABLE_HTTPS
+ CFLAGS += -DENABLE_HTTPS
+-LDFLAGS += $(shell $(PKG_CONFIG) --libs openssl)
++LDLIBS = $(shell $(PKG_CONFIG) --libs openssl)
+ endif
+ 
+ INSTALL = install -c
+@@ -16,7 +16,7 @@ INSTALL = install -c
+ all: htpdate
+ 
+ htpdate: htpdate.c
+-  $(CC) $(CFLAGS) $(CPPFLAGS) -o htpdate htpdate.c $(LDFLAGS)
++  $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o htpdate htpdate.c $(LDLIBS)
+ 
+ install: all
+   mkdir -p $(bindir)
+-- 
+2.31.1
+

diff --git a/net-misc/htpdate/htpdate-.ebuild 
b/net-misc/htpdate/htpdate-.ebuild
new file mode 100644
index 000..03379020927
--- /dev/null
+++ b/net-misc/htpdate/htpdate-.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic readme.gentoo-r1 toolchain-funcs
+
+DESCRIPTION="Synchronize local workstation with time offered by remote 
webservers"
+HOMEPAGE="https://github.com/angeloc/htpdate";
+if [[ "${PV}" == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/angeloc/htpdate.git";
+else
+   
SRC_URI="https://github.com/angeloc/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86 
~amd64-linux ~x86-linux"
+fi
+IUSE="+ssl"
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="ssl? ( dev-libs/openssl:0= )"
+RDEPEND="${DEPEND}"
+BDEPEND="ssl? ( virtual/pkgconfig )"
+
+DOC_CONTENTS="If you would like to run htpdate as a daemon, set
+appropriate http servers in /etc/conf.d/htpdate!"
+
+PATCHES=( "${FILESDIR}/${PN}-1.2.6-ldlibs.patch" )
+
+src_prepare() {
+   default
+
+   # Use more standard adjtimex() to fix uClibc builds.
+   sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die
+   # Don't compress man pages by default
+   sed '/gzip/d' -i Makefile || die
+}
+
+src_compile() {
+   if use ssl ; then
+   append-cflags -DENABLE_HTTPS
+   export PKG_CONFIG="$(tc-getPKG_CONFIG)"
+   fi
+
+   emake CFLAGS="-Wall ${CFLAGS}" CC="$(tc-getCC)" \
+   $(usex ssl 'ENABLE_HTTPS=1' '')
+}
+
+src_install() {
+   emake DESTDIR="${D}" bindir='$(prefix)/sbin' install
+   dodoc README.md Changelog
+
+   newconfd "${FILESDIR}"/htpdate.conf htpdate
+   newinitd "${FILESDIR}"/htpdate.init-r1 htpdate
+
+   readme.gentoo_create_doc
+}



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

2021-03-31 Thread Lars Wendler
commit: 008d0f8ba86ba9a26c0d714afe8a59b64c924c4c
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 14:06:06 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 14:07:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=008d0f8b

net-misc/htpdate: Bump to version 1.2.6

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

 net-misc/htpdate/Manifest |  1 +
 net-misc/htpdate/htpdate-1.2.6.ebuild | 57 +++
 2 files changed, 58 insertions(+)

diff --git a/net-misc/htpdate/Manifest b/net-misc/htpdate/Manifest
index 376fc113e47..30cab06962d 100644
--- a/net-misc/htpdate/Manifest
+++ b/net-misc/htpdate/Manifest
@@ -1,2 +1,3 @@
 DIST htpdate-1.2.0.tar.gz 13618 BLAKE2B 
a94f08738d08c0caacc876d2e25e1dba43bbe371b0a31f957a1d5ff522b0ae5bd7bf5abcde63802843b1c32799e4cc38bacda657a9efb3a56a1eaccdb4f8c35c
 SHA512 
5447d54a54038cc3c33f7877410ae42022e01eb10a93bd79fe4937452a823c65c6bdb743213bc77a8506128d5b384e26812f1291a0ffa1aeafde0230c1b645d4
 DIST htpdate-1.2.2.tar.gz 13625 BLAKE2B 
11813def81e3cce1194120a21cf99e8ad288b0f604aab201850f03b6ca786d19792b9586c9d805aa1945bbc651e6afc5099b5c7cb6ea354473a4b3bab01397e3
 SHA512 
00d52b291004ddb3d0282aef78c5fbe5d9397dbf171a6646803ee7ba4bd0514af6089f7e48a92397dd1b0fbae5ba314f5165c9902028438e16d3516b65724de0
+DIST htpdate-1.2.6.tar.gz 15083 BLAKE2B 
913337f51fd26e811e33f195e463adc57e2512ba502f668f2429676d962623ea943bdb1d42ceddf6d35e7e8ba727b3f1300b34a8370ed661b3fa5b4b53ef1af7
 SHA512 
fe7442be5581eea0579060c02fb4ffe52151c6408d1b47afc9be049d2a8b1c8d0acd3b3481680a4b6a50f52622d47266afc0fe8dc67c5bb2a3aca2422e34f23f

diff --git a/net-misc/htpdate/htpdate-1.2.6.ebuild 
b/net-misc/htpdate/htpdate-1.2.6.ebuild
new file mode 100644
index 000..03379020927
--- /dev/null
+++ b/net-misc/htpdate/htpdate-1.2.6.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic readme.gentoo-r1 toolchain-funcs
+
+DESCRIPTION="Synchronize local workstation with time offered by remote 
webservers"
+HOMEPAGE="https://github.com/angeloc/htpdate";
+if [[ "${PV}" == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/angeloc/htpdate.git";
+else
+   
SRC_URI="https://github.com/angeloc/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86 
~amd64-linux ~x86-linux"
+fi
+IUSE="+ssl"
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="ssl? ( dev-libs/openssl:0= )"
+RDEPEND="${DEPEND}"
+BDEPEND="ssl? ( virtual/pkgconfig )"
+
+DOC_CONTENTS="If you would like to run htpdate as a daemon, set
+appropriate http servers in /etc/conf.d/htpdate!"
+
+PATCHES=( "${FILESDIR}/${PN}-1.2.6-ldlibs.patch" )
+
+src_prepare() {
+   default
+
+   # Use more standard adjtimex() to fix uClibc builds.
+   sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die
+   # Don't compress man pages by default
+   sed '/gzip/d' -i Makefile || die
+}
+
+src_compile() {
+   if use ssl ; then
+   append-cflags -DENABLE_HTTPS
+   export PKG_CONFIG="$(tc-getPKG_CONFIG)"
+   fi
+
+   emake CFLAGS="-Wall ${CFLAGS}" CC="$(tc-getCC)" \
+   $(usex ssl 'ENABLE_HTTPS=1' '')
+}
+
+src_install() {
+   emake DESTDIR="${D}" bindir='$(prefix)/sbin' install
+   dodoc README.md Changelog
+
+   newconfd "${FILESDIR}"/htpdate.conf htpdate
+   newinitd "${FILESDIR}"/htpdate.init-r1 htpdate
+
+   readme.gentoo_create_doc
+}



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

2021-03-31 Thread Lars Wendler
commit: fff4cbd1d487b6160e660a76f4e020aea80029a0
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 14:07:22 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 14:07:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fff4cbd1

net-misc/htpdate: Removed old

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

 net-misc/htpdate/Manifest |  1 -
 net-misc/htpdate/htpdate-1.2.0.ebuild | 42 ---
 2 files changed, 43 deletions(-)

diff --git a/net-misc/htpdate/Manifest b/net-misc/htpdate/Manifest
index 30cab06962d..50340252857 100644
--- a/net-misc/htpdate/Manifest
+++ b/net-misc/htpdate/Manifest
@@ -1,3 +1,2 @@
-DIST htpdate-1.2.0.tar.gz 13618 BLAKE2B 
a94f08738d08c0caacc876d2e25e1dba43bbe371b0a31f957a1d5ff522b0ae5bd7bf5abcde63802843b1c32799e4cc38bacda657a9efb3a56a1eaccdb4f8c35c
 SHA512 
5447d54a54038cc3c33f7877410ae42022e01eb10a93bd79fe4937452a823c65c6bdb743213bc77a8506128d5b384e26812f1291a0ffa1aeafde0230c1b645d4
 DIST htpdate-1.2.2.tar.gz 13625 BLAKE2B 
11813def81e3cce1194120a21cf99e8ad288b0f604aab201850f03b6ca786d19792b9586c9d805aa1945bbc651e6afc5099b5c7cb6ea354473a4b3bab01397e3
 SHA512 
00d52b291004ddb3d0282aef78c5fbe5d9397dbf171a6646803ee7ba4bd0514af6089f7e48a92397dd1b0fbae5ba314f5165c9902028438e16d3516b65724de0
 DIST htpdate-1.2.6.tar.gz 15083 BLAKE2B 
913337f51fd26e811e33f195e463adc57e2512ba502f668f2429676d962623ea943bdb1d42ceddf6d35e7e8ba727b3f1300b34a8370ed661b3fa5b4b53ef1af7
 SHA512 
fe7442be5581eea0579060c02fb4ffe52151c6408d1b47afc9be049d2a8b1c8d0acd3b3481680a4b6a50f52622d47266afc0fe8dc67c5bb2a3aca2422e34f23f

diff --git a/net-misc/htpdate/htpdate-1.2.0.ebuild 
b/net-misc/htpdate/htpdate-1.2.0.ebuild
deleted file mode 100644
index f672908fccd..000
--- a/net-misc/htpdate/htpdate-1.2.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit readme.gentoo-r1 toolchain-funcs
-
-DESCRIPTION="Synchronize local workstation with time offered by remote 
webservers"
-HOMEPAGE="http://www.vervest.org/htp/";
-SRC_URI="http://www.vervest.org/htp/archive/c/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ~ppc64 s390 x86 ~amd64-linux 
~x86-linux"
-
-DEPEND=""
-RDEPEND=""
-
-DOC_CONTENTS="If you would like to run htpdate as a daemon, set
-appropriate http servers in /etc/conf.d/htpdate!"
-
-src_prepare() {
-   default
-
-   # Use more standard adjtimex() to fix uClibc builds.
-   sed -i 's:ntp_adjtime:adjtimex:g' htpdate.[8c] || die
-}
-
-src_compile() {
-   emake CFLAGS="-Wall ${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)"
-}
-
-src_install() {
-   dosbin htpdate
-   doman htpdate.8
-   dodoc README Changelog
-
-   newconfd "${FILESDIR}"/htpdate.conf htpdate
-   newinitd "${FILESDIR}"/htpdate.init-r1 htpdate
-
-   readme.gentoo_create_doc
-}



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

2021-03-31 Thread Lars Wendler
commit: 85d668561da3029f0afd515767c0d53fd15ac7a4
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 31 14:06:28 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 31 14:07:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85d66856

net-misc/htpdate: Added upstream

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

 net-misc/htpdate/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-misc/htpdate/metadata.xml b/net-misc/htpdate/metadata.xml
index 95aa13f6c5e..42f1d8fdecf 100644
--- a/net-misc/htpdate/metadata.xml
+++ b/net-misc/htpdate/metadata.xml
@@ -5,4 +5,7 @@
polynomia...@gentoo.org
Lars Wendler

+   
+   angeloc/htpdate
+   
 



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

2021-03-31 Thread Agostino Sarubbo
commit: 6c59aad48623949dea11dcb6866f0aa2e97ae1be
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:05:34 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:05:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c59aad4

sys-apps/pciutils: ppc64 stable wrt bug #774660

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-apps/pciutils/pciutils-3.7.0.ebuild 
b/sys-apps/pciutils/pciutils-3.7.0.ebuild
index 94b0863ca10..25dcf5789f8 100644
--- a/sys-apps/pciutils/pciutils-3.7.0.ebuild
+++ b/sys-apps/pciutils/pciutils-3.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mj.ucw.cz/download/linux/pci/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dns +kmod static-libs +udev zlib"
 
 # Have the sub-libs in RDEPEND with [static-libs] since, logically,



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

2021-03-31 Thread Agostino Sarubbo
commit: b090a28eb0640a3f41e3c5c454721f182931822a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 14:05:40 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 14:05:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b090a28e

sys-process/procps: ppc64 stable wrt bug #778935

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-process/procps/procps-3.3.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/procps/procps-3.3.17.ebuild 
b/sys-process/procps/procps-3.3.17.ebuild
index f1f9b4ad2a1..2c987f6efbd 100644
--- a/sys-process/procps/procps-3.3.17.ebuild
+++ b/sys-process/procps/procps-3.3.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0/8" # libprocps.so
-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"
 IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test 
unicode"
 RESTRICT="!test? ( test )"
 



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

2021-03-31 Thread Agostino Sarubbo
commit: 73d016a087b75de9499c0185ad650ba9611ed300
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 13:53:35 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 13:53:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d016a0

sys-process/procps: ppc stable wrt bug #778935

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-process/procps/procps-3.3.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/procps/procps-3.3.17.ebuild 
b/sys-process/procps/procps-3.3.17.ebuild
index 8e0e2d6f85b..f1f9b4ad2a1 100644
--- a/sys-process/procps/procps-3.3.17.ebuild
+++ b/sys-process/procps/procps-3.3.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}-ng/${PN}-ng-${PV}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0/8" # libprocps.so
-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"
 IUSE="elogind +kill modern-top +ncurses nls selinux static-libs systemd test 
unicode"
 RESTRICT="!test? ( test )"
 



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

2021-03-31 Thread Agostino Sarubbo
commit: 84356f5c660622d4d1b585ede5b5d8d669e58633
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 13:53:23 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 13:53:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84356f5c

net-misc/openssh: ppc stable wrt bug #774090

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/openssh/openssh-8.5_p1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openssh/openssh-8.5_p1-r1.ebuild 
b/net-misc/openssh/openssh-8.5_p1-r1.ebuild
index 48c99037369..8f15f44dc2f 100644
--- a/net-misc/openssh/openssh-8.5_p1-r1.ebuild
+++ b/net-misc/openssh/openssh-8.5_p1-r1.ebuild
@@ -33,7 +33,7 @@ S="${WORKDIR}/${PARCH}"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 # Probably want to drop ssl defaulting to on in a future version.
 IUSE="abi_mips_n32 audit bindist debug hpn kerberos kernel_linux ldns libedit 
libressl livecd pam +pie +scp sctp security-key selinux +ssl static test X X509 
xmss"
 



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

2021-03-31 Thread Agostino Sarubbo
commit: e84b84c5fb125516a6d85920ecab5e5b4b133fff
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 13:53:30 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 13:53:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e84b84c5

sys-apps/pciutils: ppc stable wrt bug #774660

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-apps/pciutils/pciutils-3.7.0.ebuild 
b/sys-apps/pciutils/pciutils-3.7.0.ebuild
index 40d177a4c26..94b0863ca10 100644
--- a/sys-apps/pciutils/pciutils-3.7.0.ebuild
+++ b/sys-apps/pciutils/pciutils-3.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mj.ucw.cz/download/linux/pci/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dns +kmod static-libs +udev zlib"
 
 # Have the sub-libs in RDEPEND with [static-libs] since, logically,



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

2021-03-31 Thread Agostino Sarubbo
commit: b0ca2b4a1fee74116a7c93ef8a6b43ca742d91df
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 13:53:14 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 13:53:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0ca2b4a

dev-python/zstandard: ppc stable wrt bug #773898

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/zstandard/zstandard-0.15.2-r1.ebuild 
b/dev-python/zstandard/zstandard-0.15.2-r1.ebuild
index 5d62182cb8c..569cf7793fd 100644
--- a/dev-python/zstandard/zstandard-0.15.2-r1.ebuild
+++ b/dev-python/zstandard/zstandard-0.15.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 DEPEND="
app-arch/zstd:="



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

2021-03-31 Thread Agostino Sarubbo
commit: 5bac88970d5fc700fa9a358dc98c04f5a605dde3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 31 13:50:47 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 31 13:50:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bac8897

dev-lang/php: amd64 stable wrt bug #779418

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

 dev-lang/php/php-7.4.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/php/php-7.4.16.ebuild b/dev-lang/php/php-7.4.16.ebuild
index d5845afe985..a3157779229 100644
--- a/dev-lang/php/php-7.4.16.ebuild
+++ b/dev-lang/php/php-7.4.16.ebuild
@@ -21,7 +21,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 



  1   2   >