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

2020-06-28 Thread Robin H. Johnson
commit: 8fb2b4ce43a4f356ff6db728fde15c0a36e34642
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Jun 29 05:37:10 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Jun 29 05:37:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb2b4ce

sys-apps/x86info: bump for py3

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

 sys-apps/x86info/Manifest  |  1 +
 sys-apps/x86info/x86info-1.30-r1.ebuild| 72 +
 sys-apps/x86info/x86info-1.30_p20190617.ebuild | 73 ++
 3 files changed, 146 insertions(+)

diff --git a/sys-apps/x86info/Manifest b/sys-apps/x86info/Manifest
index bcc650214b0..3fa8bb65f0e 100644
--- a/sys-apps/x86info/Manifest
+++ b/sys-apps/x86info/Manifest
@@ -1 +1,2 @@
 DIST x86info-1.30.tgz 95727 BLAKE2B 
6e9e345c6b4d05d4a137b898f1cc8a31e901b25b8a3822c06c103298e2ee60c6fada8e1fc314a5fcec04618b9a8a9ce05a4e631dbf9f03a24c5349f13d1e2301
 SHA512 
0b4c9f1be83a737aa26ec14d239d09465608fcf542766ef5b8634d2fe08f75857c0d2bd1969d971ab4b0d55cd3aa3e4e5f58b3b2865865aa68fd751377672e5f
+DIST x86info-1.30_p20190617.tar.gz 85913 BLAKE2B 
e19e5fd797617499c64e75522f0fd030beaa335a6ba9afd29cbb79fd67313a2e57236d1ad8817bf91f0131faf667ba88ac0945ff25301ba8806912979f094ea3
 SHA512 
352e2b00578dc54b8d5ee32f09f327ab6a23e6ab4743882ca78a5a5ec1a04ceed8780228ffbda34f84ebb02c7cb850002a686929726feac90c8083044f479bd6

diff --git a/sys-apps/x86info/x86info-1.30-r1.ebuild 
b/sys-apps/x86info/x86info-1.30-r1.ebuild
new file mode 100644
index 000..5a09ba8a8e7
--- /dev/null
+++ b/sys-apps/x86info/x86info-1.30-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4..8} )
+
+inherit flag-o-matic linux-info python-any-r1 toolchain-funcs
+
+DESCRIPTION="Dave Jones' handy, informative x86 CPU diagnostic utility"
+HOMEPAGE="http://www.codemonkey.org.uk/projects/x86info/;
+SRC_URI="http://www.codemonkey.org.uk/projects/x86info/${P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+
+RDEPEND="sys-apps/pciutils:="
+DEPEND="
+   ${PYTHON_DEPS}
+   ${RDEPEND}"
+
+CONFIG_CHECK="~MTRR ~X86_CPUID"
+
+PATCHES=(
+   "${FILESDIR}"/1.21-pic.patch
+   "${FILESDIR}"/${PN}-1.24-pic.patch #270388
+   "${FILESDIR}"/${PN}-1.29-parallel-make-cleanup.patch
+   "${FILESDIR}"/${PN}-1.30-fix-build-system.patch
+)
+
+pkg_setup() {
+   linux-info_pkg_setup
+   python-any-r1_pkg_setup
+}
+
+src_configure() {
+   # These flags taken from the 1.29 ebuild
+   append-flags -Wall -Wshadow -Wextra -Wmissing-declarations \
+   -Wdeclaration-after-statement -Wredundant-decls
+   append-ldflags -Wl,-z,relro,-z,now
+
+   tc-export CC
+}
+
+src_compile() {
+   emake x86info lsmsr
+}
+
+src_install() {
+   dobin x86info lsmsr
+
+   insinto /etc/modprobe.d
+   newins "${FILESDIR}"/x86info-modules.conf-rc x86info.conf
+
+   einstalldocs
+   doman x86info.1 lsmsr.8
+
+   dodoc -r results
+}
+
+pkg_preinst() {
+   if [[ -a "${EROOT}"/etc/modules.d/x86info ]] && [[ ! -a 
"${EROOT}"/etc/modprobe.d/x86info ]]; then
+   elog "Moving x86info from /etc/modules.d/ to /etc/modprobe.d/"
+   mv "${EROOT}"/etc/{modules,modprobe}.d/x86info
+   fi
+   if [[ -a "${EROOT}"/etc/modprobe.d/x86info ]] && [[ ! -a 
"${EROOT}"/etc/modprobe.d/x86info.conf ]]; then
+   elog "Adding .conf suffix to x86info in /etc/modprobe.d/"
+   mv "${EROOT}"/etc/modprobe.d/x86info{,.conf}
+   fi
+}

diff --git a/sys-apps/x86info/x86info-1.30_p20190617.ebuild 
b/sys-apps/x86info/x86info-1.30_p20190617.ebuild
new file mode 100644
index 000..d8a3b48dfad
--- /dev/null
+++ b/sys-apps/x86info/x86info-1.30_p20190617.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4..8} )
+
+inherit flag-o-matic linux-info python-any-r1 toolchain-funcs
+
+DESCRIPTION="Dave Jones' handy, informative x86 CPU diagnostic utility"
+HOMEPAGE="http://www.codemonkey.org.uk/projects/x86info/;
+# Upstream stopped versioned releases entirely
+COMMIT="8ea5ed19fae1d209eba9257171a10f7afd474618"
+SRC_URI="https://github.com/kernelslacker/x86info/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+
+RDEPEND="sys-apps/pciutils:="
+DEPEND="
+   ${PYTHON_DEPS}
+   ${RDEPEND}"
+
+CONFIG_CHECK="~MTRR ~X86_CPUID"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+PATCHES=(
+   #"${FILESDIR}"/1.21-pic.patch
+   "${FILESDIR}"/${PN}-1.24-pic.patch #270388
+   #"${FILESDIR}"/${PN}-1.29-parallel-make-cleanup.patch
+   #"${FILESDIR}"/${PN}-1.30-fix-build-system.patch
+)
+
+pkg_setup() {
+   linux-info_pkg_setup
+   python-any-r1_pkg_setup

[gentoo-commits] repo/gentoo:master commit in: net-nds/nsscache/

2020-06-28 Thread Robin H. Johnson
commit: 8e7e9de1c45c99f11fc19f47fa2ecd754900e837
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Jun 29 05:12:43 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Jun 29 05:37:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e7e9de1

net-nds/nsscache: bump for py3

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

 net-nds/nsscache/Manifest |  1 +
 net-nds/nsscache/metadata.xml |  1 +
 net-nds/nsscache/nsscache-0.39.ebuild | 59 +++
 3 files changed, 61 insertions(+)

diff --git a/net-nds/nsscache/Manifest b/net-nds/nsscache/Manifest
index ea087fb9106..c51df7a7c19 100644
--- a/net-nds/nsscache/Manifest
+++ b/net-nds/nsscache/Manifest
@@ -3,3 +3,4 @@ DIST nsscache-0.30-r3-gentoo-authorized-keys-command.py 11974 
BLAKE2B 4272bab8d8
 DIST nsscache-0.30.tar.gz 109615 BLAKE2B 
1b67da7241a974a541514849643115d8e6dd0e587dbd39e1919eaca5064b6fde79678c3443246444d1b8c75c4455ad008231ee1f1a6b74511d9a38e742be2c6e
 SHA512 
22c58904eadd2e69405c42263c1c85c7b612151466386870fbea7685ab32835250a84f1acd83fca6f3289582c74df5371cbfb4f354679a302f240fd0ff334712
 DIST nsscache-0.31.tar.gz 108073 BLAKE2B 
c730786e4a273d039273f104d1458587741c5bc8b2e470d12a551765f3141aafb33df811feca432b493415e20c9abb07244b9c624e38053b95c15c5e41ba8303
 SHA512 
1be90b0217605f86d2effc6063a805fb604f535386cc9f2eb8b0244ab1293521fd1342f52e3fad98c7d95cf66db3dabf93747bf40ce5ed2bf70c8c07382001a4
 DIST nsscache-0.32.tar.gz 112333 BLAKE2B 
ac477eef53e8e9d8cdcc7a0d7b460046883aaba8836ec5d49f449aae0d4f0ea34cd10f89a98849a18e0a0b1b5d1eb4f4c99a138d6eb2bc6bc608a1cc33c28ac2
 SHA512 
c35f539ea017a328c1630031b7934c231b256d3f2198c6764954c42f36ed281432ff97667e5754692971b4f24be38887406f98718d5f49d364e1e3eebb32185f
+DIST nsscache-0.39.tar.gz 127896 BLAKE2B 
8383ca53ee5cf2f84e4485722d35598b624005bb32073696a23daa1061c0b057d26333cdee9c97cedcb99daa8c61362719d80b01b216c163a327cd4edeabeefd
 SHA512 
f93cec949302f21bc5989ab3192302a32349ee4ae98e2f05f169cca8a16a821f39857cb0fff52c7b54552828684b4723d22e44f97525a01577ab89bd159e0376

diff --git a/net-nds/nsscache/metadata.xml b/net-nds/nsscache/metadata.xml
index 2391c0ec85c..49a9b9a18f2 100644
--- a/net-nds/nsscache/metadata.xml
+++ b/net-nds/nsscache/metadata.xml
@@ -6,6 +6,7 @@


Depend on sys-auth/libnss-cache to handle 
flat files
+   Support for S3-based NSS sources


google/nsscache

diff --git a/net-nds/nsscache/nsscache-0.39.ebuild 
b/net-nds/nsscache/nsscache-0.39.ebuild
new file mode 100644
index 000..f615656a1ee
--- /dev/null
+++ b/net-nds/nsscache/nsscache-0.39.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit eutils distutils-r1
+
+DESCRIPTION="commandline tool to sync directory services to local cache"
+HOMEPAGE="https://github.com/google/nsscache;
+SCRIPT_A='nsscache-0.30-r3-gentoo-authorized-keys-command.py'
+SRC_URI="
+   https://github.com/google/nsscache/archive/version/${PV}.tar.gz -> 
${P}.tar.gz
+   https://dev.gentoo.org/~robbat2/${SCRIPT_A};
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+IUSE="nsscache s3"
+
+DEPEND="${PYTHON_DEPS}
+   dev-python/ldap3[${PYTHON_USEDEP}]
+   dev-python/pycurl[${PYTHON_USEDEP}]
+   dev-python/bsddb3[${PYTHON_USEDEP}]
+   s3? ( dev-python/boto3[${PYTHON_USEDEP}] )"
+RDEPEND="${DEPEND}
+   nsscache? ( >=sys-auth/libnss-cache-0.10 )"
+RESTRICT="test" # requires network
+S="${WORKDIR}/${PN}-version-${PV}"
+
+src_prepare() {
+   sed -i \
+   -e "/setup_requires/s,'pytest-runner',,g" \
+   -e '/tests_require/s,\[.*\],[],g' \
+   "${S}"/setup.py || die
+   sed -i \
+   -e '/test=pytest/d' \
+   "${S}"/setup.cfg || die
+   sed -i \
+   -e '/pytest/d' \
+   "${S}"/requirements.txt || die
+   distutils-r1_src_prepare
+}
+
+python_compile() {
+   distutils-r1_python_compile --verbose
+}
+
+src_install() {
+   distutils-r1_src_install
+
+   doman nsscache.1 nsscache.conf.5
+   dodoc THANKS nsscache.cron CONTRIBUTING.md README.md
+   exeinto /usr/libexec/nsscache
+   newexe "${DISTDIR}"/"${SCRIPT_A}" authorized-keys-command.py
+
+   keepdir /var/lib/nsscache
+}



[gentoo-commits] proj/musl:master commit in: sys-libs/tevent/

2020-06-28 Thread Georgy Yakovlev
commit: eeef23ded16ff6f01467b56d15111ada0443b11d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 29 05:20:19 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun 29 05:21:27 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=eeef23de

sys-libs/tevent/tevent: fix pkgconfig multilib dep

missed that one in previous commit

Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-libs/tevent/tevent-0.10.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/tevent/tevent-0.10.2.ebuild 
b/sys-libs/tevent/tevent-0.10.2.ebuild
index b0b256c..3fa4dfe 100644
--- a/sys-libs/tevent/tevent-0.10.2.ebuild
+++ b/sys-libs/tevent/tevent-0.10.2.ebuild
@@ -21,7 +21,7 @@ RDEPEND="!elibc_FreeBSD? ( 
dev-libs/libbsd[${MULTILIB_USEDEP}] )
python? ( ${PYTHON_DEPS} )"
 
 DEPEND="${RDEPEND}
-   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+   virtual/pkgconfig
elibc_glibc? (
net-libs/libtirpc[${MULTILIB_USEDEP}]
|| (



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

2020-06-28 Thread Georgy Yakovlev
commit: a5d36cc51c7f9599696029efe10e82326856576b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 29 05:11:27 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun 29 05:11:27 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=a5d36cc5

.travis.yml: update to portage 2.3.103

Signed-off-by: Georgy Yakovlev  gentoo.org>

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index f868dd1..a8a655b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ notifications:
 on_failure: always  # options: [always|never|change] default: always
 on_start: false # default: false
 env:
-- PORTAGE_VER="2.3.93"
+- PORTAGE_VER="2.3.103"
 before_install:
 - sudo apt-get -qq update
 - pip install lxml pyyaml



[gentoo-commits] proj/musl:master commit in: sys-libs/pam/, net-misc/networkmanager/

2020-06-28 Thread Georgy Yakovlev
commit: b9b551a9b87b193e7eea67032682736f5bd23c45
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 29 05:08:13 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jun 29 05:08:13 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=b9b551a9

*/*: drop multilib from virtual/pkgconfig atoms

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

 net-misc/networkmanager/networkmanager-1.18.6.ebuild | 2 +-
 sys-libs/pam/pam-1.3.1-r2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/networkmanager/networkmanager-1.18.6.ebuild 
b/net-misc/networkmanager/networkmanager-1.18.6.ebuild
index 09e39e9..3a90c0c 100644
--- a/net-misc/networkmanager/networkmanager-1.18.6.ebuild
+++ b/net-misc/networkmanager/networkmanager-1.18.6.ebuild
@@ -89,7 +89,7 @@ DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
>=sys-kernel/linux-headers-3.18
-   virtual/pkgconfig[${MULTILIB_USEDEP}]
+   virtual/pkgconfig
introspection? (
$(python_gen_any_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]')
dev-lang/perl

diff --git a/sys-libs/pam/pam-1.3.1-r2.ebuild b/sys-libs/pam/pam-1.3.1-r2.ebuild
index 23430fb..d5ed272 100644
--- a/sys-libs/pam/pam-1.3.1-r2.ebuild
+++ b/sys-libs/pam/pam-1.3.1-r2.ebuild
@@ -21,7 +21,7 @@ BDEPEND="app-text/docbook-xml-dtd:4.1.2
dev-libs/libxslt
sys-devel/flex
sys-devel/gettext
-   virtual/pkgconfig[${MULTILIB_USEDEP}]"
+   virtual/pkgconfig"
 
 DEPEND="
virtual/libcrypt:=[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: www-apps/mediawiki/

2020-06-28 Thread Miroslav Šulc
commit: 9443e690c0dd880eadc408072fb9520ef032757c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Jun 29 04:59:06 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Jun 29 04:59:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9443e690

www-apps/mediawiki: removed vulnerable 1.34.1

Bug: https://bugs.gentoo.org/729480
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Miroslav Šulc  gentoo.org>

 www-apps/mediawiki/Manifest|  1 -
 www-apps/mediawiki/mediawiki-1.34.1.ebuild | 79 --
 2 files changed, 80 deletions(-)

diff --git a/www-apps/mediawiki/Manifest b/www-apps/mediawiki/Manifest
index ee07f34458a..230de130a7d 100644
--- a/www-apps/mediawiki/Manifest
+++ b/www-apps/mediawiki/Manifest
@@ -1,2 +1 @@
-DIST mediawiki-1.34.1.tar.gz 40346153 BLAKE2B 
394c23e7d507aef6e47971e265b70826046e954b7f694f32a94d7c5358775e0ee8a17188de1f395fbb19457267650eaffd3586c0f73df8cfad721560d563cbfd
 SHA512 
3a03ac696e2d5300faba0819ba0d876a21798c8dcdc64cc2792c6db0aa81d4feaced8dc133b6ca3e476c770bf51516b0a624cb336784ae3d2b51c8c0aa5987a0
 DIST mediawiki-1.34.2.tar.gz 40721102 BLAKE2B 
fbf7e8a19cd51e1dd3eab85442ce4e65ee9591bb4d2c6faa93ecbfc43e0b6cf88501a0027a7ba0f1adb55d9946de9958abcb14f9fb95b826ba674f1aa8306553
 SHA512 
ea95b46b746c0c180b5cb3b8a2263a2f94207eadbb1638c2113e97b1503c3f0a4d82a2107ce4cabca4790512b81564bda49defe30ac0fdb9bddf3230d6201f8b

diff --git a/www-apps/mediawiki/mediawiki-1.34.1.ebuild 
b/www-apps/mediawiki/mediawiki-1.34.1.ebuild
deleted file mode 100644
index 550d710e49b..000
--- a/www-apps/mediawiki/mediawiki-1.34.1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit webapp
-
-MY_BRANCH=$(ver_cut 1-2)
-
-DESCRIPTION="The MediaWiki wiki web application (as used on wikipedia.org)"
-HOMEPAGE="http://www.mediawiki.org;
-SRC_URI="http://releases.wikimedia.org/${PN}/${MY_BRANCH}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ppc x86"
-IUSE="imagemagick mysql postgres sqlite"
-
-RDEPEND="dev-lang/php[ctype,fileinfo,iconv,json,mysql?,postgres?,session,ssl,unicode,xml,xmlreader]
-   imagemagick? ( virtual/imagemagick-tools )
-   !imagemagick? ( dev-lang/php[gd] )
-   sqlite? (
-   dev-db/sqlite[fts3(+)]
-   dev-lang/php[pdo]
-   dev-lang/php[sqlite]
-   )
-   virtual/httpd-php"
-
-need_httpd_cgi
-
-RESTRICT="test"
-
-src_install() {
-   webapp_src_preinst
-
-   # First we install docs and then copy everything left into htdocs dir
-   # to avoid bugs like #236411.
-
-   # We ensure the directories are prepared for writing.  The post-
-   # install instructions guide the user to enable the feature.
-   local DOCS="FAQ HISTORY INSTALL README RELEASE-NOTES-${PV:0:4} UPGRADE"
-   dodoc ${DOCS} docs/*.txt
-   docinto php-memcached
-   dodoc docs/php-memcached/*
-
-   # Clean everything not used at the site...
-   rm -rf ${DOCS} COPYING tests docs || die
-   find . -name Makefile -delete || die
-   # and install
-   insinto "${MY_HTDOCSDIR}"
-   doins -r .
-
-   # If imagemagick is enabled then setup for image upload.
-   # We ensure the directory is prepared for writing.
-   if use imagemagick ; then
-   webapp_serverowned "${MY_HTDOCSDIR}"/images
-   fi
-
-   webapp_postinst_txt en "${FILESDIR}/postinstall-1.18-en.txt"
-   webapp_postupgrade_txt en "${FILESDIR}/postupgrade-1.16-en.txt"
-   webapp_src_install
-}
-
-pkg_postinst() {
-   webapp_pkg_postinst
-
-   if [[ -n ${REPLACING_VERSIONS} ]]; then
-   echo
-   elog "=== Consult the release notes ==="
-   elog "Before doing anything, stop and consult the release notes"
-   elog "/usr/share/doc/${PF}/RELEASE-NOTES-${PV:0:4}.bz2"
-   echo
-   elog "These detail bug fixes, new features and functionality, 
and any"
-   elog "particular points that may need to be noted during the 
upgrade procedure."
-   echo
-   ewarn "Back up existing files and the database before upgrade."
-   ewarn "http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki;
-   ewarn "provides an overview of the backup process."
-   echo
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-servlet-api/

2020-06-28 Thread Miroslav Šulc
commit: dcde87b71327227cb3e4b58bc3687bb0faac45fd
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Jun 29 04:56:36 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Jun 29 04:56:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcde87b7

dev-java/tomcat-servlet-api: removed obsolete 8.5.55

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/tomcat-servlet-api/Manifest   |  1 -
 .../tomcat-servlet-api-8.5.55.ebuild   | 39 --
 2 files changed, 40 deletions(-)

diff --git a/dev-java/tomcat-servlet-api/Manifest 
b/dev-java/tomcat-servlet-api/Manifest
index 07aacaa6636..52e93b6d0a9 100644
--- a/dev-java/tomcat-servlet-api/Manifest
+++ b/dev-java/tomcat-servlet-api/Manifest
@@ -4,7 +4,6 @@ DIST apache-tomcat-6.0.53-src.tar.gz 3522914 BLAKE2B 
054b097c16861abaa8bdbeba713
 DIST apache-tomcat-7.0.103-src.tar.gz 5279592 BLAKE2B 
a8ab36fb84cf158fcd8b888276576cd523d211ab0f6fe0933f600d1990a8f68076f192177a574987e52440037c0ebefd3edaf3c84fee541afb076c5ad33cce9b
 SHA512 
812fce83c7242ebc16dc2365f0b363f1fb2691cd6a2f19f1209ea467557c42ee2d108c8bef89f23bb4a20c800d0ecdb4afc37567ef8079966b4eec0331a2ef9b
 DIST apache-tomcat-7.0.104-src.tar.gz 5309794 BLAKE2B 
0d4d5d668e1131bb533af1d56fe37ee1f5c252c2c4dd987e24aae67484f27805f88750b27248c6acfd0585eacd0d3f2155c723e9a25c8613652101944add2a15
 SHA512 
788eab3ac343815362decf4c0d5db91f3697cc669e7e051f93bf82905cc52f9b040d00b7e07f7b85bcf470e802418896a678f991e523e08a3ae5a2f212a53257
 DIST apache-tomcat-8.5.54-src.tar.gz 5689648 BLAKE2B 
7d4c80cb86261bba46b1879d8f2b9218a63cfb069d32dfe72bd5d73baf87887cdff37c5841c44196ded1dbafcfe2d525cb09d8a15905c24600caf107255416cf
 SHA512 
fe4a82fc58aed0df203abf03367f840d7ac498a3ba317eb2b08826e8ab5e705ea13b99f3af1e17878b2cf96271c5d9ff4e7cecf3b2631e061f1b02988449f9e2
-DIST apache-tomcat-8.5.55-src.tar.gz 5719386 BLAKE2B 
4d5d20cf81e0a9aba1fe2b0fc2e9641696a2c7b4bfe1cefd1e86025612484ef06a8171e28722bcde91b671df5bd6e148b22c2fc267828109c6af762fe35f8fdb
 SHA512 
214758bf4dc868c38fd92a19e405f3cd8e47008dee82610f8f7373d92ab5f8800c160a42c96c293f599b702c1c9d2967ca40d3410c1f6a14745edac4739f177d
 DIST apache-tomcat-8.5.56-src.tar.gz 5724546 BLAKE2B 
623dc2d1f6808f012f19fdd0d914c4bb200e8328ab6b6855666c1db1704e198d069ff74d227bf51e8376c20daf0640002e5d6907edadfde294d8c62a64d55f83
 SHA512 
75529e567a7be48f2c1034f3eeada571478d0babb63fb2d368061573d7e64d5fc0a937304e2e2ffa956b5d8a403936c1543a93ee78b258b532939fb9ce80ef3d
 DIST apache-tomcat-9.0.34-src.tar.gz 5843244 BLAKE2B 
e4124c5986b0be26f17cf5e62443fa945ebea6dd713db6a7f96c8e4c7eed7d8e38610763adda928a7099c1574b00e072635576d9d29cc8ae1b98658f0e341acb
 SHA512 
8ac8a916bfe2d3daf679dab9f299bc50f138f3cc9a6e8679a22862d122dea1e5ce3b9101472295398366f5b5d8477097a3cfb536f01136e72ff09d69b2f6c3df
 DIST apache-tomcat-9.0.35-src.tar.gz 5887816 BLAKE2B 
8103a50a62aa527861fdc35ce8256d9ff0b7185bfa647e25c30c226f9850e88632e0c1e3575bac3a07513fe9c9777b4ef230275e685f48b0bbc733bc68ff7dad
 SHA512 
8931c0f7c30f50d352879f8dfddc02fa59d7128813399e4eca3994be7cf2448e32e726a3cb8b387a5470ccbfa3fb74d0192c825b5f68bbb9fb6b43a9353cb24a

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.55.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.55.ebuild
deleted file mode 100644
index 2fb70f36de1..000
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.55.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-JAVA_PKG_IUSE="source"
-
-inherit eutils java-pkg-2 java-ant-2
-
-MY_A="apache-${P}-src"
-MY_P="${MY_A/-servlet-api/}"
-DESCRIPTION="Tomcat's Servlet API 3.1/JSP API 2.3/EL API 3.0 implementation"
-HOMEPAGE="https://tomcat.apache.org/;
-SRC_URI="mirror://apache/tomcat/tomcat-8/v${PV}/src/${MY_P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="3.1"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
-IUSE=""
-
-DEPEND=">=virtual/jdk-1.8"
-RDEPEND=">=virtual/jre-1.8"
-
-S="${WORKDIR}/${MY_P}/"
-
-src_prepare() {
-   default
-
-   cp "${FILESDIR}/${SLOT}-build.xml" build.xml || die "Could not replace 
build.xml"
-   rm -fR */*/build.xml
-   einfo "Removing bundled jars and classes"
-   find "${S}" '(' -name '*.class' -o -name '*.jar' ')' -exec rm -frv {} +
-
-   java-pkg-2_src_prepare
-}
-
-src_install() {
-   java-pkg_dojar "${S}"/output/build/lib/*.jar
-   use source && java-pkg_dosrc java/javax/servlet/
-}



[gentoo-commits] repo/gentoo:master commit in: www-servers/tomcat/

2020-06-28 Thread Miroslav Šulc
commit: 3fb737f93ec72b191d4985bce5a0d25504489046
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Jun 29 04:54:40 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Jun 29 04:54:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fb737f9

www-servers/tomcat: removed vulnerable 8.5.55

Bug: https://bugs.gentoo.org/729668
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Miroslav Šulc  gentoo.org>

 www-servers/tomcat/Manifest |   1 -
 www-servers/tomcat/tomcat-8.5.55.ebuild | 158 
 2 files changed, 159 deletions(-)

diff --git a/www-servers/tomcat/Manifest b/www-servers/tomcat/Manifest
index 64555f749fb..c7d7008579a 100644
--- a/www-servers/tomcat/Manifest
+++ b/www-servers/tomcat/Manifest
@@ -1,5 +1,4 @@
 DIST apache-tomcat-7.0.104-src.tar.gz 5309794 BLAKE2B 
0d4d5d668e1131bb533af1d56fe37ee1f5c252c2c4dd987e24aae67484f27805f88750b27248c6acfd0585eacd0d3f2155c723e9a25c8613652101944add2a15
 SHA512 
788eab3ac343815362decf4c0d5db91f3697cc669e7e051f93bf82905cc52f9b040d00b7e07f7b85bcf470e802418896a678f991e523e08a3ae5a2f212a53257
-DIST apache-tomcat-8.5.55-src.tar.gz 5719386 BLAKE2B 
4d5d20cf81e0a9aba1fe2b0fc2e9641696a2c7b4bfe1cefd1e86025612484ef06a8171e28722bcde91b671df5bd6e148b22c2fc267828109c6af762fe35f8fdb
 SHA512 
214758bf4dc868c38fd92a19e405f3cd8e47008dee82610f8f7373d92ab5f8800c160a42c96c293f599b702c1c9d2967ca40d3410c1f6a14745edac4739f177d
 DIST apache-tomcat-8.5.56-src.tar.gz 5724546 BLAKE2B 
623dc2d1f6808f012f19fdd0d914c4bb200e8328ab6b6855666c1db1704e198d069ff74d227bf51e8376c20daf0640002e5d6907edadfde294d8c62a64d55f83
 SHA512 
75529e567a7be48f2c1034f3eeada571478d0babb63fb2d368061573d7e64d5fc0a937304e2e2ffa956b5d8a403936c1543a93ee78b258b532939fb9ce80ef3d
 DIST apache-tomcat-9.0.36-src.tar.gz 5890912 BLAKE2B 
18962c7d4dcd75a04476acd306002977bf039d832aa1ed5551ffcaa0612e612e6b11db6d80cea149b9fb5df9d0f76284d55a1745760df8f4fa744e095c61
 SHA512 
f8263594bc679f75cecf5bcf4ad8e8ccfea42ad8e90eaeb7004c63875c6b700b0f863d68f1cdd932ebc7b303bdfb86d70afe88686e576c8ea7ccd9574c74e25b
 DIST biz.aQute.bnd-4.1.0.jar 9263260 BLAKE2B 
e251a9d8b653f3e815e6c2f7774d64f1d594f3ce4b2f77956c806698df4d873310067cece68663324b11fcef8d90796b087abb289dbe2a13164a9038da4a6260
 SHA512 
f5d230358840f4909e35de40343fb7ee50a2d4d4691691f5ea896cfe212a086ad4859e0ee6ed4c315211223663b2fb2c07af7ea88786cedbcd4f891e5a4589ef

diff --git a/www-servers/tomcat/tomcat-8.5.55.ebuild 
b/www-servers/tomcat/tomcat-8.5.55.ebuild
deleted file mode 100644
index 688cb761576..000
--- a/www-servers/tomcat/tomcat-8.5.55.ebuild
+++ /dev/null
@@ -1,158 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit eutils java-pkg-2 java-ant-2 prefix user
-
-MY_P="apache-${P}-src"
-
-DESCRIPTION="Tomcat Servlet-3.1/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 
Container"
-HOMEPAGE="https://tomcat.apache.org/;
-SRC_URI="mirror://apache/${PN}/tomcat-8/v${PV}/src/${MY_P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="8.5"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="extra-webapps"
-
-RESTRICT="test" # can we run them on a production system?
-
-ECJ_SLOT="4.5"
-SAPI_SLOT="3.1"
-
-COMMON_DEP="dev-java/eclipse-ecj:${ECJ_SLOT}
-   ~dev-java/tomcat-servlet-api-${PV}:${SAPI_SLOT}"
-RDEPEND="${COMMON_DEP}
-   virtual/jre"
-DEPEND="${COMMON_DEP}
-   app-admin/pwgen
-   >=dev-java/ant-core-1.9.13
-   virtual/jdk:1.8
-   test? (
-   >=dev-java/ant-junit-1.9:0
-   dev-java/easymock:3.2
-   )"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
-   java-pkg-2_pkg_setup
-   enewgroup tomcat 265
-   enewuser tomcat 265 -1 /dev/null tomcat
-}
-
-src_prepare() {
-   default
-
-   find -name '*.jar' -type f -delete -print || die
-
-   # Remove bundled servlet-api
-   rm -rv java/javax/{el,servlet} || die
-
-   eapply "${FILESDIR}/${PN}-8.5.47-build.xml.patch"
-
-   # For use of catalina.sh in netbeans
-   sed -i -e "/^# - Execute The Requested Command/ a\
-   CLASSPATH=\`java-config --classpath ${PN}-${SLOT}\`" \
-   bin/catalina.sh || die
-
-   java-pkg-2_src_prepare
-}
-
-JAVA_ANT_REWRITE_CLASSPATH="true"
-
-EANT_BUILD_TARGET="deploy"
-EANT_GENTOO_CLASSPATH="eclipse-ecj-${ECJ_SLOT},tomcat-servlet-api-${SAPI_SLOT}"
-EANT_TEST_GENTOO_CLASSPATH="easymock-3.2"
-EANT_GENTOO_CLASSPATH_EXTRA="${S}/output/classes"
-EANT_NEEDS_TOOLS="true"
-EANT_EXTRA_ARGS="-Dversion=${PV}-gentoo -Dversion.number=${PV} 
-Dcompile.debug=false -Dexecute.validate=false"
-
-# revisions of the scripts
-IM_REV="-r2"
-INIT_REV="-r1"
-
-src_compile() {
-   EANT_GENTOO_CLASSPATH_EXTRA+=":$(java-pkg_getjar --build-only ant-core 
ant.jar)"
-   java-pkg-2_src_compile
-}
-
-src_test() {
-   java-pkg-2_src_test
-}
-
-src_install() {
-   local 

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

2020-06-28 Thread Matt Turner
commit: ef835ffe2d28ac7694fb5416f27eff882770e039
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Jun 29 04:44:06 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jun 29 04:44:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef835ffe

profiles: Remove old updates

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

 profiles/updates/1Q-2015 |  58 -
 profiles/updates/2Q-2015 | 162 ---
 2 files changed, 220 deletions(-)

diff --git a/profiles/updates/1Q-2015 b/profiles/updates/1Q-2015
deleted file mode 100644
index 25811ee168d..000
--- a/profiles/updates/1Q-2015
+++ /dev/null
@@ -1,58 +0,0 @@
-slotmove sys-firmware/iwl3160-ucode 0 7
-slotmove sys-firmware/iwl3160-ucode 1 8
-slotmove sys-firmware/iwl3160-ucode 2 9
-slotmove sys-firmware/iwl3160-ucode 3 10
-slotmove sys-firmware/iwl7260-ucode 0 7
-slotmove sys-firmware/iwl7260-ucode 1 8
-slotmove sys-firmware/iwl7260-ucode 2 9
-slotmove sys-firmware/iwl7260-ucode 3 10
-slotmove dev-ruby/tilt 2.0.1 2
-move app-vim/zencoding-vim app-vim/emmet
-move app-admin/lxqt-admin lxqt-base/lxqt-admin
-move net-misc/lxqt-openssh-askpass lxqt-base/lxqt-openssh-askpass
-move media-fonts/libertine-ttf media-fonts/libertine
-move dev-qt/qtdocumentation dev-qt/qt-docs
-move app-admin/eselect-audicle app-eselect/eselect-audicle
-move app-admin/eselect-awk app-eselect/eselect-awk
-move app-admin/eselect-blas app-eselect/eselect-blas
-move app-admin/eselect-cblas app-eselect/eselect-cblas
-move app-admin/eselect-cdparanoia app-eselect/eselect-cdparanoia
-move app-admin/eselect-chuck app-eselect/eselect-chuck
-move app-admin/eselect-ctags app-eselect/eselect-ctags
-move app-admin/eselect-emacs app-eselect/eselect-emacs
-move app-admin/eselect-fontconfig app-eselect/eselect-fontconfig
-move app-admin/eselect-gnome-shell-extensions 
app-eselect/eselect-gnome-shell-extensions
-move app-admin/eselect-infinality app-eselect/eselect-infinality
-move app-admin/eselect-java app-eselect/eselect-java
-move app-admin/eselect-lapack app-eselect/eselect-lapack
-move app-admin/eselect-lcdfilter app-eselect/eselect-lcdfilter
-move app-admin/eselect-lib-bin-symlink app-eselect/eselect-lib-bin-symlink
-move app-admin/eselect-lua app-eselect/eselect-lua
-move app-admin/eselect-metasploit app-eselect/eselect-metasploit
-move app-admin/eselect-miniaudicle app-eselect/eselect-miniaudicle
-move app-admin/eselect-mpg123 app-eselect/eselect-mpg123
-move app-admin/eselect-mpost app-eselect/eselect-mpost
-move app-admin/eselect-notify-send app-eselect/eselect-notify-send
-move app-admin/eselect-oodict app-eselect/eselect-oodict
-move app-admin/eselect-opencascade app-eselect/eselect-opencascade
-move app-admin/eselect-opencl app-eselect/eselect-opencl
-move app-admin/eselect-opengl app-eselect/eselect-opengl
-move app-admin/eselect-package-manager app-eselect/eselect-package-manager
-move app-admin/eselect-pdftex app-eselect/eselect-pdftex
-move app-admin/eselect-php app-eselect/eselect-php
-move app-admin/eselect-pinentry app-eselect/eselect-pinentry
-move app-admin/eselect-postgresql app-eselect/eselect-postgresql
-move app-admin/eselect-python app-eselect/eselect-python
-move app-admin/eselect-rails app-eselect/eselect-rails
-move app-admin/eselect-renpy app-eselect/eselect-renpy
-move app-admin/eselect-ruby app-eselect/eselect-ruby
-move app-admin/eselect-rust app-eselect/eselect-rust
-move app-admin/eselect-sh app-eselect/eselect-sh
-move app-admin/eselect-sndpeek app-eselect/eselect-sndpeek
-move app-admin/eselect-timezone app-eselect/eselect-timezone
-move app-admin/eselect-timidity app-eselect/eselect-timidity
-move app-admin/eselect-unison app-eselect/eselect-unison
-move app-admin/eselect-vdr app-eselect/eselect-vdr
-move app-admin/eselect-vi app-eselect/eselect-vi
-move app-admin/eselect-wxwidgets app-eselect/eselect-wxwidgets
-move app-admin/eselect-xvmc app-eselect/eselect-xvmc

diff --git a/profiles/updates/2Q-2015 b/profiles/updates/2Q-2015
deleted file mode 100644
index b17009f42e3..000
--- a/profiles/updates/2Q-2015
+++ /dev/null
@@ -1,162 +0,0 @@
-move dev-perl/config-general dev-perl/Config-General
-move dev-util/pkgcore-checks dev-util/pkgcheck
-slotmove dev-libs/libdbusmenu 3 0
-move dev-perl/log-dispatch dev-perl/Log-Dispatch
-move dev-libs/extra-cmake-modules kde-frameworks/extra-cmake-modules
-slotmove kde-frameworks/extra-cmake-modules 0 5
-slotmove =dev-lang/scala-2.9* 0 2.9
-slotmove =dev-lang/scala-2.10* 0 2.10
-slotmove =dev-lang/scala-2.11* 0 2.11
-move dev-perl/Cgi-Simple dev-perl/CGI-Simple
-move net-mail/git-mailz dev-vcs/git-mailz
-move dev-perl/extutils-depends dev-perl/ExtUtils-Depends
-move dev-perl/class-returnvalue dev-perl/Class-ReturnValue
-slotmove =dev-ruby/vcr-2.9.3 0 2
-move kde-base/analitza kde-apps/analitza
-move kde-base/ark kde-apps/ark
-move kde-base/artikulate kde-apps/artikulate
-move kde-base/audiocd-kio kde-apps/audiocd-kio
-move 

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

2020-06-28 Thread Zac Medico
commit: bb5d2536ee9fe7736ec040306021ff09a347cc4f
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 29 04:39:20 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 29 04:39:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb5d2536

app-text/podofo: Remove 0.9.6_p20200526

This version broke scribus builds as reported in bug 728090.

Bug: https://bugs.gentoo.org/717792
Bug: https://bugs.gentoo.org/728090
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Zac Medico  gentoo.org>

 app-text/podofo/Manifest  |   1 -
 app-text/podofo/podofo-0.9.6_p20200526.ebuild | 141 --
 2 files changed, 142 deletions(-)

diff --git a/app-text/podofo/Manifest b/app-text/podofo/Manifest
index b23fb02c554..9e65b16b6c0 100644
--- a/app-text/podofo/Manifest
+++ b/app-text/podofo/Manifest
@@ -1,3 +1,2 @@
 DIST podofo-0.9.6_p20180715.tar.xz 747444 BLAKE2B 
96d90add6d290d6722cd7412fd75433f87303bac385964f0967b4f119db4962f6ddbd93b49af8454051f421d77de70ad7ea0f5b01a66eeb690a75dbeec256eff
 SHA512 
4c9b09c716128110b47d6a02f118eb80b6009e9e79dbc83ff804a57f0abc011b789de9287b68a6c1d6704ef386f8062a3a495408af8a832782f0bf0128190a1f
 DIST podofo-0.9.6_p20190928.tar.xz 747532 BLAKE2B 
39d051e6adca85bf0f124e5d48e1ff88dc951d7c1b38bc76dc7e3640ea9c3f8a59c6ba9a9105a263234e94932e450bec12dde455850dbf96cd7eec3e69a1a28d
 SHA512 
b9d46fb02eeba61190a0efd17b507bba62d7246af6fff3c3514c9970e99e085f9aad92baa05cc6cf0a8c3c2843554099c904bff10be54dbb4d4cb7de460fc3cc
-DIST podofo-0.9.6_p20200526.tar.xz 752264 BLAKE2B 
52eb40a63e8462b6d1f975c76c2112b93ae98c19ad6cb65906bef018e99a3d92e26781cee9d4ef1c4de74779db7eca6589c320849be84b70c20d5c7d988c0a49
 SHA512 
7baa58c9a524ccc5aa954bd5fe891b9add8b8f4ec29e3ebbc1c8a467d2787e6c3f9e4652db08e50cb4c28a73691215947940634975e292ec01fb57e2e45efbe4

diff --git a/app-text/podofo/podofo-0.9.6_p20200526.ebuild 
b/app-text/podofo/podofo-0.9.6_p20200526.ebuild
deleted file mode 100644
index 058f8499ab0..000
--- a/app-text/podofo/podofo-0.9.6_p20200526.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit cmake-utils flag-o-matic multilib toolchain-funcs
-
-DESCRIPTION="PoDoFo is a C++ library to work with the PDF file format"
-HOMEPAGE="https://sourceforge.net/projects/podofo/;
-SRC_URI="https://dev.gentoo.org/~zmedico/dist/podofo-0.9.6_p20200526.tar.xz;
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/${PV%_*}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="+boost idn libressl debug test +tools"
-RESTRICT="test"
-REQUIRED_USE="test? ( tools )"
-
-RDEPEND="dev-lang/lua:=
-   idn? ( net-dns/libidn:= )
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   media-libs/fontconfig:=
-   media-libs/freetype:2=
-   virtual/jpeg:0=
-   media-libs/libpng:0=
-   media-libs/tiff:0=
-   sys-libs/zlib:="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   boost? ( dev-util/boost-build )
-   test? ( dev-util/cppunit )"
-
-DOCS="AUTHORS ChangeLog TODO"
-
-src_prepare() {
-   cmake-utils_src_prepare
-   local x sed_args
-
-   if use libressl; then
-   sed -e 's:^#ifdef PODOFO_HAVE_OPENSSL_1_1$:#ifndef 
PODOFO_HAVE_OPENSSL_1_1:' \
--i tools/podofosign/podofosign.cpp || die #663602
-   fi
-
-   # bug 620934 - Disable linking with cppunit when possible, since it
-   # triggers errors with some older compilers.
-   use test || sed -e 's:^FIND_PACKAGE(CppUnit):#\0:' -i CMakeLists.txt || 
die
-
-   # bug 556962
-   sed -i -e 's|Decrypt( pEncryptedBuffer, nOutputLen, pDecryptedBuffer, 
m_lLen );|Decrypt( pEncryptedBuffer, (pdf_long)nOutputLen, pDecryptedBuffer, 
(pdf_long\&)m_lLen );|' \
-   test/unit/EncryptTest.cpp || die
-
-   sed -i \
-   -e "s:LIBDIRNAME \"lib\":LIBDIRNAME \"$(get_libdir)\":" \
-   -e "s:LIBIDN_FOUND:HAVE_LIBIDN:g" \
-   CMakeLists.txt || die
-
-   # Use pkg-config to find headers for bug #459404.
-   sed_args=
-   for x in $($(tc-getPKG_CONFIG) --cflags freetype2) ; do
-   [[ ${x} == -I* ]] || continue
-   x=${x#-I}
-   if [[ -f ${x}/ft2build.h ]] ; then
-   sed_args+=" -e s:/usr/include/\\r\$:${x}:"
-   elif [[ -f ${x}/freetype/config/ftheader.h ]] ; then
-   sed_args+=" -e s:/usr/include/freetype2\\r\$:${x}:"
-   fi
-   done
-   [[ -n ${sed_args} ]] && \
-   { sed -i ${sed_args} cmake/modules/FindFREETYPE.cmake || die; }
-
-   # Bug #439784: Add missing unistd include for close() and unlink().
-   sed -i 's:^#include $:#include \n\0:' -i \
-   test/unit/TestUtils.cpp || die
-
-   # TODO: fix these test cases
-   # ColorTest.cpp:62:Assertion
-   # Test 

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

2020-06-28 Thread Zac Medico
commit: b74b2edcf1da679d241113cebbbcb1ba6ac7c0bb
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Jun 29 04:20:18 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Jun 29 04:38:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b74b2edc

app-text/podofo: Bump to version 0.9.6_p20190928 (bug 717792)

Bug: https://bugs.gentoo.org/717792
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Zac Medico  gentoo.org>

 app-text/podofo/Manifest  |   1 +
 app-text/podofo/podofo-0.9.6_p20190928.ebuild | 146 ++
 2 files changed, 147 insertions(+)

diff --git a/app-text/podofo/Manifest b/app-text/podofo/Manifest
index cf512cb436c..b23fb02c554 100644
--- a/app-text/podofo/Manifest
+++ b/app-text/podofo/Manifest
@@ -1,2 +1,3 @@
 DIST podofo-0.9.6_p20180715.tar.xz 747444 BLAKE2B 
96d90add6d290d6722cd7412fd75433f87303bac385964f0967b4f119db4962f6ddbd93b49af8454051f421d77de70ad7ea0f5b01a66eeb690a75dbeec256eff
 SHA512 
4c9b09c716128110b47d6a02f118eb80b6009e9e79dbc83ff804a57f0abc011b789de9287b68a6c1d6704ef386f8062a3a495408af8a832782f0bf0128190a1f
+DIST podofo-0.9.6_p20190928.tar.xz 747532 BLAKE2B 
39d051e6adca85bf0f124e5d48e1ff88dc951d7c1b38bc76dc7e3640ea9c3f8a59c6ba9a9105a263234e94932e450bec12dde455850dbf96cd7eec3e69a1a28d
 SHA512 
b9d46fb02eeba61190a0efd17b507bba62d7246af6fff3c3514c9970e99e085f9aad92baa05cc6cf0a8c3c2843554099c904bff10be54dbb4d4cb7de460fc3cc
 DIST podofo-0.9.6_p20200526.tar.xz 752264 BLAKE2B 
52eb40a63e8462b6d1f975c76c2112b93ae98c19ad6cb65906bef018e99a3d92e26781cee9d4ef1c4de74779db7eca6589c320849be84b70c20d5c7d988c0a49
 SHA512 
7baa58c9a524ccc5aa954bd5fe891b9add8b8f4ec29e3ebbc1c8a467d2787e6c3f9e4652db08e50cb4c28a73691215947940634975e292ec01fb57e2e45efbe4

diff --git a/app-text/podofo/podofo-0.9.6_p20190928.ebuild 
b/app-text/podofo/podofo-0.9.6_p20190928.ebuild
new file mode 100644
index 000..0c3c7b2bd80
--- /dev/null
+++ b/app-text/podofo/podofo-0.9.6_p20190928.ebuild
@@ -0,0 +1,146 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit cmake flag-o-matic multilib toolchain-funcs
+
+DESCRIPTION="PoDoFo is a C++ library to work with the PDF file format"
+HOMEPAGE="https://sourceforge.net/projects/podofo/;
+SRC_URI="https://dev.gentoo.org/~zmedico/dist/${P}.tar.xz;
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/${PV%_*}"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+boost idn libressl debug test +tools"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( tools )"
+
+RDEPEND="dev-lang/lua:=
+   idn? ( net-dns/libidn:= )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   media-libs/fontconfig:=
+   media-libs/freetype:2=
+   virtual/jpeg:0=
+   media-libs/libpng:0=
+   media-libs/tiff:0=
+   sys-libs/zlib:="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   boost? ( dev-util/boost-build )
+   test? ( dev-util/cppunit )"
+
+DOCS="AUTHORS ChangeLog TODO"
+
+src_prepare() {
+   cmake_src_prepare
+   local x sed_args
+
+   if use libressl; then
+   sed -e 's:^#ifdef PODOFO_HAVE_OPENSSL_1_1$:#ifndef 
PODOFO_HAVE_OPENSSL_1_1:' \
+-i tools/podofosign/podofosign.cpp || die #663602
+   fi
+
+   # bug 620934 - Disable linking with cppunit when possible, since it
+   # triggers errors with some older compilers.
+   use test || sed -e 's:^FIND_PACKAGE(CppUnit):#\0:' -i CMakeLists.txt || 
die
+
+   # bug 556962
+   sed -i -e 's|Decrypt( pEncryptedBuffer, nOutputLen, pDecryptedBuffer, 
m_lLen );|Decrypt( pEncryptedBuffer, (pdf_long)nOutputLen, pDecryptedBuffer, 
(pdf_long\&)m_lLen );|' \
+   test/unit/EncryptTest.cpp || die
+
+   sed -i \
+   -e "s:LIBDIRNAME \"lib\":LIBDIRNAME \"$(get_libdir)\":" \
+   -e "s:LIBIDN_FOUND:HAVE_LIBIDN:g" \
+   CMakeLists.txt || die
+
+   # Use pkg-config to find headers for bug #459404.
+   sed_args=
+   for x in $($(tc-getPKG_CONFIG) --cflags freetype2) ; do
+   [[ ${x} == -I* ]] || continue
+   x=${x#-I}
+   if [[ -f ${x}/ft2build.h ]] ; then
+   sed_args+=" -e s:/usr/include/\\r\$:${x}:"
+   elif [[ -f ${x}/freetype/config/ftheader.h ]] ; then
+   sed_args+=" -e s:/usr/include/freetype2\\r\$:${x}:"
+   fi
+   done
+   [[ -n ${sed_args} ]] && \
+   { sed -i ${sed_args} cmake/modules/FindFREETYPE.cmake || die; }
+
+   # Bug #439784: Add missing unistd include for close() and unlink().
+   sed -i 's:^#include $:#include \n\0:' -i \
+   test/unit/TestUtils.cpp || die
+
+   # TODO: fix these test cases
+   # ColorTest.cpp:62:Assertion
+   # Test name: ColorTest::testDefaultConstructor
+   # expected exception not thrown
+   # - 

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

2020-06-28 Thread Aaron Bauman
commit: 1b14e1cdfb3b0a1b6ce5090d9d402806303dd0bc
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Jun 29 01:28:24 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Jun 29 01:28:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b14e1cd

profiles/package.mask: add app-text/duali-data

* an RDEP of app-text/duali

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 011ba070959..b208560d622 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -39,6 +39,7 @@
 app-arch/deltarpm
 app-crypt/virtualsmartcard
 app-text/duali
+app-text/duali-data
 app-text/mftrace
 app-text/queequeg
 app-text/referencer



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pari/

2020-06-28 Thread Michael Orlitzky
commit: ce0f8203fc193334040dd16bdca2ff7a2b2c1e09
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Mon Jun 29 00:45:57 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Mon Jun 29 00:53:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce0f8203

sci-mathematics/pari: remove old pari-2.11.2.ebuild.

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

 sci-mathematics/pari/Manifest   |   1 -
 sci-mathematics/pari/pari-2.11.2.ebuild | 111 
 2 files changed, 112 deletions(-)

diff --git a/sci-mathematics/pari/Manifest b/sci-mathematics/pari/Manifest
index 0c8ef471926..2988ed6bb11 100644
--- a/sci-mathematics/pari/Manifest
+++ b/sci-mathematics/pari/Manifest
@@ -1,2 +1 @@
-DIST pari-2.11.2.tar.gz 4433038 BLAKE2B 
89fd8c14d6ee8c8640432bec75e10b79897f0180212dcb1b04b654478a3258fc13a7f982bcb400e28997934a21667c0c3cb08fdb2e843a80a24c6499feafb639
 SHA512 
22f5a6ecad6d9b8b337c2655f538a196a0460f6fe98256d0f49557ce7b843f6b27ad364f45a9472aaafee9506386c886f1f0d62697078e501ec465151d4d10a1
 DIST pari-2.11.4.tar.gz 4445000 BLAKE2B 
e910783186eeb71e74a369681c113b77271abd7f87d7a9f366aea83f36ab984f02e312cd451fad7ee6efb2fa285780e8fa78540bb1fd4b135a62d265176c80e0
 SHA512 
1312f452244cd1d814a1e43e108378c956669b614845f21199b7039fe6462881168983d4badb8a80bb1bac202cd82d92788a2b4f3c23d16f993cae6e251c4fe1

diff --git a/sci-mathematics/pari/pari-2.11.2.ebuild 
b/sci-mathematics/pari/pari-2.11.2.ebuild
deleted file mode 100644
index 3d42e03c198..000
--- a/sci-mathematics/pari/pari-2.11.2.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Computer-aided number theory C library and tools"
-HOMEPAGE="http://pari.math.u-bordeaux.fr/;
-SRC_URI="http://pari.math.u-bordeaux.fr/pub/${PN}/unix/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0/6"
-KEYWORDS="~alpha amd64 ~hppa ~mips ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~x86-macos ~x86-solaris"
-IUSE="data doc fltk gmp test threads X"
-RESTRICT="!test? ( test )"
-
-BDEPEND="doc? ( virtual/latex-base )"
-DEPEND="
-   sys-libs/readline:0=
-   data? ( sci-mathematics/pari-data )
-   doc? ( X? ( x11-misc/xdg-utils ) )
-   fltk? ( x11-libs/fltk:1= )
-   gmp? ( dev-libs/gmp:0= )
-   X? ( x11-libs/libX11:0= )"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-   "${FILESDIR}/${PN}"-2.9.4-strip.patch
-   "${FILESDIR}/${PN}"-2.9.4-ppc.patch
-   "${FILESDIR}/${PN}"-2.11.2-no-automagic.patch
-   "${FILESDIR}/${PN}"-2.9.4-fltk-detection.patch
-   "${FILESDIR}/${PN}"-2.11.2-Makefile-LDFLAGS.patch
-   "${FILESDIR}/${PN}"-2.11.2-Makefile-docinstall.patch
-   )
-
-src_prepare() {
-   default
-
-   # move doc dir to a gentoo doc dir and replace acroread by xdg-open
-   sed -i \
-   -e "s:\$d = \$0:\$d = '${EPREFIX}/usr/share/doc/${PF}':" \
-   -e 's:"acroread":"xdg-open":' \
-   doc/gphelp.in || die "Failed to fix doc dir"
-}
-
-src_configure() {
-   tc-export CC CXX
-
-   # Workaraound to "asm operand has impossible constraints" as
-   # suggested in bug #46.
-   use x86 && append-cflags $(test-flags-CC -fno-stack-check)
-
-   # need to force optimization here, as it breaks without
-   if is-flag -O0; then
-   replace-flags -O0 -O2
-   elif ! is-flag -O?; then
-   append-flags -O2
-   fi
-
-   # sysdatadir installs a pari.cfg stuff which is informative only.
-   # It is supposed to be for "architecture-dependent" data.
-   # It needs to be easily discoverable for downstream packages such as 
gp2c.
-   ./Configure \
-   --prefix="${EPREFIX}"/usr \
-   --datadir="${EPREFIX}/usr/share/${PN}" \
-   --libdir="${EPREFIX}/usr/$(get_libdir)" \
-   --sysdatadir="${EPREFIX}"/usr/share/pari \
-   --mandir="${EPREFIX}"/usr/share/man/man1 \
-   --with-readline="${EPREFIX}"/usr \
-   --with-readline-lib="${EPREFIX}/usr/$(get_libdir)" \
-   --with-ncurses-lib="${EPREFIX}/usr/$(get_libdir)" \
-   $(use_with fltk) \
-   $(use_with gmp) \
-   --without-qt \
-   $(usex threads "--mt=pthread" "" "" "") \
-   || die "./Configure failed"
-}
-
-src_compile() {
-   local mymake=""
-   use hppa && \
-   mymake=DLLD\="${EPREFIX}"/usr/bin/gcc\ DLLDFLAGS\=-shared\ 
-Wl,-soname=\$\(LIBPARI_SONAME\)\ -lm
-
-   emake ${mymake} gp
-
-   if use doc; then
-   # To prevent sandbox violations by metafont
-   VARTEXFONTS="${T}/fonts" emake docpdf
-   fi
-}
-
-src_test() {
-   # Welcome to the jungle, where the tests fail if you make your
-   # terminal bigger.
-   emake 

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

2020-06-28 Thread Michael Orlitzky
commit: af319b8e81df5bcc69b02155d97e905197dc15e4
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Mon Jun 29 01:15:49 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Mon Jun 29 01:15:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af319b8e

www-client/netsurf: fix build with USE=gtk2.

In the latest release, upstream switched around the names of the GTK
targets to reflect that gtk3 is now default. This left the build
broken with USE=gtk2, because (ALLEGEDLY) I never tested it. Sorry.
Everything should be back to normal.

Bug: https://bugs.gentoo.org/728994
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

 www-client/netsurf/netsurf-3.10.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-client/netsurf/netsurf-3.10.ebuild 
b/www-client/netsurf/netsurf-3.10.ebuild
index ee8c48f41a8..a0070e82799 100644
--- a/www-client/netsurf/netsurf-3.10.ebuild
+++ b/www-client/netsurf/netsurf-3.10.ebuild
@@ -98,7 +98,7 @@ _emake() {
 
 src_compile() {
use fbcon && _emake TARGET=framebuffer
-   use gtk2 && _emake TARGET=gtk
+   use gtk2 && _emake TARGET=gtk2
use gtk && _emake TARGET=gtk3
 }
 
@@ -116,9 +116,9 @@ src_install() {
make_desktop_entry "${EPREFIX}"/usr/bin/netsurf-fb 
NetSurf-framebuffer netsurf "Network;WebBrowser"
fi
if use gtk2 ; then
-   _emake TARGET=gtk DESTDIR="${D}" install
-   elog "netsurf gtk2 version has been installed as netsurf-gtk"
-   make_desktop_entry "${EPREFIX}"/usr/bin/netsurf-gtk NetSurf-gtk 
netsurf "Network;WebBrowser"
+   _emake TARGET=gtk2 DESTDIR="${D}" install
+   elog "netsurf gtk2 version has been installed as netsurf-gtk2"
+   make_desktop_entry "${EPREFIX}"/usr/bin/netsurf-gtk2 
NetSurf-gtk2 netsurf "Network;WebBrowser"
fi
if use gtk ; then
_emake TARGET=gtk3 DESTDIR="${D}" install



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

2020-06-28 Thread Michael Orlitzky
commit: ab17ce2d706b52b3f8ab04a2f33c4ea12837b4cb
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Mon Jun 29 01:25:17 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Mon Jun 29 01:26:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab17ce2d

www-client/netsurf: tweak USE defaults.

The main purpose of this commit is to enable USE=gtk by default, to
avoid forcing users to choose one of USE=fbcon, USE=gtk2, or
USE=gtk. For what it's worth, the gtk(3) target is the upstream
default. This fixes an associated pkgcheck warning.

At the same time, I've turned off support for BMP, MNG, and RiscOS
bitmap images by default. There's nothing wrong with them -- they're
just basically nonexistent on the web, and doing so will pull in fewer
dependencies for most people.

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

 www-client/netsurf/netsurf-3.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/netsurf/netsurf-3.10.ebuild 
b/www-client/netsurf/netsurf-3.10.ebuild
index a0070e82799..206f8f8d2f6 100644
--- a/www-client/netsurf/netsurf-3.10.ebuild
+++ b/www-client/netsurf/netsurf-3.10.ebuild
@@ -12,8 +12,8 @@ 
SRC_URI="http://download.netsurf-browser.org/netsurf/releases/source/${P}-src.ta
 LICENSE="GPL-2 MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="+bmp +duktape fbcon truetype +gif gtk gtk2 +javascript +jpeg +mng
-   +png +psl +rosprite +svg +svgtiny +webp"
+IUSE="bmp +duktape fbcon truetype +gif +gtk gtk2 +javascript +jpeg mng
+   +png +psl rosprite +svg +svgtiny +webp"
 
 REQUIRED_USE="|| ( fbcon gtk gtk2 )
duktape? ( javascript )"



[gentoo-commits] proj/musl:master commit in: dev-libs/glib/files/

2020-06-28 Thread Jory Pratt
commit: c76e3a569dd4139e7f9d3d7888910a4298f9bb3c
Author: Jory Pratt  gentoo  org>
AuthorDate: Mon Jun 29 01:01:32 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Mon Jun 29 01:01:32 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=c76e3a56

dev-libs/glib: drop obsolete patches

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

 dev-libs/glib/files/2.60.7-gdbus-fixes.patch | 301 ---
 dev-libs/glib/files/CVE-2020-6750.patch  | 763 ---
 2 files changed, 1064 deletions(-)

diff --git a/dev-libs/glib/files/2.60.7-gdbus-fixes.patch 
b/dev-libs/glib/files/2.60.7-gdbus-fixes.patch
deleted file mode 100644
index e2a066b..000
--- a/dev-libs/glib/files/2.60.7-gdbus-fixes.patch
+++ /dev/null
@@ -1,301 +0,0 @@
-From 1cfab12a28d97716ad581c30fbbf3e94e4d7f303 Mon Sep 17 00:00:00 2001
-From: Simon McVittie 
-Date: Mon, 14 Oct 2019 08:22:24 +0100
-Subject: [PATCH 1/3] gcredentialsprivate: Document the various private macros
-
-Signed-off-by: Simon McVittie 

- gio/gcredentialsprivate.h | 59 +++
- 1 file changed, 59 insertions(+)
-
-diff --git a/gio/gcredentialsprivate.h b/gio/gcredentialsprivate.h
-index 4d1c420a8..06f0aed19 100644
 a/gio/gcredentialsprivate.h
-+++ b/gio/gcredentialsprivate.h
-@@ -22,6 +22,65 @@
- #include "gio/gcredentials.h"
- #include "gio/gnetworking.h"
- 
-+/*
-+ * G_CREDENTIALS_SUPPORTED:
-+ *
-+ * Defined to 1 if GCredentials works.
-+ */
-+#undef G_CREDENTIALS_SUPPORTED
-+
-+/*
-+ * G_CREDENTIALS_USE_LINUX_UCRED, etc.:
-+ *
-+ * Defined to 1 if GCredentials uses Linux `struct ucred`, etc.
-+ */
-+#undef G_CREDENTIALS_USE_LINUX_UCRED
-+#undef G_CREDENTIALS_USE_FREEBSD_CMSGCRED
-+#undef G_CREDENTIALS_USE_NETBSD_UNPCBID
-+#undef G_CREDENTIALS_USE_OPENBSD_SOCKPEERCRED
-+#undef G_CREDENTIALS_USE_SOLARIS_UCRED
-+
-+/*
-+ * G_CREDENTIALS_NATIVE_TYPE:
-+ *
-+ * Defined to one of G_CREDENTIALS_TYPE_LINUX_UCRED, etc.
-+ */
-+#undef G_CREDENTIALS_NATIVE_TYPE
-+
-+/*
-+ * G_CREDENTIALS_NATIVE_SIZE:
-+ *
-+ * Defined to the size of the %G_CREDENTIALS_NATIVE_TYPE
-+ */
-+#undef G_CREDENTIALS_NATIVE_SIZE
-+
-+/*
-+ * G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED:
-+ *
-+ * Defined to 1 if we have a message-passing API in which credentials
-+ * are attached to a particular message, such as `SCM_CREDENTIALS` on Linux
-+ * or `SCM_CREDS` on FreeBSD.
-+ */
-+#undef G_CREDENTIALS_UNIX_CREDENTIALS_MESSAGE_SUPPORTED
-+
-+/*
-+ * G_CREDENTIALS_SOCKET_GET_CREDENTIALS_SUPPORTED:
-+ *
-+ * Defined to 1 if we have a `getsockopt()`-style API in which one end of
-+ * a socket connection can directly query the credentials of the process
-+ * that initiated the other end, such as `getsockopt SO_PEERCRED` on Linux
-+ * or `getpeereid()` on multiple operating systems.
-+ */
-+#undef G_CREDENTIALS_SOCKET_GET_CREDENTIALS_SUPPORTED
-+
-+/*
-+ * G_CREDENTIALS_SPOOFING_SUPPORTED:
-+ *
-+ * Defined to 1 if privileged processes can spoof their credentials when
-+ * using the message-passing API.
-+ */
-+#undef G_CREDENTIALS_SPOOFING_SUPPORTED
-+
- #ifdef __linux__
- #define G_CREDENTIALS_SUPPORTED 1
- #define G_CREDENTIALS_USE_LINUX_UCRED 1
--- 
-2.20.1
-
-
-From 5f9318af8f19756685c1b79cf8b76f3e66614d84 Mon Sep 17 00:00:00 2001
-From: Simon McVittie 
-Date: Fri, 18 Oct 2019 10:55:09 +0100
-Subject: [PATCH 2/3] credentials: Invalid Linux struct ucred means "no
- information"
-
-On Linux, if getsockopt SO_PEERCRED is used on a TCP socket, one
-might expect it to fail with an appropriate error like ENOTSUP or
-EPROTONOSUPPORT. However, it appears that in fact it succeeds, but
-yields a credentials structure with pid 0, uid -1 and gid -1. These
-are not real process, user and group IDs that can be allocated to a
-real process (pid 0 needs to be reserved to give kill(0) its documented
-special semantics, and similarly uid and gid -1 need to be reserved for
-setresuid() and setresgid()) so it is not meaningful to signal them to
-high-level API users.
-
-An API user with Linux-specific knowledge can still inspect these fields
-via g_credentials_get_native() if desired.
-
-Similarly, if SO_PASSCRED is used to receive a SCM_CREDENTIALS message
-on a receiving Unix socket, but the sending socket had not enabled
-SO_PASSCRED at the time that the message was sent, it is possible
-for it to succeed but yield a credentials structure with pid 0, uid
-/proc/sys/kernel/overflowuid and gid /proc/sys/kernel/overflowgid. Even
-if we were to read those pseudo-files, we cannot distinguish between
-the overflow IDs and a real process that legitimately has the same IDs
-(typically they are set to 'nobody' and 'nogroup', which can be used
-by a real process), so we detect this situation by noticing that
-pid == 0, and to save syscalls we do not read the overflow IDs from
-/proc at all.
-
-This results in a small API change: g_credentials_is_same_user() now
-returns FALSE if we compare two 

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

2020-06-28 Thread Jory Pratt
commit: 907edffad76af3e4f581fdcc1675ac8a43d5afe3
Author: Jory Pratt  gentoo  org>
AuthorDate: Mon Jun 29 01:00:09 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Mon Jun 29 01:00:09 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=907edffa

dev-libs/glib: sync current stable to tree

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

 dev-libs/glib/Manifest |   3 +-
 dev-libs/glib/glib-2.60.7-r2.ebuild| 283 -
 .../{glib-2.60.6.ebuild => glib-2.62.6.ebuild} |  10 +-
 3 files changed, 4 insertions(+), 292 deletions(-)

diff --git a/dev-libs/glib/Manifest b/dev-libs/glib/Manifest
index b26aefc..f4bcefc 100644
--- a/dev-libs/glib/Manifest
+++ b/dev-libs/glib/Manifest
@@ -1,2 +1 @@
-DIST glib-2.60.6.tar.xz 4589516 BLAKE2B 
33546aea288dee4aa8c04bda610a65ce75705c0e2b98284e787d42576c61eccbd33788084b092e030fe26c50ff08e398782227d1f2ac39ef9754b91af1ab1aa1
 SHA512 
2e079d2268e0cd4dd234501c03e7784a69258ea2303e62baa4869ff7a442d121c2ffdc742467e3b0b46ad953b831962e1dd847463d66b2b28745ba0f0bfd28d9
-DIST glib-2.60.7.tar.xz 4590568 BLAKE2B 
a3f2a3bd0443a27326e8359c2ad1e6022ca1634f5c7cb4502a8011fbe85df690fff7d67665cf160bf4ed426214b87f6501a69158fb1656bdb86cacdcf076ee15
 SHA512 
d56d805a5abf6f7aeb8bf5be06b60ad049177ee23f78eacef4ce2ea88a8be49966a95e48fed17c752649f6e80937fd0ebc8f959709f623ec1f2f43ffd42d078a
+DIST glib-2.62.6.tar.xz 4703424 BLAKE2B 
0a27245be2575c574dcc730dd051a8c284f421dbc46579aadc5fbbacb8f934af4374b61bb26085e5c9ab78a868c567818f3fb9d67adddce37f5c4fec00e0d276
 SHA512 
8e3972a371f3c1a50b7d245b30e4f740583ad72ba4ab325e0e15e0732be44dfb69b603fb39dcf4989255a23a181e9ea5dd25982dd94c386cd9f21952243ad6f5

diff --git a/dev-libs/glib/glib-2.60.7-r2.ebuild 
b/dev-libs/glib/glib-2.60.7-r2.ebuild
deleted file mode 100644
index 986947b..000
--- a/dev-libs/glib/glib-2.60.7-r2.ebuild
+++ /dev/null
@@ -1,283 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} )
-
-inherit flag-o-matic gnome.org gnome2-utils linux-info meson multilib 
multilib-minimal python-any-r1 toolchain-funcs xdg
-
-DESCRIPTION="The GLib library of C routines"
-HOMEPAGE="https://www.gtk.org/;
-
-LICENSE="LGPL-2.1+"
-SLOT="2"
-IUSE="dbus debug elibc_glibc fam gtk-doc kernel_linux +mime selinux 
static-libs systemtap test utils xattr"
-RESTRICT="!test? ( test )"
-
-KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86"
-
-# * libelf isn't strictly necessary, but makes gresource tool more useful, and
-# the check is automagic in gio/meson.build. gresource is not a multilib tool
-# right now, thus it doesn't matter if non-native ABI libelf exists or not
-# (non-native binary is overwritten, it doesn't matter if libelf was linked 
to).
-# * Technically static-libs is needed on zlib, util-linux and perhaps more, but
-# these are used by GIO, which glib[static-libs] consumers don't really seem
-# to need at all, thus not imposing the deps for now and once some consumers
-# are actually found to static link libgio-2.0.a, we can revisit and either add
-# them or just put the (build) deps in that rare consumer instead of recursive
-# RDEPEND here (due to lack of recursive DEPEND).
-RDEPEND="
-   !=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
-   >=dev-libs/libpcre-8.31:3[${MULTILIB_USEDEP},static-libs?]
-   >=virtual/libffi-3.0.13-r1:=[${MULTILIB_USEDEP}]
-   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
-   >=virtual/libintl-0-r2[${MULTILIB_USEDEP}]
-   kernel_linux? ( >=sys-apps/util-linux-2.23[${MULTILIB_USEDEP}] )
-   selinux? ( >=sys-libs/libselinux-2.2.2-r5[${MULTILIB_USEDEP}] )
-   xattr? ( !elibc_glibc? ( >=sys-apps/attr-2.4.47-r1[${MULTILIB_USEDEP}] 
) )
-   virtual/libelf:0=
-   fam? ( >=virtual/fam-0-r1[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}"
-# libxml2 used for optional tests that get automatically skipped
-BDEPEND="
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   >=sys-devel/gettext-0.19.8
-   gtk-doc? ( >=dev-util/gtk-doc-1.20
-   app-text/docbook-xml-dtd:4.2
-   app-text/docbook-xml-dtd:4.5 )
-   systemtap? ( >=dev-util/systemtap-1.3 )
-   ${PYTHON_DEPS}
-   test? ( >=sys-apps/dbus-1.2.14 )
-   virtual/pkgconfig[${MULTILIB_USEDEP}]
-"
-# TODO: >=dev-util/gdbus-codegen-${PV} test dep once we modify 
gio/tests/meson.build to use external gdbus-codegen
-
-PDEPEND="
-   dbus? ( gnome-base/dconf )
-   mime? ( x11-misc/shared-mime-info )
-"
-# shared-mime-info needed for gio/xdgmime, bug #409481
-# dconf is needed to be able to save settings, bug #498436
-
-MULTILIB_CHOST_TOOLS=(
-   /usr/bin/gio-querymodules$(get_exeext)
-)
-
-pkg_setup() {
-   if use kernel_linux ; then
-   CONFIG_CHECK="~INOTIFY_USER"
-   if use test ; then
-   

[gentoo-commits] proj/musl:master commit in: net-misc/rsync/, net-misc/rsync/files/

2020-06-28 Thread Jory Pratt
commit: 5ca721e9d86a6369573b7cd0595295b1e79c44be
Author: Jory Pratt  gentoo  org>
AuthorDate: Mon Jun 29 00:47:26 2020 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Mon Jun 29 00:47:26 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=5ca721e9

net-misc/rsync: use official patch from upstream, fix metadata

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

 net-misc/rsync/files/rsync-3.2.0-simd_check.patch | 74 +++
 net-misc/rsync/metadata.xml   |  2 +
 2 files changed, 65 insertions(+), 11 deletions(-)

diff --git a/net-misc/rsync/files/rsync-3.2.0-simd_check.patch 
b/net-misc/rsync/files/rsync-3.2.0-simd_check.patch
index 255f279..11cf18a 100644
--- a/net-misc/rsync/files/rsync-3.2.0-simd_check.patch
+++ b/net-misc/rsync/files/rsync-3.2.0-simd_check.patch
@@ -1,13 +1,65 @@
-https://github.com/WayneD/rsync/pull/24
+From: Wayne Davison 
+Date: Sat, 20 Jun 2020 06:23:52 + (-0700)
+Subject: A slightly modified g++/clang++ check.
+X-Git-Tag: v3.2.1pre1~43
+X-Git-Url: 
http://git.samba.org/rsync.git/?p=rsync.git;a=commitdiff_plain;h=d4764934c35bdff297a03551c583be611cb8c64c
 
 rsync-3.2.0/configure.ac   2020-06-19 23:11:01.0 +0200
-+++ rsync-3.2.0/configure.ac   2020-06-19 23:11:01.0 +0200
-@@ -207,7 +207,7 @@
-   if test x"$CXX" != x""; then
-   CXX_VERSION=`$CXX --version 2>/dev/null | head -n 1`
-   case "$CXX_VERSION" in
+A slightly modified g++/clang++ check.
+---
+
+diff --git a/configure.ac b/configure.ac
+index d665498d..f6ca5e66 100644
+--- a/configure.ac
 b/configure.ac
+@@ -204,30 +204,28 @@ if test x"$enable_simd" != x"no"; then
+ # For x86-64 SIMD, g++ >=5 or clang++ >=7 is required
+ if test x"$build_cpu" = x"x86_64"; then
+   CXX_OK=
+-  if test x"$CXX" != x""; then
+-  CXX_VERSION=`$CXX --version 2>/dev/null | head -n 1`
+-  case "$CXX_VERSION" in
 -  g++*)
-+  *g++*)
-   CXX_VERSION=`$CXX -dumpversion | sed 's/\..*//g'`
-   if test "$CXX_VERSION" -ge "5"; then
-   CXX_OK=yes
+-  CXX_VERSION=`$CXX -dumpversion | sed 's/\..*//g'`
+-  if test "$CXX_VERSION" -ge "5"; then
+-  CXX_OK=yes
+-  fi
+-  ;;
+-  *clang*)
+-  # $CXX -dumpversion would have been ideal, but is broken on 
older clang
+-  CXX_VERSION=`echo "$CXX_VERSION" | sed 's/.*version //g' | sed 
's/\..*//g'`
+-  if test "$CXX_VERSION" -ge "7"; then
+-  CXX_OK=yes
+-  fi
+-  ;;
+-  *)
+-  CXX_VERSION='Unknown'
+-  ;;
+-  esac
+-  else
++  case "$CXX" in
++  g++|*-g++)
++  CXX_VERSION=`$CXX -dumpversion | sed 's/\..*//'`
++  if test "$CXX_VERSION" -ge "5"; then
++  CXX_OK=yes
++  fi
++  ;;
++  *clang*)
++  # -dumpversion is broken on older clang versions, so we need a 
fallback.
++  CXX_VERSION=`$CXX -dumpversion 2>/dev/null | sed 's/\..*//'`
++  if test x"$CXX_VERSION" = x; then
++  CXX_VERSION=`$CXX --version | head -n 1 | sed 's/.*version //' 
| sed 's/\..*//'`
++  fi
++  if test "$CXX_VERSION" -ge "7"; then
++  CXX_OK=yes
++  fi
++  ;;
++  *)
+   CXX='No c++'
+   CXX_VERSION='Unknown'
+-  fi
++  ;;
++  esac
+   if test x"$CXX_OK" = x"yes"; then
+   # AC_MSG_RESULT() is called below.
+   SIMD="$SIMD x86_64"
+

diff --git a/net-misc/rsync/metadata.xml b/net-misc/rsync/metadata.xml
index 148a18e..1f39f54 100644
--- a/net-misc/rsync/metadata.xml
+++ b/net-misc/rsync/metadata.xml
@@ -10,5 +10,7 @@


Provide helper scripts for using rsync via 
=net-misc/stunnel-4
+   Use system zlib instead of bundled 
one. This is incompatible with older rsync releases!
+   Enable dev-libs/xxhash support 
for hashing

 



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

2020-06-28 Thread Sergei Trofimovich
commit: aae6e3af16a2ee80feaed8b1ce5e2e7a00f3aed2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun 29 00:39:39 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 29 00:41:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae6e3af

app-admin/haskell-updater: revert "drop old"

This reverts commit f3441af37e627ac74c2629fd8e9f232ffe1cbc4c.

Older ghcs refer to 1.2*

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

 app-admin/haskell-updater/Manifest |  4 ++
 .../haskell-updater/haskell-updater-1.2.10.ebuild  | 44 +
 .../haskell-updater-1.2.12-r1.ebuild   | 46 ++
 .../haskell-updater/haskell-updater-1.2.9.ebuild   | 44 +
 .../haskell-updater/haskell-updater-1.3.1.ebuild   | 46 ++
 5 files changed, 184 insertions(+)

diff --git a/app-admin/haskell-updater/Manifest 
b/app-admin/haskell-updater/Manifest
index 7e20adfac84..c5899213517 100644
--- a/app-admin/haskell-updater/Manifest
+++ b/app-admin/haskell-updater/Manifest
@@ -1 +1,5 @@
+DIST haskell-updater-1.2.10.tar.gz 26586 BLAKE2B 
adc46f85118fa55e530aa079ef2df0663b178b15311f4f2ff6474db75aacf1277238a27a2bb98841fc1fe50b556d7f01a677861b3ce9559fe809a02db401ef8d
 SHA512 
c0a72ae77362e5ed4ea0e29175454119b1284756adeb43534bf58b661f3cabb88e08bd5903d415a9f95a6de309753dedf974ddd853b300fd215250e0ad7c
+DIST haskell-updater-1.2.12.tar.gz 26708 BLAKE2B 
d0b040cb3b6211b3c5c60f8cfa3dbccbf9cb15d246b21609a21aac746a8a034e284fe0b99891b5035980252a7aa8b376ad943f32882dc29e16226d95583cb053
 SHA512 
f3a993cb556919bf2e57fdaca7eea9146abc59096e779cbffb69a5c29fc5f6ef889c8ccf4d8331dbd9279919ea91bb05a16d83ad70085d5ef5a44d61120fe7e7
+DIST haskell-updater-1.2.9.tar.gz 26675 BLAKE2B 
a3d11cdcee886a07d87cd2888a9deea1d963b7234b4a10a6b78e9467fae4e9382c92f14a6ba0593f86bf9422ab2cb4bec823de96f34b463590ae18429c118edb
 SHA512 
d19b6154d5ef4da176638c237082586688e2ac73a41c075fc3e51979b86b9e48ca5a9bfe6c870d468d66d95c1464456feed8afc388aea282aa7aad5a35f5e0da
+DIST haskell-updater-1.3.1.tar.gz 26573 BLAKE2B 
68e5357e8f24b9b372dba4feac76595cbf35602d9d9094d616497c9d0040177b5f1def5833770041b693220717f3a4976877e0608858d5d8d426620c71e5
 SHA512 
39c36c4a8997806bb4d64625bc9ed72334a68e57f8c32f75d0c3704ab52b3b68605444c89480e5186c04bb275b3608ea9544366ebc5a00e010cc5fb4ae8296df
 DIST haskell-updater-1.3.2.tar.gz 26133 BLAKE2B 
ea72850e5ca35ec18fa00136c654435a852b072aea0402003c962abbb0e0f09e8a84568f78c9186324b0b0ee9658de1b413670e268cfe1c0056810b8c61b479c
 SHA512 
a4d80ecb65efa9ae21008e04b1363ff2196df4ba431fc5ec899bb9904c598c7a109a38f7dd86dd2dc86faca8ed5083d036d700e7f7796840ee5470401c24f3d9

diff --git a/app-admin/haskell-updater/haskell-updater-1.2.10.ebuild 
b/app-admin/haskell-updater/haskell-updater-1.2.10.ebuild
new file mode 100644
index 000..0ca325522f8
--- /dev/null
+++ b/app-admin/haskell-updater/haskell-updater-1.2.10.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+CABAL_FEATURES="bin nocabaldep"
+inherit eutils haskell-cabal
+
+DESCRIPTION="Rebuild Haskell dependencies in Gentoo"
+HOMEPAGE="https://wiki.haskell.org/Gentoo#haskell-updater;
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND=">=dev-lang/ghc-6.12.1"
+
+# Need a lower version for portage to get --keep-going
+RDEPEND="|| ( >=sys-apps/portage-2.1.6
+   sys-apps/pkgcore )"
+
+src_prepare() {
+   if use prefix; then
+   sed -i -e "s,/var/db/pkg,${EPREFIX}&,g" \
+   "${S}/Distribution/Gentoo/Packages.hs" || die
+
+   sed -i -e 's,"/","'"${EPREFIX}"'/",g' \
+   "${S}/Distribution/Gentoo/GHC.hs" || die
+   fi
+}
+
+src_configure() {
+   cabal_src_configure \
+   --bindir="${EPREFIX}/usr/sbin" \
+   --constraint="Cabal == $(cabal-version)"
+}
+
+src_install() {
+   cabal_src_install
+
+   dodoc TODO
+}

diff --git a/app-admin/haskell-updater/haskell-updater-1.2.12-r1.ebuild 
b/app-admin/haskell-updater/haskell-updater-1.2.12-r1.ebuild
new file mode 100644
index 000..8960ea72edd
--- /dev/null
+++ b/app-admin/haskell-updater/haskell-updater-1.2.12-r1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+CABAL_FEATURES="bin nocabaldep"
+inherit eutils haskell-cabal
+
+DESCRIPTION="Rebuild Haskell dependencies in Gentoo"
+HOMEPAGE="https://wiki.haskell.org/Gentoo#haskell-updater;
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE=""
+

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

2020-06-28 Thread Sergei Trofimovich
commit: 45f50c32a691620e159aa40a82ed05775313ec0e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jun 29 00:40:22 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 29 00:41:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f50c32

dev-vcs/darcs: revert "drop old"

Restore ppc keywords, used by layman.

This reverts commit 5a0365a7ec87a27b290e0eca6f4fa5c13583879f.

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

 dev-vcs/darcs/Manifest   |   5 ++
 dev-vcs/darcs/darcs-2.10.1.ebuild|  98 +
 dev-vcs/darcs/darcs-2.10.3-r1.ebuild | 103 +++
 dev-vcs/darcs/darcs-2.12.0.ebuild|  97 +
 dev-vcs/darcs/darcs-2.12.4.ebuild|  92 
 dev-vcs/darcs/darcs-2.8.4-r6.ebuild  | 134 +++
 dev-vcs/darcs/metadata.xml   |   2 +
 7 files changed, 531 insertions(+)

diff --git a/dev-vcs/darcs/Manifest b/dev-vcs/darcs/Manifest
index 539dea6307a..6fe5771f69a 100644
--- a/dev-vcs/darcs/Manifest
+++ b/dev-vcs/darcs/Manifest
@@ -1 +1,6 @@
+DIST darcs-2.10.1.tar.gz 1509208 BLAKE2B 
54df9e87ab5b4d49146eeaad99c4718cc38b6fb032da2fb005c1ddc8a6d5ffa725b9c7caac30eb4da394bfb0926ba76040e24a69beeacd25e810cad8987d34f3
 SHA512 
b8c3971da3d635a7d90e35226c2ffa6d6ca8e78ba18793c632b7509bc4d52c1bda2490d147cdaea5842fbe5d8826b0025de61e2fb4f58c441875c5858d910e47
+DIST darcs-2.10.3.tar.gz 1513296 BLAKE2B 
4a900a4307f1067cb078396f28358f75107821a67104ec91653cdc0ae1c5503fd18baa3d0ae95a0476fa5917345de932411053d35d8f0cfee3782cdd84a13c7e
 SHA512 
cf8f34df331d8a47c6a25775c465824e5d71ed00ae6bc477989b4bb0e7fad606b213a4fb4e06b02dca096df2b6b1fe36f394672a112b48c6b56188a7eae8f90e
+DIST darcs-2.12.0.tar.gz 1465730 BLAKE2B 
a021796aefc38aaf355a3156f26c8f313ffbe44ad5e9172883217f609c73baed49301a26bbc818574175c0e7174ad6401407ae9492584e3aed56e8fb2bf10f7a
 SHA512 
654f9054dfe8e23e17ae00cdf22153ddaf89d114c5ee0e1ca86f373c1abf62b7bd808965f4d4df695aaba44d1d334d725cc0d57dea5df7cd1992a0ef15e49135
+DIST darcs-2.12.4.tar.gz 1462383 BLAKE2B 
49827a07770da8253775649e9a72b33d4e715f7eae63c093c6d3a16f097cd9f3246e2aec4ee4782efd1629423a3d3a23d6d5350131ed4daa4fc47701fd6449ae
 SHA512 
52a0b9b8a23b05dc29513c20c3c0fdc0b696da87156ea83a5736ea294618b993d1f3914f82a918e331db5de0746c147244f46d396ee7dbb02fee116825e1dd6a
 DIST darcs-2.12.5.tar.gz 1460698 BLAKE2B 
9050b5863221d2c82e93d689b733b34a0b63fd0e7f29b0041ba3ff10e4359e4d32e1c8bca5ac4722a65fbebab66b25cba443efe23ee3e4a87d4117a7335db4de
 SHA512 
9bda8149269dc23750321f3929e156e32c76de4f5bb8291bc248d0e326bf08b69c82ef7383f9d02dcc65ca199078f6e1ab575197fc2aee225486a8c1b9275542
+DIST darcs-2.8.4.tar.gz 1301464 BLAKE2B 
748494ae1c34318c14e128a4d08667b839644dbcf2b2d8bbcc86263ee5332f859f91bc2a56f3c6ccf6a465f45a90d97d304c9c15ebdd3cdd709c251c61c15a6c
 SHA512 
c60531bacea43bdd5a18ae461dd390fe64682cac56fa4e6b5153a5da3c003b59d8fb24827bd42b4b30f0d2c61877d36b58eb98317644f9f8a200ab7c5961c48e

diff --git a/dev-vcs/darcs/darcs-2.10.1.ebuild 
b/dev-vcs/darcs/darcs-2.10.1.ebuild
new file mode 100644
index 000..40404e1b806
--- /dev/null
+++ b/dev-vcs/darcs/darcs-2.10.1.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.5.
+#hackport: flags: 
+library,+executable,-hpc,-warn-as-error,+pkgconfig,-rts,-static,-optimize,hashed-storage-diff:diff
+
+CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="a distributed, interactive, smart revision control system"
+HOMEPAGE="http://darcs.net/;
+SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+curl diff +http +network-uri +terminfo +threaded"
+
+RESTRICT=test # missing file 'tests/bin/renameHelper.hs'
+
+RDEPEND=">=dev-haskell/attoparsec-0.11:=[profile?] 
=dev-haskell/base16-bytestring-0.1:=[profile?] 
=dev-haskell/binary-0.5:=[profile?] =dev-haskell/cryptohash-0.4:=[profile?] 
=dev-haskell/data-ordlist-0.4:=[profile?] 
=dev-haskell/dataenc-0.11:=[profile?] 
=dev-haskell/hashable-1.0:=[profile?] 
=dev-haskell/haskeline-0.6.3:=[profile?] 
=dev-haskell/html-1.0:=[profile?] =dev-haskell/mmap-0.5:=[profile?] =dev-haskell/mtl-2.1:=[profile?] =dev-haskell/old-locale-1.0:=[profile?] 
=dev-haskell/old-time-1.1:=[profile?] 
=dev-haskell/parsec-3.1:=[profile?] =dev-haskell/random-1.0:=[profile?] =dev-haskell/regex-applicative-0.2:=[profile?] 
=dev-haskell/regex-compat-tdfa-0.95.1:=[profile?] 
=dev-haskell/tar-0.4:=[profile?] =dev-haskell/text-0.11.2.0:=[profile?] 
=dev-haskell/transformers-compat-0.4:=[profile?] 
=dev-haskell/unix-compat-0.1.2:=[profile?] 
=dev-haskell/utf8-string-0.3.6:=[profile?] 
=dev-haskell/vector-0.7:=[profile?] 
=dev-haskell/zip-archive-0.2.3:=[profile?] 
=dev-haskell/zlib-0.5.3.0:=[profile?] 
=dev-lang/ghc-7.4.1:=
+   

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

2020-06-28 Thread Aaron Bauman
commit: b703c1e3ec0aa1da3bbd0c4704ccee5a397fd74d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Jun 29 00:37:08 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Jun 29 00:37:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b703c1e3

profiles/package.mask: fix net-mail/getmail spelling

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index e2dc33229d4..011ba070959 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -58,7 +58,7 @@ media-video/tovid
 net-dns/maradns
 net-irc/irker
 net-mail/archivemail
-net-mail/getmai
+net-mail/getmail
 net-nds/nsscache
 net-wireless/airpwn
 sci-chemistry/bkchem



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

2020-06-28 Thread Aaron Bauman
commit: d37cd8c672660fa7f34a37dfd6cedf2ec311a3ea
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Jun 29 00:33:43 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Jun 29 00:33:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d37cd8c6

profiles/package.mask: add more py2 only stuff

* Please see -dev ML for discussions
* Port package to Py3, remove bindings if not needed, etc

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 030cd11c8f2..e2dc33229d4 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,45 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-06-28)
+# More Py2 only stuff. Plz see -dev ML for discussions
+# Remove bindings, port to Py3, etc
+# Removal in 30 days
+app-arch/deltarpm
+app-crypt/virtualsmartcard
+app-text/duali
+app-text/mftrace
+app-text/queequeg
+app-text/referencer
+dev-libs/libmacaroons
+dev-libs/tut
+dev-python/elib-intl
+dev-python/eunuchs
+dev-python/medusa
+dev-python/misaka
+dev-python/python-iwscan
+dev-util/confix
+dev-util/qmtest
+dev-util/unrpyc
+games-engines/gemrb
+media-sound/lilycomp
+media-video/tovid
+net-dns/maradns
+net-irc/irker
+net-mail/archivemail
+net-mail/getmai
+net-nds/nsscache
+net-wireless/airpwn
+sci-chemistry/bkchem
+sci-chemistry/propka
+sci-chemistry/pymol-plugins-bni-tools
+sci-chemistry/pymol-plugins-emovie
+sci-chemistry/viewmol
+sci-libs/chemkit
+sys-apps/x86info
+www-misc/surl
+x11-wm/plwm
+
 # Andreas Sturmlechner  (2020-06-28)
 # WIP PipeWire ebuild, breaks all current revdeps in ebuild repository
 # sys-apps/xdg-desktop-portal-1.7.2 depends on masked PipeWire >=0.3



[gentoo-commits] repo/gentoo:master commit in: media-sound/gtick/, media-sound/gtick/files/

2020-06-28 Thread Aaron Bauman
commit: 0cb2564338af6b66f577033cf25638de9c96cf9d
Author: Alexander Tsoy  tsoy  me>
AuthorDate: Sun Jun 28 22:22:50 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jun 28 23:51:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb25643

media-sound/gtick: Remove old

Signed-off-by: Alexander Tsoy  tsoy.me>
Closes: https://github.com/gentoo/gentoo/pull/16479
Signed-off-by: Aaron Bauman  gentoo.org>

 media-sound/gtick/Manifest |  1 -
 media-sound/gtick/files/gtick-0.5.4-desktop.patch  | 32 ---
 .../gtick/files/gtick-0.5.4-fno-common.patch   | 27 -
 media-sound/gtick/gtick-0.5.4-r1.ebuild| 65 --
 media-sound/gtick/gtick-0.5.4.ebuild   | 41 --
 5 files changed, 166 deletions(-)

diff --git a/media-sound/gtick/Manifest b/media-sound/gtick/Manifest
index c932678881c..a717bbc82de 100644
--- a/media-sound/gtick/Manifest
+++ b/media-sound/gtick/Manifest
@@ -1,2 +1 @@
-DIST gtick-0.5.4.tar.gz 641902 BLAKE2B 
f1832f46b559908ae0c40bd0f6a08e145a0ba58a6cf2f8e7235b4f3f0b9141ea514cf52c51cef24d745ce360423daab855c42b5f6719664be65bf5f254650c1d
 SHA512 
28ea6f38952c376f1f684e7b598d1032063f7fdf3454cdb86735cb835079312c0d1c30dfeade7272f5399296f2a2ede5b81524036a9ac0d91e0878865fab446e
 DIST gtick-0.5.5.tar.gz 659596 BLAKE2B 
74e40cd20bf24ef8a9cb9f6abf49d885bb5e660a6b4faa40fa18a10153edad1e522ca555c802e9b5364abbc94f79989e4dfdfd2d19a038f4c6f63895a287dc12
 SHA512 
8f308c312f6cc59bb8b786af09b1498c76adc1b2692369886e85fa97524b417bf3a5e075ba20061f009b36cb4fe12cd455befe7e466d8215620640229ebbdb87

diff --git a/media-sound/gtick/files/gtick-0.5.4-desktop.patch 
b/media-sound/gtick/files/gtick-0.5.4-desktop.patch
deleted file mode 100644
index 7aa0995b039..000
--- a/media-sound/gtick/files/gtick-0.5.4-desktop.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Downstream patch. No upstream activity since 2014.
-
-From b07f665d712fdbebfd506ef6301fc9ac71660e96 Mon Sep 17 00:00:00 2001
-From: Alexander Tsoy 
-Date: Thu, 19 Mar 2020 21:17:22 +0300
-Subject: [PATCH 2/2] Fix desktop file
-

- gtick.desktop | 7 ---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/gtick.desktop b/gtick.desktop
-index 05cf5ed..a31dee3 100644
 a/gtick.desktop
-+++ b/gtick.desktop
-@@ -5,9 +5,10 @@ Name=GTick
- Comment=a GTK-based metronome
- Comment[pt]=Um metrônomo baseado em GTK
- Comment[pt-br]=Um metrônomo baseado em GTK
--Exec=/usr/bin/gtick
--Icon=/usr/share/icons/hicolor/64x64/apps/gtick.xpm
-+Exec=gtick
-+Icon=gtick
- Terminal=false
- Type=Application
- Categories=GTK;AudioVideo;Audio;
--GenericName[pt_BR]=
-+GenericName=Graphical Metronome
-+StartupNotify=true
--- 
-2.24.1
-

diff --git a/media-sound/gtick/files/gtick-0.5.4-fno-common.patch 
b/media-sound/gtick/files/gtick-0.5.4-fno-common.patch
deleted file mode 100644
index 37747cef1b8..000
--- a/media-sound/gtick/files/gtick-0.5.4-fno-common.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Downstream patch. No upstream activity since 2014.
-
-From 23f5585ba3dcf276cd3f71c25f710e68823f97e9 Mon Sep 17 00:00:00 2001
-From: Alexander Tsoy 
-Date: Tue, 17 Mar 2020 17:14:50 +0300
-Subject: [PATCH 1/2] Fix building with -fno-common
-

- src/optionlexer.l | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/optionlexer.l b/src/optionlexer.l
-index df79dd5..97ed29d 100644
 a/src/optionlexer.l
-+++ b/src/optionlexer.l
-@@ -40,7 +40,7 @@
- #include "optionlexer.h"
- 
- char* option_filename;
--YYLTYPE option_lloc;
-+#define YYLTYPE option_lloc;
- 
- void option_locate();
- %}
--- 
-2.24.1
-

diff --git a/media-sound/gtick/gtick-0.5.4-r1.ebuild 
b/media-sound/gtick/gtick-0.5.4-r1.ebuild
deleted file mode 100644
index ca520476a37..000
--- a/media-sound/gtick/gtick-0.5.4-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop xdg-utils
-
-DESCRIPTION="Metronome application supporting different meters and speeds 
ranging"
-HOMEPAGE="https://www.antcom.de/gtick;
-SRC_URI="https://www.antcom.de/gtick/download/${P}.tar.gz;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="nls sndfile"
-
-RDEPEND="media-sound/pulseaudio
-   x11-libs/gtk+:2
-   sndfile? ( media-libs/libsndfile )"
-DEPEND="${RDEPEND}"
-BDEPEND="sys-devel/bison
-   sys-devel/flex
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-RESTRICT="test"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-fno-common.patch
-   "${FILESDIR}"/${P}-desktop.patch
-)
-
-src_prepare() {
-   default
-
-   sed -i 's:^\(appdatadir = .*/\)appdata:\1metainfo:' \
-   Makefile.in || die
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable nls)
-   $(use_with sndfile)
-   )
-
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   local res
-
- 

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

2020-06-28 Thread Thomas Deutschmann
commit: 1f256ece35cddedb93e6abdc7faae39bdb20c221
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 23:06:34 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 23:06:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f256ece

app-text/vgrep: add BSD license

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

 app-text/vgrep/vgrep-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/vgrep/vgrep-2.3.1.ebuild 
b/app-text/vgrep/vgrep-2.3.1.ebuild
index 0ccd06c8eb5..f50049ccd32 100644
--- a/app-text/vgrep/vgrep-2.3.1.ebuild
+++ b/app-text/vgrep/vgrep-2.3.1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A pager for grep, git-grep and similar grep 
implementations"
 HOMEPAGE="https://github.com/vrothberg/vgrep;
 SRC_URI="https://github.com/vrothberg/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
-LICENSE="GPL-3+ MIT MIT-with-advertising"
+LICENSE="BSD GPL-3+ MIT MIT-with-advertising"
 SLOT="0"
 KEYWORDS="~amd64"
 



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

2020-06-28 Thread Thomas Deutschmann
commit: 24d5a90e18b43177b7a423caac93f6a25e62993f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 22:58:07 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 22:58:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24d5a90e

app-text/vgrep: new package

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

 app-text/vgrep/Manifest   |  1 +
 app-text/vgrep/metadata.xml   | 12 
 app-text/vgrep/vgrep-2.3.1.ebuild | 33 +
 3 files changed, 46 insertions(+)

diff --git a/app-text/vgrep/Manifest b/app-text/vgrep/Manifest
new file mode 100644
index 000..6de74d93406
--- /dev/null
+++ b/app-text/vgrep/Manifest
@@ -0,0 +1 @@
+DIST vgrep-2.3.1.tar.gz 1149421 BLAKE2B 
c4c9a414bba5e509d57faa9ca6f6ce5cae1dbb001ff8b410ad54691ec6bf39f41c535fd25bdd5d93fdf89b4e4b49acf4dfa9a8956653e5c5e2ce39bd7da8d484
 SHA512 
0fa65151ae40f7fefc4e5b1af8e6ea332b50b1136849ec0902dd110786ca14204441e27c65a036b08fa56bf04a6325d8aa8ef2d4d02cdb0e0fe219896e24d694

diff --git a/app-text/vgrep/metadata.xml b/app-text/vgrep/metadata.xml
new file mode 100644
index 000..4965843d0e8
--- /dev/null
+++ b/app-text/vgrep/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   whi...@gentoo.org
+   Thomas Deutschmann
+   
+   
+   https://github.com/vrothberg/vgrep/issues
+   vrothberg/vgrep
+   
+

diff --git a/app-text/vgrep/vgrep-2.3.1.ebuild 
b/app-text/vgrep/vgrep-2.3.1.ebuild
new file mode 100644
index 000..0ccd06c8eb5
--- /dev/null
+++ b/app-text/vgrep/vgrep-2.3.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit go-module
+
+DESCRIPTION="A pager for grep, git-grep and similar grep implementations"
+HOMEPAGE="https://github.com/vrothberg/vgrep;
+SRC_URI="https://github.com/vrothberg/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3+ MIT MIT-with-advertising"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# Uses golangci-lint
+RESTRICT="test"
+
+DOCS=( README.md )
+
+# go binary
+QA_PRESTRIPPED="usr/bin/vgrep"
+
+src_compile() {
+   emake build
+}
+
+src_install() {
+   local prefix="${D}/usr"
+   mkdir -p "${prefix}"/bin || die
+
+   emake PREFIX="${prefix}" install
+}



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

2020-06-28 Thread Louis Sautier
commit: f027c145576b1c61cdc28173d32ee7f598fcb40b
Author: Louis Sautier  gentoo  org>
AuthorDate: Sun Jun 28 22:52:58 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Sun Jun 28 22:52:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f027c145

dev-python/humanize: bump to 2.4.1

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

 dev-python/humanize/Manifest  |  1 +
 dev-python/humanize/humanize-2.4.1.ebuild | 36 +++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/humanize/Manifest b/dev-python/humanize/Manifest
index d8adbb8174a..de3e9c5045e 100644
--- a/dev-python/humanize/Manifest
+++ b/dev-python/humanize/Manifest
@@ -1,2 +1,3 @@
 DIST humanize-0.5.1.tar.gz 20507 BLAKE2B 
55d7b598b32658b1d4c4741b37b5c33bdc9d63a5a779455e2fb93e1e4c3a0d8fd58e8522ef82734e1ba2b161fd881829373ba3569baffd9ea3271ad7ed3e7568
 SHA512 
dd7ad7f3c564cc6abcb6b128e50dbea7f19f7f418bfd936aae2472961c53ec71202133c5c2b5b930ef41ef807b51d6ba1210565627ed32c0b41acc0abd32a2d5
 DIST humanize-2.4.0.tar.gz 46489 BLAKE2B 
bb2cfeebd25f4aa073539bb616a5d05db2827dd2aaa6f093d46b51415ef3b954918a45f2434b9ce41845389be986200e23b1cb752e8a0bd03649377ea46fbec6
 SHA512 
20707a59f2f0bbc52e1e5d906e733561f53c3bc429ce24662ea9014d7f73f87a8f3ae9aa62f2564fafbe9de0d6b250e8fecec4a3cb81968c5b24d61ad9627d1b
+DIST humanize-2.4.1.tar.gz 46827 BLAKE2B 
e9b37283c5a4db1c5b2a9ef61919fe02a4e5720711129910e51b0b3481290c9bfa4e29225db75c37d83884c00065fa71b599ed42fac41414f481167d33091a98
 SHA512 
5d8534d2e97f375c7ec065dd239334a2a5da9d058f7c0312cb2683c3e42f5b8f99e117782e0888a6e5348f43958523df6609c294f5af7c971d81bd29679a0500

diff --git a/dev-python/humanize/humanize-2.4.1.ebuild 
b/dev-python/humanize/humanize-2.4.1.ebuild
new file mode 100644
index 000..4785489816a
--- /dev/null
+++ b/dev-python/humanize/humanize-2.4.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
+# The package uses pkg_resources to determine its version
+DISTUTILS_USE_SETUPTOOLS=manual
+
+inherit distutils-r1
+
+DESCRIPTION="Common humanization utilities"
+HOMEPAGE="https://github.com/jmoiron/humanize/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   # The package uses pkg_resources to determine its version
+   distutils_install_for_testing
+   pytest -vv || die "Tests fail with ${EPYTHON}"
+}



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

2020-06-28 Thread Sergei Trofimovich
commit: 527a395c0efb1a8b384aef9292bc5cd30bd64546
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:35:03 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=527a395c

dev-util/shellcheck: drop old

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

 dev-util/shellcheck/Manifest|  1 -
 dev-util/shellcheck/shellcheck-0.7.0.ebuild | 40 -
 2 files changed, 41 deletions(-)

diff --git a/dev-util/shellcheck/Manifest b/dev-util/shellcheck/Manifest
index 486d282de02..75f0557a6bf 100644
--- a/dev-util/shellcheck/Manifest
+++ b/dev-util/shellcheck/Manifest
@@ -1,2 +1 @@
-DIST ShellCheck-0.7.0.tar.gz 163027 BLAKE2B 
2d6348f21cb9598c0133cc1548f43727d56155883db83c38483b581b3565c67d5bf9d5333b6c39569dac1f07b19b21db1d62d83e675bb4aa9735725879aaf6e2
 SHA512 
88a0cb2a2879f597b832979fd934ee63e0f1ca256e5f9e7c51667744d09848817fdbe3988898f49226fc52ec27d92c314a9075995c3110ee10b24468cb60c657
 DIST ShellCheck-0.7.1.tar.gz 163288 BLAKE2B 
efc8c56348ba924baf660ae16d84e023cdd1a5ef8b355b492844ca41aeb3242eb1e5862bea7f12c69fa43cce285a44afaf95125816f62fbe316d9bdca467b1ae
 SHA512 
fc84bd67e30af1378a92c1e378693a2c181e9567d53f2590e76aedb9f607276b90abd2ac83818c36524bd77a480df347af5a0879a925a846f35440ab207fad8a

diff --git a/dev-util/shellcheck/shellcheck-0.7.0.ebuild 
b/dev-util/shellcheck/shellcheck-0.7.0.ebuild
deleted file mode 100644
index 572de9c65f0..000
--- a/dev-util/shellcheck/shellcheck-0.7.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# ebuild generated by hackport 0.6.
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-MY_PN="ShellCheck"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Shell script analysis tool"
-HOMEPAGE="https://www.shellcheck.net/;
-SRC_URI="https://hackage.haskell.org/package/${MY_P}/${MY_P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-haskell/aeson:=[profile?]
-   >=dev-haskell/diff-0.2.0:=[profile?]
-   >=dev-haskell/mtl-2.2.1:=[profile?]
-   >=dev-haskell/parsec-3.0:=[profile?]
-   >=dev-haskell/quickcheck-2.7.4:2=[template-haskell,profile?]
-   dev-haskell/regex-tdfa:=[profile?]
-   >=dev-lang/ghc-8.0.1:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.24.0.0 

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

2020-06-28 Thread Sergei Trofimovich
commit: 70798e226e66fb4ae5d91b232ad4841e91bfc890
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:28:16 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70798e22

sys-devel/crossdev: drop old

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

 sys-devel/crossdev/Manifest |  1 -
 sys-devel/crossdev/crossdev-20200125.ebuild | 36 -
 2 files changed, 37 deletions(-)

diff --git a/sys-devel/crossdev/Manifest b/sys-devel/crossdev/Manifest
index 0b1928fb6d1..1e1b1fa752f 100644
--- a/sys-devel/crossdev/Manifest
+++ b/sys-devel/crossdev/Manifest
@@ -1,2 +1 @@
-DIST crossdev-20200125.tar.xz 27380 BLAKE2B 
4871b3ba1130c8d2e4df263aea155f95352417e65dabe64968cf9cc2628f9a1ae32a7e569cdea73a04d32d05396b0a83720bbd712a5f5b703606692e6b61516b
 SHA512 
a4db1d09179b23f032af59c4857c3ab58d7944633b0c612a1f8aa0ecc38201f960cc1da761f34288568bb7f3434fe4da5094b4d4445be047da8838a096f6c606
 DIST crossdev-20200131.tar.xz 28200 BLAKE2B 
b1b8e283d150968339e259c48b3f066f5233af2578b04e060d5e69c002af6ffd65214c559353a8ebcf3238c2b60d0ddfa29131e26c707647717088df55f77282
 SHA512 
e1d18a7d69cdc0240d30e77b1634bd6b5806e1576227e4ffa394805aa217c050ced75436e9a004a35bc9bc47b96ea2f3d8e19ef530a106736f7cc0d995bee4a5

diff --git a/sys-devel/crossdev/crossdev-20200125.ebuild 
b/sys-devel/crossdev/crossdev-20200125.ebuild
deleted file mode 100644
index 7a6c51ec73f..000
--- a/sys-devel/crossdev/crossdev-20200125.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="git://anongit.gentoo.org/proj/crossdev.git"
-else
-   SRC_URI="mirror://gentoo/${P}.tar.xz
-   https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
-fi
-
-DESCRIPTION="Gentoo Cross-toolchain generator"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Crossdev;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   >=sys-apps/portage-2.1
-   >=app-portage/portage-utils-0.55
-   app-shells/bash
-   sys-apps/gentoo-functions
-"
-DEPEND="app-arch/xz-utils"
-
-src_install() {
-   default
-
-   if [[ "${PV}" == "" ]] ; then
-   sed -i "s:@CDEVPV@:${EGIT_VERSION}:" "${ED}"/usr/bin/crossdev 
|| die
-   fi
-}



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

2020-06-28 Thread Sergei Trofimovich
commit: 6c6001b08e4b126861658dc18bb5773ff9c1c2da
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:34:08 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c6001b0

dev-util/diffoscope: drop old

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

 dev-util/diffoscope/Manifest  |  1 -
 dev-util/diffoscope/diffoscope-148.ebuild | 71 ---
 2 files changed, 72 deletions(-)

diff --git a/dev-util/diffoscope/Manifest b/dev-util/diffoscope/Manifest
index 0737372bb38..579c87cb342 100644
--- a/dev-util/diffoscope/Manifest
+++ b/dev-util/diffoscope/Manifest
@@ -1,2 +1 @@
-DIST diffoscope-148.tar.gz 1570459 BLAKE2B 
007900cd798b3371f3b779a35a2d12fc5d2df3c1430ac091992550161ffe2be43efc6e4837173221bb75e72f9ca59afacbaad65420d0ad7310b80b924998
 SHA512 
e3012c97133e44009295fd3647012cf0e51e449b0e2b506be40169d8c444fc04654b0bf3ba92dcb0ec2ac85bab4577b75e986ce0e41e18ca69718004265f6117
 DIST diffoscope-149.tar.gz 1570458 BLAKE2B 
8182822f01805277937bf6993094a2ad2e32fde47a67a01a071691487582c22f9be9e299701ad2feda85ce79d5952747348e3180b22e60878d01f28f6e8a9ff5
 SHA512 
557f0edcd5620a097668108a223f3f58338890eaeb096982c398f1182e26219027c4d62dab688a19743be1167d0affa9dbd6b7b7440fcf86a7f55ade7e3be288

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



[gentoo-commits] repo/gentoo:master commit in: app-forensics/quickfuzz/

2020-06-28 Thread Sergei Trofimovich
commit: 9614a26ac47146c014890eefb028d53c0884ec3d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:40:35 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9614a26a

app-forensics/quickfuzz: drop longdescription from metadata.xml

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

 app-forensics/quickfuzz/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/app-forensics/quickfuzz/metadata.xml 
b/app-forensics/quickfuzz/metadata.xml
index 1e1e2913640..ed6765a28fd 100644
--- a/app-forensics/quickfuzz/metadata.xml
+++ b/app-forensics/quickfuzz/metadata.xml
@@ -14,9 +14,6 @@
support networking formats
support PKI formats

-   
-   An experimental grammar fuzzer in Haskell using QuickCheck.
-   

CIFASIS/QuickFuzz




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

2020-06-28 Thread Sergei Trofimovich
commit: a28d87e0ebf5308b62d86b81abeb02f8b0cd5c67
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:24:28 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a28d87e0

sys-devel/sparse: drop old

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

 sys-devel/sparse/Manifest|  3 --
 sys-devel/sparse/sparse-0.5.1.ebuild | 48 
 sys-devel/sparse/sparse-0.5.2_rc1.ebuild | 50 -
 sys-devel/sparse/sparse-0.6.0.ebuild | 64 
 4 files changed, 165 deletions(-)

diff --git a/sys-devel/sparse/Manifest b/sys-devel/sparse/Manifest
index 0b6c7726fdd..69ecd80dccb 100644
--- a/sys-devel/sparse/Manifest
+++ b/sys-devel/sparse/Manifest
@@ -1,4 +1 @@
-DIST sparse-0.5.1.tar.xz 215144 BLAKE2B 
209aa7cf34a9135dae38466a0ba41ff4fb888c363ed59a68a5820d4b6ef1636d717b8172a6d638d9dbc61197efb7a3e06ef85830b6f1c359737520b4b3aa0fbe
 SHA512 
f7fc516ef8343a4153b9bda1b50b326dcd55a77fce5acccd9aa4c5636d6510573c7e26b0a7ca1df847082faf2be2d292336ad1cec855e395703a6b1e04d3a8a1
-DIST sparse-0.5.2-rc1.tar.gz 282810 BLAKE2B 
74d06230ceb06dac427984c365223633ef795b2f6329c69da5183b9f357ee05d74b04b18cf400b4d813026a746218edbf9bc0b2aa371c8a3681ac10ce19b
 SHA512 
b58458b97e91b7d02d032a946d9870a3fd227959608fb7847864ad1a92258aeb0461da513f4d6d3b37791ed8d5fc41ac01cfef0fcaf34b229090ff078672ef40
-DIST sparse-0.6.0.tar.xz 284668 BLAKE2B 
9bb568fe23ac96d6e179e5c5927ff34e9fc88909d367f6ab49c8862a8e599df83602ba72bc42ba3bf63823b024340f101128c528ebf767f4e29da7f5324a1f40
 SHA512 
5c6c88f203c941bf0efd28802ef91641c96e7d4b4688a5176d091ff0fd6a650d9147e590b631602a8bd08994a35261977569367861a6d605ccdd25e4a07debf9
 DIST sparse-0.6.1.tar.xz 287880 BLAKE2B 
026e7770460ab576b91e8c401c642e95269ddd7c90c0f855b0246448ca653b95a899b4bf647134c090c06c802757b6415dcc89bc214fb7ff124c2ce3888fccb0
 SHA512 
2faad9b3263f19f941cd6a5891960d2c7d1066c664d3ef68e722d461785aeed2d4a9539df3556bbd98c022e7ee965b8030c49272ab6003113ba3b36f73c00187

diff --git a/sys-devel/sparse/sparse-0.5.1.ebuild 
b/sys-devel/sparse/sparse-0.5.1.ebuild
deleted file mode 100644
index 45819e26886..000
--- a/sys-devel/sparse/sparse-0.5.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="C semantic parser"
-HOMEPAGE="https://sparse.wiki.kernel.org/index.php/Main_Page;
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://git.kernel.org/pub/scm/devel/${PN}/${PN}.git;
-   KEYWORDS=""
-else
-   
SRC_URI="https://www.kernel.org/pub/software/devel/${PN}/dist/${P}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="gtk llvm test xml"
-RESTRICT="!test? ( test )"
-
-RDEPEND="gtk? ( x11-libs/gtk+:2 )
-   llvm? ( >=sys-devel/llvm-3.0 )
-   xml? ( dev-libs/libxml2 )"
-DEPEND="${RDEPEND}
-   gtk? ( virtual/pkgconfig )
-   xml? ( virtual/pkgconfig )"
-
-PATCHES=( "${FILESDIR}/${PN}-0.5.1-cmdline-include.patch" )
-
-src_prepare() {
-   tc-export AR CC PKG_CONFIG
-   sed -i \
-   -e '/^PREFIX=/s:=.*:=/usr:' \
-   -e "/^LIBDIR=/s:/lib:/$(get_libdir):" \
-   -e '/^COMMON_CFLAGS =/{s:=:= $(CPPFLAGS):;s:-O2 
-finline-functions -fno-strict-aliasing -g:-fno-strict-aliasing:}' \
-   -e "s:pkg-config:${PKG_CONFIG}:" \
-   Makefile || die
-   export MAKEOPTS+=" V=1 AR=${AR} CC=${CC} HAVE_GTK2=$(usex gtk) 
HAVE_LLVM=$(usex llvm) HAVE_LIBXML=$(usex xml)"
-   default
-}
-
-src_compile() {
-   emake $(usex test all all-installable)
-}

diff --git a/sys-devel/sparse/sparse-0.5.2_rc1.ebuild 
b/sys-devel/sparse/sparse-0.5.2_rc1.ebuild
deleted file mode 100644
index ad1d4593113..000
--- a/sys-devel/sparse/sparse-0.5.2_rc1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="C semantic parser"
-HOMEPAGE="https://sparse.wiki.kernel.org/index.php/Main_Page;
-
-RC_COMMIT=d1c2f8d3d4205ca1ae7cf0ec2cbd89a7fce73e5c
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://git.kernel.org/pub/scm/devel/${PN}/${PN}.git;
-   KEYWORDS=""
-else
-   
SRC_URI="https://git.kernel.org/pub/scm/devel/${PN}/${PN}.git/snapshot/${PN}-${RC_COMMIT}.tar.gz
 -> ${PN}-${PV/_/-}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="gtk llvm test xml"
-RESTRICT="!test? ( test )"
-
-RDEPEND="gtk? ( x11-libs/gtk+:2 )
-   llvm? ( >=sys-devel/llvm-3.0 )
-   xml? ( 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/hfsutils/

2020-06-28 Thread Sergei Trofimovich
commit: 7a4fd30bda97706f28353142a26117981695d96c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:26:46 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a4fd30b

sys-fs/hfsutils: drop old

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

 sys-fs/hfsutils/Manifest |  1 -
 sys-fs/hfsutils/hfsutils-3.2.6-r6.ebuild | 48 
 2 files changed, 49 deletions(-)

diff --git a/sys-fs/hfsutils/Manifest b/sys-fs/hfsutils/Manifest
index 89ac4f034ad..a8fde341db1 100644
--- a/sys-fs/hfsutils/Manifest
+++ b/sys-fs/hfsutils/Manifest
@@ -1,3 +1,2 @@
-DIST hfsutils-3.2.6.tar.gz 207697 BLAKE2B 
96c3d839e3c07e325e4e175a484b3c637d7cdebdc02ec11ee6810096162d155aa75d71a8e133b801b767a78d50115384460c4181359767f49e015524800885e8
 SHA512 
0db3050e5969c4e4e6c6ddb10cbc221a5837eb1e12f9331e7129511d31a4ec8d38420ed0b948dadc85ed990f3b1085e930eb7f0c37b3883866d963e47cbbb173
 DIST hfsutils_3.2.6-14.debian.tar.xz 6780 BLAKE2B 
00474d328f5ec2614ec429052e6940b9eb10d04f433399f686ccc24d66ca1559e7ca45c4ab3ebe6386e02fc4de5ffd96242a7aa6f58d6032798d5536da912a61
 SHA512 
33d44f7b9094743031fc9315cf9380e158225ee2cd5af7a5ec7c55a2ae9af42e16f9cad3c667b153a1d3d9484d4ea773d34b88b78bfe9499df52a8b9d77defb2
 DIST hfsutils_3.2.6.orig.tar.gz 207697 BLAKE2B 
96c3d839e3c07e325e4e175a484b3c637d7cdebdc02ec11ee6810096162d155aa75d71a8e133b801b767a78d50115384460c4181359767f49e015524800885e8
 SHA512 
0db3050e5969c4e4e6c6ddb10cbc221a5837eb1e12f9331e7129511d31a4ec8d38420ed0b948dadc85ed990f3b1085e930eb7f0c37b3883866d963e47cbbb173

diff --git a/sys-fs/hfsutils/hfsutils-3.2.6-r6.ebuild 
b/sys-fs/hfsutils/hfsutils-3.2.6-r6.ebuild
deleted file mode 100644
index 23076395fd7..000
--- a/sys-fs/hfsutils/hfsutils-3.2.6-r6.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit toolchain-funcs
-
-DESCRIPTION="HFS FS Access utils"
-HOMEPAGE="https://www.mars.org/home/rob/proj/hfs/;
-SRC_URI="ftp://ftp.mars.org/pub/hfs/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 sparc x86"
-IUSE="tcl tk"
-
-DEPEND="
-   tcl? ( dev-lang/tcl:0= )
-   tk? ( dev-lang/tk:0= )"
-RDEPEND="${DEPEND}"
-
-# use tk requires tcl - bug #150437
-REQUIRED_USE="tk? ( tcl )"
-PATCHES=(
-   "${FILESDIR}"/${P}-errno.patch
-   "${FILESDIR}"/largerthan2gb.patch
-   "${FILESDIR}"/${P}-fix-tcl-8.6.patch
-)
-
-src_configure() {
-   tc-export CC
-   econf $(use_with tcl) $(use_with tk)
-}
-
-src_compile() {
-   emake AR="$(tc-getAR) rc" CC="$(tc-getCC)" RANLIB="$(tc-getRANLIB)"
-   emake CC="$(tc-getCC)" -C hfsck
-}
-
-src_install() {
-   dodir /usr/bin /usr/lib /usr/share/man/man1
-   emake \
-   prefix="${ED}"/usr \
-   MANDEST="${ED}"/usr/share/man \
-   infodir="${ED}"/usr/share/info \
-   install
-   dobin hfsck/hfsck
-   dodoc BLURB CHANGES README TODO doc/*.txt
-}



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

2020-06-28 Thread Sergei Trofimovich
commit: 3b7a6e29cda9bd3c78570243780f24d47d4ad67c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:34:34 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b7a6e29

dev-vcs/git-annex: drop old

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

 dev-vcs/git-annex/git-annex-6.20170818.ebuild | 161 --
 dev-vcs/git-annex/metadata.xml|   1 -
 2 files changed, 162 deletions(-)

diff --git a/dev-vcs/git-annex/git-annex-6.20170818.ebuild 
b/dev-vcs/git-annex/git-annex-6.20170818.ebuild
deleted file mode 100644
index ac78674adb6..000
--- a/dev-vcs/git-annex/git-annex-6.20170818.ebuild
+++ /dev/null
@@ -1,161 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# ebuild generated by hackport 0.5.3.
-#hackport: flags: -production,-android,-androidsplice,-testsuite
-
-CABAL_FEATURES=""
-inherit haskell-cabal bash-completion-r1
-
-DESCRIPTION="manage files with git, without checking their contents into git"
-HOMEPAGE="http://git-annex.branchable.com/;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-RESTRICT="test"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
-IUSE="+assistant benchmark +concurrentoutput +dbus doc +magicmime +network-uri 
+pairing s3 +torrentparser +webapp +webdav"
-
-RDEPEND="dev-haskell/aeson:=
-   dev-haskell/async:=
-   dev-haskell/bloomfilter:=
-   dev-haskell/byteable:=
-   dev-haskell/case-insensitive:=
-   dev-haskell/crypto-api:=
-   dev-haskell/cryptonite:=
-   dev-haskell/data-default:=
-   dev-haskell/disk-free-space:=
-   dev-haskell/dlist:=
-   dev-haskell/edit-distance:=
-   dev-haskell/esqueleto:=
-   >=dev-haskell/exceptions-0.6:=
-   >=dev-haskell/feed-0.3.9:=
-   dev-haskell/free:=
-   dev-haskell/hslogger:=
-   dev-haskell/http-client:=
-   >=dev-haskell/http-conduit-2.0:=
-   >=dev-haskell/http-types-0.7:=
-   dev-haskell/ifelse:=
-   dev-haskell/memory:=
-   dev-haskell/monad-control:=
-   dev-haskell/monad-logger:=
-   >=dev-haskell/mtl-2:=
-   dev-haskell/old-locale:=
-   >=dev-haskell/optparse-applicative-0.11.0:=
-   dev-haskell/persistent:=
-   dev-haskell/persistent-sqlite:=
-   dev-haskell/persistent-template:=
-   >=dev-haskell/quickcheck-2.1:2=
-   dev-haskell/random:=
-   dev-haskell/regex-tdfa:=
-   dev-haskell/resourcet:=
-   dev-haskell/safesemaphore:=
-   dev-haskell/sandi:=
-   dev-haskell/securemem:=
-   dev-haskell/socks:=
-   dev-haskell/split:=
-   >=dev-haskell/stm-2.3:=
-   dev-haskell/stm-chans:=
-   dev-haskell/text:=
-   dev-haskell/unix-compat:=
-   dev-haskell/unordered-containers:=
-   dev-haskell/utf8-string:=
-   >=dev-haskell/uuid-1.2.6:=
-   >=dev-lang/ghc-7.8.2:=
-   assistant? ( >=dev-haskell/dns-1.0.0:=
-   dev-haskell/hinotify:=
-   dev-haskell/mountpoints:=
-   sys-process/lsof )
-   benchmark? ( dev-haskell/criterion:= )
-   concurrentoutput? ( >=dev-haskell/concurrent-output-1.6:= )
-   dbus? ( >=dev-haskell/dbus-0.10.7:=
-   >=dev-haskell/fdo-notify-0.3:= )
-   magicmime? ( dev-haskell/magic:= )
-   network-uri? ( >=dev-haskell/network-2.6:=
-   >=dev-haskell/network-uri-2.6:= )
-   !network-uri? ( >=dev-haskell/network-2.4:= =dev-haskell/aws-0.9.2:=
-   dev-haskell/conduit:=
-   dev-haskell/conduit-extra:= )
-   torrentparser? ( >=dev-haskell/torrent-1.0.0:= )
-   webapp? ( dev-haskell/blaze-builder:=
-   dev-haskell/clientsession:=
-   >=dev-haskell/path-pieces-0.1.4:=
-   >=dev-haskell/shakespeare-2.0.0:=
-   dev-haskell/wai:=
-   dev-haskell/wai-extra:=
-   >=dev-haskell/warp-3.0.0.5:=
-   >=dev-haskell/warp-tls-1.4:=
-   >=dev-haskell/yesod-1.2.6:=
-   >=dev-haskell/yesod-core-1.2.19:=
-   >=dev-haskell/yesod-default-1.2.0:=
-   >=dev-haskell/yesod-form-1.3.15:=
-   >=dev-haskell/yesod-static-1.2.4:= )
-   webdav? ( >=dev-haskell/dav-1.0:= )
-"
-# not generated by hackport:
-RDEPEND="${RDEPEND}
-   dev-vcs/git
-"
-
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.18.1.3
-"
-
-# not generated by hackport:
-DEPEND="${DEPEND}
-   dev-lang/perl
-   doc? ( www-apps/ikiwiki net-misc/rsync )
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-6.20160114-QC-2.8.2.patch
-   "${FILESDIR}"/${PN}-6.20161210-directory-1.3.patch
- 

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

2020-06-28 Thread Sergei Trofimovich
commit: 5a0365a7ec87a27b290e0eca6f4fa5c13583879f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:22:19 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a0365a7

dev-vcs/darcs: drop old

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

 dev-vcs/darcs/Manifest   |   5 --
 dev-vcs/darcs/darcs-2.10.1.ebuild|  98 -
 dev-vcs/darcs/darcs-2.10.3-r1.ebuild | 103 ---
 dev-vcs/darcs/darcs-2.12.0.ebuild|  97 -
 dev-vcs/darcs/darcs-2.12.4.ebuild|  92 
 dev-vcs/darcs/darcs-2.8.4-r6.ebuild  | 134 ---
 dev-vcs/darcs/metadata.xml   |   2 -
 7 files changed, 531 deletions(-)

diff --git a/dev-vcs/darcs/Manifest b/dev-vcs/darcs/Manifest
index 6fe5771f69a..539dea6307a 100644
--- a/dev-vcs/darcs/Manifest
+++ b/dev-vcs/darcs/Manifest
@@ -1,6 +1 @@
-DIST darcs-2.10.1.tar.gz 1509208 BLAKE2B 
54df9e87ab5b4d49146eeaad99c4718cc38b6fb032da2fb005c1ddc8a6d5ffa725b9c7caac30eb4da394bfb0926ba76040e24a69beeacd25e810cad8987d34f3
 SHA512 
b8c3971da3d635a7d90e35226c2ffa6d6ca8e78ba18793c632b7509bc4d52c1bda2490d147cdaea5842fbe5d8826b0025de61e2fb4f58c441875c5858d910e47
-DIST darcs-2.10.3.tar.gz 1513296 BLAKE2B 
4a900a4307f1067cb078396f28358f75107821a67104ec91653cdc0ae1c5503fd18baa3d0ae95a0476fa5917345de932411053d35d8f0cfee3782cdd84a13c7e
 SHA512 
cf8f34df331d8a47c6a25775c465824e5d71ed00ae6bc477989b4bb0e7fad606b213a4fb4e06b02dca096df2b6b1fe36f394672a112b48c6b56188a7eae8f90e
-DIST darcs-2.12.0.tar.gz 1465730 BLAKE2B 
a021796aefc38aaf355a3156f26c8f313ffbe44ad5e9172883217f609c73baed49301a26bbc818574175c0e7174ad6401407ae9492584e3aed56e8fb2bf10f7a
 SHA512 
654f9054dfe8e23e17ae00cdf22153ddaf89d114c5ee0e1ca86f373c1abf62b7bd808965f4d4df695aaba44d1d334d725cc0d57dea5df7cd1992a0ef15e49135
-DIST darcs-2.12.4.tar.gz 1462383 BLAKE2B 
49827a07770da8253775649e9a72b33d4e715f7eae63c093c6d3a16f097cd9f3246e2aec4ee4782efd1629423a3d3a23d6d5350131ed4daa4fc47701fd6449ae
 SHA512 
52a0b9b8a23b05dc29513c20c3c0fdc0b696da87156ea83a5736ea294618b993d1f3914f82a918e331db5de0746c147244f46d396ee7dbb02fee116825e1dd6a
 DIST darcs-2.12.5.tar.gz 1460698 BLAKE2B 
9050b5863221d2c82e93d689b733b34a0b63fd0e7f29b0041ba3ff10e4359e4d32e1c8bca5ac4722a65fbebab66b25cba443efe23ee3e4a87d4117a7335db4de
 SHA512 
9bda8149269dc23750321f3929e156e32c76de4f5bb8291bc248d0e326bf08b69c82ef7383f9d02dcc65ca199078f6e1ab575197fc2aee225486a8c1b9275542
-DIST darcs-2.8.4.tar.gz 1301464 BLAKE2B 
748494ae1c34318c14e128a4d08667b839644dbcf2b2d8bbcc86263ee5332f859f91bc2a56f3c6ccf6a465f45a90d97d304c9c15ebdd3cdd709c251c61c15a6c
 SHA512 
c60531bacea43bdd5a18ae461dd390fe64682cac56fa4e6b5153a5da3c003b59d8fb24827bd42b4b30f0d2c61877d36b58eb98317644f9f8a200ab7c5961c48e

diff --git a/dev-vcs/darcs/darcs-2.10.1.ebuild 
b/dev-vcs/darcs/darcs-2.10.1.ebuild
deleted file mode 100644
index 40404e1b806..000
--- a/dev-vcs/darcs/darcs-2.10.1.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# ebuild generated by hackport 0.4.5.
-#hackport: flags: 
+library,+executable,-hpc,-warn-as-error,+pkgconfig,-rts,-static,-optimize,hashed-storage-diff:diff
-
-CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="a distributed, interactive, smart revision control system"
-HOMEPAGE="http://darcs.net/;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+curl diff +http +network-uri +terminfo +threaded"
-
-RESTRICT=test # missing file 'tests/bin/renameHelper.hs'
-
-RDEPEND=">=dev-haskell/attoparsec-0.11:=[profile?] 
=dev-haskell/base16-bytestring-0.1:=[profile?] 
=dev-haskell/binary-0.5:=[profile?] =dev-haskell/cryptohash-0.4:=[profile?] 
=dev-haskell/data-ordlist-0.4:=[profile?] 
=dev-haskell/dataenc-0.11:=[profile?] 
=dev-haskell/hashable-1.0:=[profile?] 
=dev-haskell/haskeline-0.6.3:=[profile?] 
=dev-haskell/html-1.0:=[profile?] =dev-haskell/mmap-0.5:=[profile?] =dev-haskell/mtl-2.1:=[profile?] =dev-haskell/old-locale-1.0:=[profile?] 
=dev-haskell/old-time-1.1:=[profile?] 
=dev-haskell/parsec-3.1:=[profile?] =dev-haskell/random-1.0:=[profile?] =dev-haskell/regex-applicative-0.2:=[profile?] 
=dev-haskell/regex-compat-tdfa-0.95.1:=[profile?] 
=dev-haskell/tar-0.4:=[profile?] =dev-haskell/text-0.11.2.0:=[profile?] 
=dev-haskell/transformers-compat-0.4:=[profile?] 
=dev-haskell/unix-compat-0.1.2:=[profile?] 
=dev-haskell/utf8-string-0.3.6:=[profile?] 
=dev-haskell/vector-0.7:=[profile?] 
=dev-haskell/zip-archive-0.2.3:=[profile?] 
=dev-haskell/zlib-0.5.3.0:=[profile?] 
=dev-lang/ghc-7.4.1:=
-   virtual/libiconv
-   

[gentoo-commits] repo/gentoo:master commit in: sys-fs/diskdev_cmds/

2020-06-28 Thread Sergei Trofimovich
commit: c3d2e5fa6eb86786653af9d81219e67d5ecbe747
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:25:14 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d2e5fa

sys-fs/diskdev_cmds: drop longdescription from metadata.xml

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

 sys-fs/diskdev_cmds/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/sys-fs/diskdev_cmds/metadata.xml b/sys-fs/diskdev_cmds/metadata.xml
index 685f6e0f25f..9ee7b49bec4 100644
--- a/sys-fs/diskdev_cmds/metadata.xml
+++ b/sys-fs/diskdev_cmds/metadata.xml
@@ -9,8 +9,4 @@
p...@gentoo.org
Gentoo Linux PowerPC Development

-   
-   HFS+ Filesytstem tools (mkfs.hfsplus and fsck.hfsplus), ported 
from Apple's
-   versions.
-   
 



[gentoo-commits] repo/gentoo:master commit in: app-portage/hackport/

2020-06-28 Thread Sergei Trofimovich
commit: a63a6d4b6a142451b23b69bb9f82e3bbe2df5e69
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:39:59 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a63a6d4b

app-portage/hackport: drop old

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

 app-portage/hackport/Manifest  |  2 --
 app-portage/hackport/hackport-0.5.6.ebuild | 55 --
 app-portage/hackport/hackport-0.6.2.ebuild | 55 --
 3 files changed, 112 deletions(-)

diff --git a/app-portage/hackport/Manifest b/app-portage/hackport/Manifest
index 0bf4db42fd2..a9a6fc50bdb 100644
--- a/app-portage/hackport/Manifest
+++ b/app-portage/hackport/Manifest
@@ -1,3 +1 @@
-DIST hackport-0.5.6.tar.gz 1639896 BLAKE2B 
2c5892b3206b4cbb10f8dcbce1d043446b7b804ae0b5d1e59c49c733c80194e79c9091cfc933cbc7e7a592c0747ee034d56969d4261ad0a6a585259d5e8b4f76
 SHA512 
5dc20f11392757224a6cf79d525792e14aba64ffb44c9dd9b4f0df4acd9c00127d85f2b1f23cf2063f80895dbcc90ccc745e8f9aba3ef82f7ae8364db155fe4f
-DIST hackport-0.6.2.tar.gz 1625948 BLAKE2B 
9dbb7695d3ca806cfef342697717fa232be2156bcb76c87413907460a9cea2f8cdd517dce453ae7846a00df53ab46058c8f42bd36bc33580cb32452b82c77816
 SHA512 
99207c4903ee5f3fdcc648edcc3a39ed06f0629a1d5bda577fc2c443c544bfd746154bc5e9de044810c148b1a38028ec0fdf908513b4252c05bb6c9c6eb9aa92
 DIST hackport-0.6.3.tar.gz 1986620 BLAKE2B 
6878b3f378b1c5303047c4e6ea27edd587527bc0f303dae8947f0e2a066452b5c4cf3a13594499c3b367ff515114f43c2fa7dece935a704f0f6855fc23f14100
 SHA512 
ef2f2125c89352207f82e02668bfd84c9e38d5ed3f8643d19d4f270cf7440169c7e6d24513f90e7d616900a06a429e54cf01a42363ff463d536fa37700b7d1cc

diff --git a/app-portage/hackport/hackport-0.5.6.ebuild 
b/app-portage/hackport/hackport-0.5.6.ebuild
deleted file mode 100644
index feeb100454d..000
--- a/app-portage/hackport/hackport-0.5.6.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# ebuild generated by hackport 0.5.5.
-
-CABAL_FEATURES="test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Hackage and Portage integration tool"
-HOMEPAGE="http://hackage.haskell.org/package/hackport;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RESTRICT=test # tests are broken: need path to ebuild tree
-
-RDEPEND="
-   app-portage/repoman
-   dev-haskell/async:=
-   dev-haskell/base16-bytestring:=
-   dev-haskell/base64-bytestring:=
-   dev-haskell/cryptohash:=
-   dev-haskell/ed25519:=
-   dev-haskell/extensible-exceptions:=
-   dev-haskell/hashable:=
-   >=dev-haskell/http-4000.0.3:=
-   dev-haskell/missingh:=
-   dev-haskell/mtl:=
-   >=dev-haskell/network-2.6:=
-   >=dev-haskell/network-uri-2.6:=
-   dev-haskell/old-locale:=
-   dev-haskell/old-time:=
-   dev-haskell/parsec:=
-   dev-haskell/random:=
-   dev-haskell/regex-compat:=
-   dev-haskell/split:=
-   dev-haskell/stm:=
-   >=dev-haskell/tar-0.5:=
-   >=dev-haskell/xml-1.3.7:=
-   dev-haskell/zlib:=
-   >=dev-lang/ghc-7.8.2:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.18.1.3
-   test? ( dev-haskell/hunit )
-"
-src_install() {
-   haskell-cabal_src_install
-   doman man/hackport.1
-}

diff --git a/app-portage/hackport/hackport-0.6.2.ebuild 
b/app-portage/hackport/hackport-0.6.2.ebuild
deleted file mode 100644
index ec10c7ce40f..000
--- a/app-portage/hackport/hackport-0.6.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# ebuild generated by hackport 0.6.
-
-CABAL_FEATURES="test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Hackage and Portage integration tool"
-HOMEPAGE="http://hackage.haskell.org/package/hackport;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RESTRICT=test # tests are broken: need path to ebuild tree
-
-RDEPEND="
-   app-portage/repoman
-   dev-haskell/async:=
-   dev-haskell/base16-bytestring:=
-   dev-haskell/base64-bytestring:=
-   dev-haskell/cryptohash:=
-   dev-haskell/ed25519:=
-   dev-haskell/extensible-exceptions:=
-   dev-haskell/hashable:=
-   >=dev-haskell/http-4000.0.3:=
-   dev-haskell/missingh:=
-   dev-haskell/mtl:=
-   >=dev-haskell/network-2.6:=
-   >=dev-haskell/network-uri-2.6:=
-   dev-haskell/old-locale:=
-   dev-haskell/old-time:=
-   dev-haskell/parsec:=
-   dev-haskell/random:=
-   dev-haskell/regex-compat:=
-   dev-haskell/split:=
-   dev-haskell/stm:=
-   >=dev-haskell/tar-0.5:=
-

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

2020-06-28 Thread Sergei Trofimovich
commit: 18fd1413c66edefe6e36cd9067c5d73c6e83f22a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:37:06 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18fd1413

dev-util/bnfc: drop old

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

 dev-util/bnfc/Manifest|  1 -
 dev-util/bnfc/bnfc-2.8.ebuild | 43 ---
 2 files changed, 44 deletions(-)

diff --git a/dev-util/bnfc/Manifest b/dev-util/bnfc/Manifest
index fef57442786..957e61c5e4a 100644
--- a/dev-util/bnfc/Manifest
+++ b/dev-util/bnfc/Manifest
@@ -1,2 +1 @@
 DIST BNFC-2.8.1.tar.gz 225015 BLAKE2B 
973f7a5ebc5fb995bf0014621ba7bfebe0d6adbb35bd276b3f7ec56e3fe1ab08c3811d27a2d58a73ca52ac4bf9ba35fba3d172a82684b1ef999a2fdd6dc4ece9
 SHA512 
d5ea9b4129a4f71c2d66cda2f859a2c39be6d4400cddbd5a5303b5b408f4cf03ce7a92825224f4674c6cc48bec07429c447b9b39fc4e6d144c922bf1b0829561
-DIST BNFC-2.8.tar.gz 183591 BLAKE2B 
cc14079bba767d85ae59a05057cba7db11bc7fcc39e28c29a5151e1ffae1c5b712351085eaa8affe79a36cac66e79df26335d48cfc24fbf41dff018727aa8dd6
 SHA512 
358700360dbfbeacf3276150856415e08e1498c6af27254302d406e5407b7b4f84ac0dcf9dcf8391128ac9d77a17a928c2427961ec8c3ffdb9af8d169145cafb

diff --git a/dev-util/bnfc/bnfc-2.8.ebuild b/dev-util/bnfc/bnfc-2.8.ebuild
deleted file mode 100644
index af500808e92..000
--- a/dev-util/bnfc/bnfc-2.8.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# ebuild generated by hackport 0.4.5.
-
-CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-MY_PN="BNFC"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A compiler front-end generator"
-HOMEPAGE="http://bnfc.digitalgrammars.com/;
-SRC_URI="https://hackage.haskell.org/package/${MY_P}/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-RESTRICT=test # missing files
-
-RDEPEND="dev-haskell/mtl:=[profile?]
-   >=dev-lang/ghc-7.4.1:=
-"
-DEPEND="${RDEPEND}
-   dev-haskell/alex
-   >=dev-haskell/cabal-1.8
-   dev-haskell/happy
-   test? ( >=dev-haskell/doctest-0.8
-   dev-haskell/hspec
-   dev-haskell/hunit
-   >=dev-haskell/quickcheck-2.5
-   dev-haskell/temporary )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-alex-3.1.6.patch
-}



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

2020-06-28 Thread Sergei Trofimovich
commit: 060cf4f710788bce62bf557a183e69f74dd97e8b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:32:03 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=060cf4f7

sys-apps/unscd: drop old

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

 sys-apps/unscd/Manifest |  1 -
 sys-apps/unscd/unscd-0.52-r2.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/sys-apps/unscd/Manifest b/sys-apps/unscd/Manifest
index d78436cd2f0..2ae1770b66d 100644
--- a/sys-apps/unscd/Manifest
+++ b/sys-apps/unscd/Manifest
@@ -1,2 +1 @@
-DIST nscd-0.52.c 73144 BLAKE2B 
962c619044d54d3136ce2cd3f4766a0a5a11b0f341fb595238332ec4ef521854f6ef60c846ae0c8e3069774361366b6b53c1b48c8d21ebdf11b42bf05677852a
 SHA512 
ba48410309fced9b8d9f929c52b39ca9a8caaf451fe73742bde7d4a4ab9980bc0f353551e19c846e96d6cb8a71e3c5edc7f76cce0613282f0d01fde0612f
 DIST nscd-0.53.c 73206 BLAKE2B 
ce3b8e02ce8879664bde7ee7362ee0d920ad9e9cd24da08b02e83d49b2e0bef7fb1b3c6635bc4e8a26d901170943a78bae608903459e4447edf004e5ef716468
 SHA512 
d14362d21282d0ea919af3b353f7838d1514c293b49df084bc8df424392b4121dba3443a07118f4c8c1cfdca0cbf8ebddde24cf73459b06349e9d1a68801403c

diff --git a/sys-apps/unscd/unscd-0.52-r2.ebuild 
b/sys-apps/unscd/unscd-0.52-r2.ebuild
deleted file mode 100644
index f61fb7591b5..000
--- a/sys-apps/unscd/unscd-0.52-r2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit systemd toolchain-funcs
-
-DESCRIPTION="simple & stable nscd replacement"
-HOMEPAGE="https://busybox.net/~vda/unscd/README;
-SRC_URI="https://busybox.net/~vda/unscd/nscd-${PV}.c;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="sys-libs/glibc[nscd(+)]"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}
-
-src_unpack() {
-   cp "${DISTDIR}"/nscd-${PV}.c ${PN}.c || die
-}
-
-src_compile() {
-   tc-export CC
-   emake unscd
-}
-
-src_install() {
-   newinitd "${FILESDIR}"/unscd.initd-r1 unscd
-   systemd_newtmpfilesd "${FILESDIR}"/unscd-tmpfiles.conf unscd.conf
-   systemd_dounit "${FILESDIR}"/unscd.service
-   dosbin unscd
-}



[gentoo-commits] repo/gentoo:master commit in: app-portage/fquery/

2020-06-28 Thread Sergei Trofimovich
commit: 4a5faa0fd601d34a66a603481f9052abb77a38d0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:40:54 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a5faa0f

app-portage/fquery: drop old

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

 app-portage/fquery/Manifest|  1 -
 app-portage/fquery/fquery-0.2.2.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/app-portage/fquery/Manifest b/app-portage/fquery/Manifest
index 7a4e52c5285..2c6835950f2 100644
--- a/app-portage/fquery/Manifest
+++ b/app-portage/fquery/Manifest
@@ -1,2 +1 @@
-DIST fquery-0.2.2.tar.gz 14489 BLAKE2B 
091c7893b835c41f071bfbd1d516b7e92aee57c67ddc3a31062e346a51002d1e235d4b35278a0d5e087c69ba1482210110a08dc7f020390a5b94304eff4aafdc
 SHA512 
d8560a043a3e9d489232427c5911b650cca932cda1c2185c881834c8fd54d316bc650bf4d187da53cd9785adf17381e1cb7cddaf21e73d89f7854cbb33738587
 DIST fquery-0.2.3.tar.gz 14511 BLAKE2B 
ccc0162095cf270320c1e7a27ef6f19902ddc591ea04742b9645bbb80e67132d85c3f182d1f7fd536a819e96b64abc734b42728faf46a0f2ab01943f660705ee
 SHA512 
0dc345b189bd18f5f1084ab2aea07390b547b6c663d03fa9cec968e5cef598fe58b6a294845ca12b020c78ff2a01ce7e5da0bb06a513c53b8b5aa357b071fb88

diff --git a/app-portage/fquery/fquery-0.2.2.ebuild 
b/app-portage/fquery/fquery-0.2.2.ebuild
deleted file mode 100644
index ddd516e3ee5..000
--- a/app-portage/fquery/fquery-0.2.2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# ebuild generated by hackport 0.4.6.
-
-CABAL_FEATURES="bin"
-inherit haskell-cabal
-
-DESCRIPTION="Installed package query tool for Gentoo Linux"
-HOMEPAGE="http://hackage.haskell.org/package/fquery;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-haskell/hashtables:=
-   dev-haskell/parsec:=
-   dev-haskell/regex-compat:=
-   >=dev-lang/ghc-7.4.1:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.6
-"



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

2020-06-28 Thread Sergei Trofimovich
commit: 9a0f8838d44b478fd4c05f1794257c3679662a99
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:33:02 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a0f8838

net-libs/rpcsvc-proto: drop old

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

 net-libs/rpcsvc-proto/rpcsvc-proto-1.4.1.ebuild | 34 -
 1 file changed, 34 deletions(-)

diff --git a/net-libs/rpcsvc-proto/rpcsvc-proto-1.4.1.ebuild 
b/net-libs/rpcsvc-proto/rpcsvc-proto-1.4.1.ebuild
deleted file mode 100644
index 6898da16fe7..000
--- a/net-libs/rpcsvc-proto/rpcsvc-proto-1.4.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="rpcsvc protocol definitions from glibc"
-HOMEPAGE="https://github.com/thkukuk/rpcsvc-proto;
-SRC_URI="https://github.com/thkukuk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="LGPL-2.1+ BSD"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86"
-IUSE=""
-
-# sys-devel/gettext is only for libintl detection macros.
-DEPEND="sys-devel/gettext"
-RDEPEND="
-   !

[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-json/

2020-06-28 Thread Sergei Trofimovich
commit: efe208deece53469b27b6281e13cd9c1bec1e689
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:37:34 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe208de

dev-scheme/guile-json: drop old

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

 dev-scheme/guile-json/Manifest|  1 -
 dev-scheme/guile-json/guile-json-4.0.1.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/dev-scheme/guile-json/Manifest b/dev-scheme/guile-json/Manifest
index a9f44bfedca..ff33f5508ef 100644
--- a/dev-scheme/guile-json/Manifest
+++ b/dev-scheme/guile-json/Manifest
@@ -1,2 +1 @@
-DIST guile-json-4.0.1.tar.gz 150225 BLAKE2B 
343bc64876b35f2f8291635aa357df5ea85acec27b31fdf22a706530764323516bf64ca6edb4f96962e296e3522ee04ca1030487c75d9ee745ffafa1f5990c7c
 SHA512 
45ec92489fec331d8f6e8b3398e09c663da96f41963f5e6f60c15dec19b3f12ebc8f344f023dd3c1f08177723672a2576fdcc41b5d9e441a96dc51b678da5998
 DIST guile-json-4.1.0.tar.gz 150870 BLAKE2B 
9bfd3642b41221fbc7a308b06e69dfa16a652a30ae18e8d53612fed61d26ddf8d39686f81f363c1b02de98b58f0bf6c0ba7003ee93f6777332e9e3574743765f
 SHA512 
ea8eef22d027968bd9faf3170eee7f781837e3a614a5523afe8f89c450408966de11e8082e7ebeacb6c3c50f52c1a033526b9c2491e1cb625ef985ad16eed9b2

diff --git a/dev-scheme/guile-json/guile-json-4.0.1.ebuild 
b/dev-scheme/guile-json/guile-json-4.0.1.ebuild
deleted file mode 100644
index 93ef24df851..000
--- a/dev-scheme/guile-json/guile-json-4.0.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="JSON module for Guile"
-HOMEPAGE="https://savannah.nongnu.org/projects/guile-json/;
-SRC_URI="http://download.savannah.nongnu.org/releases/guile-json/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-scheme/guile-2.0.0"
-DEPEND="${RDEPEND}"
-
-# guile generates ELF files without use of C or machine code
-# It's a portage's false positive. bug #677600
-QA_FLAGS_IGNORED='.*[.]go'
-
-src_prepare() {
-   default
-
-   # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
-   find "${S}" -name "*.scm" -exec touch {} + || die
-}



[gentoo-commits] repo/gentoo:master commit in: net-mail/list-remote-forwards/

2020-06-28 Thread Sergei Trofimovich
commit: 38984aa6470a25c635fcea929b8fde70cc2e1cbb
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:33:23 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38984aa6

net-mail/list-remote-forwards: drop old

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

 .../list-remote-forwards-0.0.1-r1.ebuild   | 41 --
 1 file changed, 41 deletions(-)

diff --git a/net-mail/list-remote-forwards/list-remote-forwards-0.0.1-r1.ebuild 
b/net-mail/list-remote-forwards/list-remote-forwards-0.0.1-r1.ebuild
deleted file mode 100644
index 0c3763e369f..000
--- a/net-mail/list-remote-forwards/list-remote-forwards-0.0.1-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# ebuild generated by hackport 0.4.4
-
-CABAL_FEATURES="bin test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="List all remote forwards for mail accounts stored in a database"
-HOMEPAGE="http://hackage.haskell.org/package/list-remote-forwards;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.16.0
-   >=dev-haskell/cmdargs-0.10
-   >=dev-haskell/configurator-0.2
-   >=dev-haskell/dns-1.4
-   >=dev-haskell/hdbc-2.4
-   >=dev-haskell/hdbc-postgresql-2.3
-   >=dev-haskell/hdbc-sqlite3-2.3
-   >=dev-haskell/missingh-1.2
-   >=dev-haskell/tasty-0.8
-   >=dev-haskell/tasty-hunit-0.8
-   >=dev-haskell/tasty-quickcheck-0.8
-   >=dev-lang/ghc-7.6.1
-   test? ( >=dev-haskell/doctest-0.9
-   >=dev-haskell/filemanip-0.3.6 )
-"
-
-src_install() {
-   haskell-cabal_src_install
-   doman "${S}/doc/man1/${PN}.1"
-}



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

2020-06-28 Thread Sergei Trofimovich
commit: 43ba6aaf82ab4f8491b08812313ba7953dccf8e6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:36:38 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ba6aaf

dev-util/bustle: drop old

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

 dev-util/bustle/Manifest   |  3 --
 dev-util/bustle/bustle-0.4.2-r1.ebuild | 65 ---
 dev-util/bustle/bustle-0.4.7-r1.ebuild | 70 --
 3 files changed, 138 deletions(-)

diff --git a/dev-util/bustle/Manifest b/dev-util/bustle/Manifest
index ecef2df508c..03f54b60f84 100644
--- a/dev-util/bustle/Manifest
+++ b/dev-util/bustle/Manifest
@@ -1,4 +1 @@
-DIST bustle-0.4.0-tests.tar.gz 8340 BLAKE2B 
0c0cf10a87c1fea6100828139e9781ff867e6b67490df99f403a7dc6d9665c3973e37c9e8e408549937750b262ff30aadf36658aec56f2f043f1381ac437dbd5
 SHA512 
c7685496f3a84c1615752ae9aad22202bfe703147441581abe599a5e5055cdef54f27b4e0d01603b23a83a4b42b0595b5538c5b4d65a522a9e76b8d187ae54b1
-DIST bustle-0.4.2.tar.gz 95707 BLAKE2B 
12d8c08c7a3f71684831bc27c027db33902cc727d216801448e67ed18b717796038390ee7c63f2faea6e26ad677e618c51f9ad1353d3f54bd334d49fff621b7c
 SHA512 
8a6c1860cb655fc9bd7d42d130d87416c74b988b81749ec8cc1c25cacd3dd4516f59f5cb5954b473c3f6ac32b11853e9bc8881708962144067a0325845dd8562
-DIST bustle-0.4.7.tar.gz 114231 BLAKE2B 
b783f4363171cab96463519806d18113012da3bdb9040a2394f5ad9cc1c7cfab7030b99ee71f1a5bd4bcd6906ef53f2fbc1eb8c504f3b4a526a9d55e27f2f6ab
 SHA512 
c9b93ffda797a87342f5ba506db3c892bff8084fa0ec5897d676bef5e8367507970ae3e09555cda9b4de0c7b175dc396f2ccfb394d224e64225c0e7ded2164fd
 DIST bustle-0.5.4.tar.gz 122720 BLAKE2B 
b5a2315919644ab5c7712f9e9bde1bdea226b4e8898981f7150558bde648a5c7965be6ad8484c09727665292e5fe3f0cb545544dbb27f2a2553e513910289620
 SHA512 
56eaeef831fb5929d57a008ae71d8409048ce5d12eaada98830ef742baf3479264203465d77591cb338374096eac2dc2b68b44f075b2761f16df63fad54b91fd

diff --git a/dev-util/bustle/bustle-0.4.2-r1.ebuild 
b/dev-util/bustle/bustle-0.4.2-r1.ebuild
deleted file mode 100644
index 18e9dda482c..000
--- a/dev-util/bustle/bustle-0.4.2-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# ebuild generated by hackport 0.3.
-
-CABAL_FEATURES="bin test-suite"
-inherit base haskell-cabal toolchain-funcs
-
-DESCRIPTION="Draw pretty sequence diagrams of D-Bus traffic"
-HOMEPAGE="http://willthompson.co.uk/bustle/;
-SRC_URI="http://willthompson.co.uk/${PN}/releases/${PV}/${P}.tar.gz 
https://dev.gentoo.org/~slyfox/bustle-0.4.0-tests.tar.gz;
-
-LICENSE="LGPL-2 GPL-2" # bustle-dbus-monitor.c is GPL-2, rest is LGPL-2
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/glib:2
-   net-libs/libpcap
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/pango
-   gnome-base/libglade:2.0"
-DEPEND="${RDEPEND}
-   test? ( dev-haskell/hunit
-   dev-haskell/quickcheck
-   dev-haskell/test-framework
-   dev-haskell/test-framework-hunit
-   )
-   >=dev-haskell/cabal-1.8
-   dev-haskell/cairo:0
-   >=dev-haskell/dbus-0.10
-   dev-haskell/glib:0
-   >=dev-haskell/gtk-0.12.3:2
-   dev-haskell/mtl
-   dev-haskell/pango:0
-   dev-haskell/parsec
-   dev-haskell/pcap
-   dev-haskell/text
-   >=dev-lang/ghc-6.10.4"
-
-PATCHES=("${FILESDIR}"/${P}-restrict-gtk2hs-deps-to-gtkplus2.patch)
-
-src_compile() {
-   # compile haskell part
-   cabal_src_compile || die "could not build haskell parts"
-
-   # compile C part
-   emake \
-   "CC=$(tc-getCC)" \
-   "CFLAGS=${CFLAGS}" \
-   "CPPFLAGS=${CPPFLAGS}" \
-   "LDFLAGS=${LDFLAGS}"
-}
-
-src_install() {
-   # install haskell part
-   cabal_src_install || die "could not install haskell parts"
-
-   dobin "${S}"/dist/build/bustle-pcap
-
-   dodoc README HACKING NEWS
-}

diff --git a/dev-util/bustle/bustle-0.4.7-r1.ebuild 
b/dev-util/bustle/bustle-0.4.7-r1.ebuild
deleted file mode 100644
index 1161ffd6eef..000
--- a/dev-util/bustle/bustle-0.4.7-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# ebuild generated by hackport 0.3.6.
-
-CABAL_FEATURES="bin test-suite"
-inherit haskell-cabal toolchain-funcs
-
-DESCRIPTION="Draw pretty sequence diagrams of D-Bus traffic"
-HOMEPAGE="http://hackage.haskell.org/package/bustle;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="LGPL-2 

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

2020-06-28 Thread Sergei Trofimovich
commit: 2c39aaf3f6d37ef37730fccef662258d68209245
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:23:22 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c39aaf3

sys-auth/libnss-nis: drop old

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

 sys-auth/libnss-nis/Manifest  |  1 -
 sys-auth/libnss-nis/libnss-nis-1.4.ebuild | 45 ---
 2 files changed, 46 deletions(-)

diff --git a/sys-auth/libnss-nis/Manifest b/sys-auth/libnss-nis/Manifest
index 0de62f2428a..cb726753775 100644
--- a/sys-auth/libnss-nis/Manifest
+++ b/sys-auth/libnss-nis/Manifest
@@ -1,2 +1 @@
-DIST libnss-nis-1.4.tar.gz 209887 BLAKE2B 
ca9c2d66080568cc7748b4df4b0318687cf9dac5717c84a8e84d033a3a0aa0d59b3159c55ad2e1513e161b40acea59c3df8cddaea1ff4897a0599777179bd7f2
 SHA512 
56338a1dd60b756fb40e7e08c0d7d49ce98b47f684e7278aaf1a521a74f02b23cc73908adbd6ff88057f2f0e42301f827f888fc7af82aa57ff9449a05de73b75
 DIST libnss-nis-3.1.tar.gz 225933 BLAKE2B 
23b0c760f48f2f1bd2bcd6a1d3b2e7da0bc2f186b23f4ff961faf78b76bfbbaaa238a510979b086f279f4c4e25f98d9ae8631e5222dc7479e8c50b0f4572b0da
 SHA512 
fab2d035ef9cea5fa6351c44085a96f9f90e50550b77aa3898e0d5a6ff296951b22b4ac58979d07ae3b3da2f97c7e47ab466e1a5868e7f218971028174159636

diff --git a/sys-auth/libnss-nis/libnss-nis-1.4.ebuild 
b/sys-auth/libnss-nis/libnss-nis-1.4.ebuild
deleted file mode 100644
index d067904370e..000
--- a/sys-auth/libnss-nis/libnss-nis-1.4.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="NSS module to provide NIS support"
-HOMEPAGE="https://github.com/thkukuk/libnss_nis;
-SRC_URI="https://github.com/thkukuk/libnss_nis/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1+ BSD ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-
-RDEPEND="
-   >net-libs/libnsl-0:0=[${MULTILIB_USEDEP}]
-   net-libs/libtirpc:0=[${MULTILIB_USEDEP}]
-   !

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

2020-06-28 Thread Sergei Trofimovich
commit: a48ecd80578a8fda65f421e3215c5b0412321c3b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:38:28 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a48ecd80

dev-lang/erlang: drop old

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

 dev-lang/erlang/Manifest   |   1 -
 dev-lang/erlang/erlang-23.0.ebuild | 159 -
 2 files changed, 160 deletions(-)

diff --git a/dev-lang/erlang/Manifest b/dev-lang/erlang/Manifest
index e3d6834c9f8..b5ba778f5e6 100644
--- a/dev-lang/erlang/Manifest
+++ b/dev-lang/erlang/Manifest
@@ -2,7 +2,6 @@ DIST erlang-21.1.1.tar.gz 53854332 BLAKE2B 
32ab508b5a305eb92eac9f49bd513374c5739
 DIST erlang-22.3.2.tar.gz 55856668 BLAKE2B 
d5d2ae17b8fb1b7c3da0c145e4e17d38e47d5291d6bc77228c9280eaa114630003f0e75cc0b6eafd21642a86448d8fd907d95c006cdfe6f18978e796e20585bd
 SHA512 
02333fed57394012834452aff38d9a3340c52b109b14e444b6e7975ac3a65485de1deda6ae6c732a28f75ca2518000de576f70497118306699e35af5f249a0d1
 DIST erlang-22.3.4.tar.gz 55861416 BLAKE2B 
881eb664ea449fa021cdb6daaeb998ea5f736eae0900ad67c1416c0e0e0888b212e1fd1fc0ee655f1c05821b56bae52f150c3f29c2eddbac205d2a6f2fce5494
 SHA512 
14e90efb40568a1fd7a32b82fcdf32df8ccbda938b9e538bb3b1a77d343ae16f5721abb3d47e8dd567d7aa91d1dea6da8b7ada8a5cd8d33c38ba324f1d65eca1
 DIST erlang-23.0.1.tar.gz 56387006 BLAKE2B 
4ecbb5a4de0f83d80da179071d5bed7c6e7eca11f5f8f8c5681673967eaf6f0573240b9ac59e00e7162fdaa3d41e89b357263f47371f0ff9365b448a9f7cf4a9
 SHA512 
fc9114312327f2b7289078b29ae658a1100c860dfae03e892c1b316007b5ff286cfc301772b336eb1f5b983b3d5f507f03eff2917f418b1b9cb9714f42a59db4
-DIST erlang-23.0.tar.gz 56384864 BLAKE2B 
8e1ec1e430ecf327884d0e2ebd0ae354469e46805624ce36dc8215aa99df73bda5de338efeec7a3d8a2c5439269e538c1d3636b89dd68a26ebf973f1359de311
 SHA512 
e5d1e4b52951234f8bd4f8db7bef59a330d2783aae317468e0b94ad23cd55a60afba5d3841efad49dfcda6d7ba0a51e60208bb6a950951683fd297df56636f83
 DIST erlang_doc_html_21.1.tar.gz 32692731 BLAKE2B 
a7fa8ebe1c876ab7eecd2dd46ffd4d288db6d308e0f131d53c26ee4b67a92cb6fcb89b6c880ef34df395c7ad61fcdc81eac32e0fcf7336be7d517263218146bc
 SHA512 
0d659f55bfb01eecf140a310154724489ef56b6ccbe9ac30f6b053f598276721b80de7b5b3200707cf8a6e77b8854eae5453f655225f431fcc982550539f767f
 DIST erlang_doc_html_22.3.tar.gz 34041790 BLAKE2B 
76372acf5d6a581fb97cac9fa8230f1505650e9398d0a8e6ed163718f6d64cbbb3b7c79a1b7129827482345ddf950be4a5d83f0dac44e173f0ef45b148b73faa
 SHA512 
9199b6229b73a22e271c232ce03b83b65c265367062d57ca5babd23a2f0a088fde3054b25c65c1bf2cb714cb70354ce4324aa8e865db72beb1f788c27389558c
 DIST erlang_doc_html_23.0.tar.gz 36238699 BLAKE2B 
bce5fb1d766d3a795728cf7c00529129690f52e5dbe7363095cb7e63d5331a4dfc05c2042d24f10c7f3facbd187284aa323a92c0ed7515c1750aee4cd890fbd4
 SHA512 
bd0b1adf8639674d31152024e1351105249c6e6f93f28362e9e4b66ce6daadbe5eef5917a5889c926130e81bd000cfc44895ebaa309bf9a0c1c125713b715927

diff --git a/dev-lang/erlang/erlang-23.0.ebuild 
b/dev-lang/erlang/erlang-23.0.ebuild
deleted file mode 100644
index 10e018b031d..000
--- a/dev-lang/erlang/erlang-23.0.ebuild
+++ /dev/null
@@ -1,159 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-WX_GTK_VER="3.0"
-
-inherit elisp-common java-pkg-opt-2 systemd wxwidgets
-
-# NOTE: If you need symlinks for binaries please tell maintainers or
-# open up a bug to let it be created.
-
-UPSTREAM_V="$(ver_cut 1-2)"
-
-DESCRIPTION="Erlang programming language, runtime environment and libraries 
(OTP)"
-HOMEPAGE="https://www.erlang.org/;
-SRC_URI="https://github.com/erlang/otp/archive/OTP-${PV}.tar.gz -> ${P}.tar.gz
-   http://erlang.org/download/otp_doc_man_${UPSTREAM_V}.tar.gz -> 
${PN}_doc_man_${UPSTREAM_V}.tar.gz
-   doc? ( http://erlang.org/download/otp_doc_html_${UPSTREAM_V}.tar.gz -> 
${PN}_doc_html_${UPSTREAM_V}.tar.gz )"
-
-LICENSE="Apache-2.0"
-# We use this subslot because Compiled HiPE Code can be loaded on the exact
-# same build of ERTS that was used when compiling the code.  See
-# http://erlang.org/doc/system_principles/misc.html for more information.
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
-IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets"
-
-RDEPEND="
-   acct-group/epmd
-   acct-user/epmd
-   sys-libs/ncurses:0
-   sys-libs/zlib
-   emacs? ( >=app-editors/emacs-23.1:* )
-   java? ( >=virtual/jdk-1.8:* )
-   odbc? ( dev-db/unixODBC )
-   sctp? ( net-misc/lksctp-tools )
-   ssl? (
-   !libressl? ( >=dev-libs/openssl-0.9.7d:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )
-   systemd? ( sys-apps/systemd )
-   tk? ( dev-lang/tk:0 )
-   wxwidgets? ( 

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

2020-06-28 Thread Sergei Trofimovich
commit: f3441af37e627ac74c2629fd8e9f232ffe1cbc4c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:43:03 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3441af3

app-admin/haskell-updater: drop old

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

 app-admin/haskell-updater/Manifest |  4 --
 .../haskell-updater/haskell-updater-1.2.10.ebuild  | 44 -
 .../haskell-updater-1.2.12-r1.ebuild   | 46 --
 .../haskell-updater/haskell-updater-1.2.9.ebuild   | 44 -
 .../haskell-updater/haskell-updater-1.3.1.ebuild   | 46 --
 5 files changed, 184 deletions(-)

diff --git a/app-admin/haskell-updater/Manifest 
b/app-admin/haskell-updater/Manifest
index c5899213517..7e20adfac84 100644
--- a/app-admin/haskell-updater/Manifest
+++ b/app-admin/haskell-updater/Manifest
@@ -1,5 +1 @@
-DIST haskell-updater-1.2.10.tar.gz 26586 BLAKE2B 
adc46f85118fa55e530aa079ef2df0663b178b15311f4f2ff6474db75aacf1277238a27a2bb98841fc1fe50b556d7f01a677861b3ce9559fe809a02db401ef8d
 SHA512 
c0a72ae77362e5ed4ea0e29175454119b1284756adeb43534bf58b661f3cabb88e08bd5903d415a9f95a6de309753dedf974ddd853b300fd215250e0ad7c
-DIST haskell-updater-1.2.12.tar.gz 26708 BLAKE2B 
d0b040cb3b6211b3c5c60f8cfa3dbccbf9cb15d246b21609a21aac746a8a034e284fe0b99891b5035980252a7aa8b376ad943f32882dc29e16226d95583cb053
 SHA512 
f3a993cb556919bf2e57fdaca7eea9146abc59096e779cbffb69a5c29fc5f6ef889c8ccf4d8331dbd9279919ea91bb05a16d83ad70085d5ef5a44d61120fe7e7
-DIST haskell-updater-1.2.9.tar.gz 26675 BLAKE2B 
a3d11cdcee886a07d87cd2888a9deea1d963b7234b4a10a6b78e9467fae4e9382c92f14a6ba0593f86bf9422ab2cb4bec823de96f34b463590ae18429c118edb
 SHA512 
d19b6154d5ef4da176638c237082586688e2ac73a41c075fc3e51979b86b9e48ca5a9bfe6c870d468d66d95c1464456feed8afc388aea282aa7aad5a35f5e0da
-DIST haskell-updater-1.3.1.tar.gz 26573 BLAKE2B 
68e5357e8f24b9b372dba4feac76595cbf35602d9d9094d616497c9d0040177b5f1def5833770041b693220717f3a4976877e0608858d5d8d426620c71e5
 SHA512 
39c36c4a8997806bb4d64625bc9ed72334a68e57f8c32f75d0c3704ab52b3b68605444c89480e5186c04bb275b3608ea9544366ebc5a00e010cc5fb4ae8296df
 DIST haskell-updater-1.3.2.tar.gz 26133 BLAKE2B 
ea72850e5ca35ec18fa00136c654435a852b072aea0402003c962abbb0e0f09e8a84568f78c9186324b0b0ee9658de1b413670e268cfe1c0056810b8c61b479c
 SHA512 
a4d80ecb65efa9ae21008e04b1363ff2196df4ba431fc5ec899bb9904c598c7a109a38f7dd86dd2dc86faca8ed5083d036d700e7f7796840ee5470401c24f3d9

diff --git a/app-admin/haskell-updater/haskell-updater-1.2.10.ebuild 
b/app-admin/haskell-updater/haskell-updater-1.2.10.ebuild
deleted file mode 100644
index 0ca325522f8..000
--- a/app-admin/haskell-updater/haskell-updater-1.2.10.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-CABAL_FEATURES="bin nocabaldep"
-inherit eutils haskell-cabal
-
-DESCRIPTION="Rebuild Haskell dependencies in Gentoo"
-HOMEPAGE="https://wiki.haskell.org/Gentoo#haskell-updater;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND=">=dev-lang/ghc-6.12.1"
-
-# Need a lower version for portage to get --keep-going
-RDEPEND="|| ( >=sys-apps/portage-2.1.6
-   sys-apps/pkgcore )"
-
-src_prepare() {
-   if use prefix; then
-   sed -i -e "s,/var/db/pkg,${EPREFIX}&,g" \
-   "${S}/Distribution/Gentoo/Packages.hs" || die
-
-   sed -i -e 's,"/","'"${EPREFIX}"'/",g' \
-   "${S}/Distribution/Gentoo/GHC.hs" || die
-   fi
-}
-
-src_configure() {
-   cabal_src_configure \
-   --bindir="${EPREFIX}/usr/sbin" \
-   --constraint="Cabal == $(cabal-version)"
-}
-
-src_install() {
-   cabal_src_install
-
-   dodoc TODO
-}

diff --git a/app-admin/haskell-updater/haskell-updater-1.2.12-r1.ebuild 
b/app-admin/haskell-updater/haskell-updater-1.2.12-r1.ebuild
deleted file mode 100644
index 8960ea72edd..000
--- a/app-admin/haskell-updater/haskell-updater-1.2.12-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-CABAL_FEATURES="bin nocabaldep"
-inherit eutils haskell-cabal
-
-DESCRIPTION="Rebuild Haskell dependencies in Gentoo"
-HOMEPAGE="https://wiki.haskell.org/Gentoo#haskell-updater;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND=">=dev-lang/ghc-6.12.1"
-
-# Need a 

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

2020-06-28 Thread Sergei Trofimovich
commit: 31823df6e0e369700e8790e80e922ba0ff59bf6d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:39:05 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31823df6

dev-lang/nim: drop old

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

 dev-lang/nim/Manifest |  1 -
 dev-lang/nim/nim-1.2.2.ebuild | 86 ---
 2 files changed, 87 deletions(-)

diff --git a/dev-lang/nim/Manifest b/dev-lang/nim/Manifest
index 7ef15cd44d7..cf08663261a 100644
--- a/dev-lang/nim/Manifest
+++ b/dev-lang/nim/Manifest
@@ -1,2 +1 @@
-DIST nim-1.2.2.tar.xz 5680316 BLAKE2B 
e7c0b2d3f4624f4287c364bc7e9571c21bd41327ab35ef4f6c23b0d1e70ad3e41fa944464299b252faac4fe34a8a15625ef732083a41a02cc5686892162b6f4d
 SHA512 
95f7b03a091113382298d438d27641cf612fc187a29bda66c3b88a4b6d29f5c20a33dd22c63cbd402f4ccd921bf05fbd144a8bea9c6155ab865b4b5d14b93a13
 DIST nim-1.2.4.tar.xz 5680128 BLAKE2B 
d8bb186862bf8c8e7e20dd5d1035013c6d48de777512658736ddcd49723e5789dc1e8fe6b5dc8bfbda36d204aeaeba3fdb4e10c6d7955fdc47d9fe78ce17082c
 SHA512 
ed5dd7a744229685c9c034700eb0f7d7c51030ea344c1c371cf2731632fd3376b577a3a9731ed79d65a8fb69f3507a8a88408f2e5c46359a8bbd3b3092d991cc

diff --git a/dev-lang/nim/nim-1.2.2.ebuild b/dev-lang/nim/nim-1.2.2.ebuild
deleted file mode 100644
index 78fadad3c55..000
--- a/dev-lang/nim/nim-1.2.2.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit bash-completion-r1 multiprocessing toolchain-funcs
-
-DESCRIPTION="compiled, garbage-collected systems programming language"
-HOMEPAGE="https://nim-lang.org/;
-SRC_URI="https://nim-lang.org/download/${P}.tar.xz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="doc +readline test"
-
-RESTRICT=test # need to sort out depends and numerous failures
-
-RDEPEND="
-   readline? ( sys-libs/readline:0= )
-"
-DEPEND="
-   ${DEPEND}
-   test? ( net-libs/nodejs )
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-0.20.0-paths.patch
-)
-
-_run() {
-   echo "$@"
-   "$@" || die "'$*' failed"
-}
-
-nim_use_enable() {
-   [[ -z $2 ]] && die "usage: nim_use_enable  "
-   use $1 && echo "-d:$2"
-}
-
-src_configure() {
-   export XDG_CACHE_HOME=${T}/cache #667182
-   tc-export CC LD
-
-   # Override default CC=gcc.
-   echo "gcc.exe= \"$(tc-getCC)\"" >> config/nim.cfg || die
-   echo "gcc.linkerexe  = \"$(tc-getCC)\"" >> config/nim.cfg || die
-}
-
-src_compile() {
-
-   _run ./build.sh
-
-   _run ./bin/nim --parallelBuild:$(makeopts_jobs) c koch
-   _run ./koch boot --parallelBuild:$(makeopts_jobs) -d:release 
$(nim_use_enable readline useGnuReadline)
-   # build nimble and friends
-   # --stable to avoid pulling HEAD nimble
-   PATH="./bin:$PATH" _run ./koch --stable tools 
--parallelBuild:$(makeopts_jobs)
-
-   if use doc; then
-   # TODO: '--parallelBuild:' does ont seem to work
-   PATH="./bin:$PATH" _run ./koch doc 
--parallelBuild:$(makeopts_jobs)
-   fi
-}
-
-src_test() {
-   PATH="./bin:$PATH" _run ./koch test --parallelBuild:$(makeopts_jobs)
-}
-
-src_install() {
-   PATH="./bin:$PATH" _run ./koch install "${ED}"
-   rm -r "${ED}/usr/share/nim/doc" || die "failed to remove 'doc'"
-
-   exeinto /usr/bin
-
-   local bin_exe
-   for bin_exe in bin/*; do
-   # './koch install' installs only 'nim' binary
-   # but not the rest
-   [[ ${bin_exe} == bin/nim ]] && continue
-   doexe "${bin_exe}"
-   done
-
-   use doc && dodoc doc/html/*.html
-   newbashcomp tools/nim.bash-completion ${PN}
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/diskdev_cmds/

2020-06-28 Thread Sergei Trofimovich
commit: 69a64486a66a88fa1caea5cd651e3235a191758e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:26:08 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69a64486

sys-fs/diskdev_cmds: drop old

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

 .../diskdev_cmds/diskdev_cmds-332.14_p1-r1.ebuild  | 46 --
 1 file changed, 46 deletions(-)

diff --git a/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r1.ebuild 
b/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r1.ebuild
deleted file mode 100644
index 8df958e5603..000
--- a/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-MY_PV=${PV%_p*}
-
-DESCRIPTION="HFS and HFS+ utils ported from OSX, supplies mkfs and fsck"
-HOMEPAGE="http://opendarwin.org;
-SRC_URI="http://darwinsource.opendarwin.org/tarballs/apsl/diskdev_cmds-${MY_PV}.tar.gz
-mirror://gentoo/diskdev_cmds-${PV}.patch.bz2"
-LICENSE="APSL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86"
-IUSE=""
-DEPEND="dev-libs/openssl"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-PATCHES=(
-   "${WORKDIR}"/diskdev_cmds-${PV}.patch
-   "${FILESDIR}"/diskdev_cmds-respect-cflags.patch
-)
-
-src_compile() {
-   emake -f Makefile.lnx AR="$(tc-getAR)" CC="$(tc-getCC)"
-}
-
-src_install() {
-   into /
-   dosbin fsck_hfs.tproj/fsck_hfs
-   dosbin newfs_hfs.tproj/newfs_hfs
-   dosym /sbin/newfs_hfs /sbin/mkfs.hfs
-   dosym /sbin/newfs_hfs /sbin/mkfs.hfsplus
-   dosym /sbin/fsck_hfs /sbin/fsck.hfs
-   dosym /sbin/fsck_hfs /sbin/fsck.hfsplus
-   doman newfs_hfs.tproj/newfs_hfs.8
-   newman newfs_hfs.tproj/newfs_hfs.8 mkfs.hfs.8
-   newman newfs_hfs.tproj/newfs_hfs.8 mkfs.hfsplus.8
-   doman fsck_hfs.tproj/fsck_hfs.8
-   newman fsck_hfs.tproj/fsck_hfs.8 fsck.hfs.8
-   newman fsck_hfs.tproj/fsck_hfs.8 fsck.hfsplus.8
-}



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

2020-06-28 Thread Sergei Trofimovich
commit: 11feb0383cbf5de23d23fdeaf4232beba3dedb1e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:35:37 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11feb038

dev-util/shelltestrunner: drop old

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

 dev-util/shelltestrunner/Manifest  |  1 -
 .../shelltestrunner-1.3.5-r1.ebuild| 41 --
 2 files changed, 42 deletions(-)

diff --git a/dev-util/shelltestrunner/Manifest 
b/dev-util/shelltestrunner/Manifest
index 006ec43da10..94247606955 100644
--- a/dev-util/shelltestrunner/Manifest
+++ b/dev-util/shelltestrunner/Manifest
@@ -1,2 +1 @@
-DIST shelltestrunner-1.3.5.tar.gz 21428 BLAKE2B 
af7573a16159baf5dbcbedc10a454b1f09875031cc9d619b287aeaf507744a2a1dc5cde8ea509949097b5364b5b9ac9438705e58d2d08647e5fa6c4eccceec37
 SHA512 
f0cc03c41fe176ddfd0e498121f5ebafda721b93e9a84f320b445bf797022545e1046ffb3814e2eaac72f0975a2a11fb1de5e0a007c5700de028e57ee66fa093
 DIST shelltestrunner-1.9.tar.gz 39538 BLAKE2B 
45dc5acbfd35d65a818938382e62eacc7aa3798e8f0ab9cdd4d4a358f470de9854bedbd2335bae6b4195ea05b2305de84e0b13c86206ac0e53039726fbc59354
 SHA512 
bdb5476e30189f0997f3a9505d954a828475a5d95e1220dc9ed342e96100f4dfa0cfadc1afd9a5758223cf1a659d1f77d7d0a0533c32bd80b325c9a7ad48178d

diff --git a/dev-util/shelltestrunner/shelltestrunner-1.3.5-r1.ebuild 
b/dev-util/shelltestrunner/shelltestrunner-1.3.5-r1.ebuild
deleted file mode 100644
index d51ce4d5631..000
--- a/dev-util/shelltestrunner/shelltestrunner-1.3.5-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# ebuild generated by hackport 0.4.5.
-
-CABAL_FEATURES="bin"
-inherit haskell-cabal
-
-DESCRIPTION="A tool for testing command-line programs"
-HOMEPAGE="http://joyful.com/shelltestrunner;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/cmdargs-0.7:= =dev-haskell/diff-0.2.0:= =dev-haskell/filemanip-0.3:= =dev-haskell/pretty-show-1.6.5:=
-   >=dev-haskell/regex-tdfa-1.1:= =dev-haskell/test-framework-0.3.2:= =dev-haskell/test-framework-hunit-0.2:= 
=dev-haskell/utf8-string-0.3.5:= =dev-lang/ghc-7.4.1:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.6
-"
-
-src_prepare() {
-   cabal_chdeps \
-   'HUnit< 1.3' 'HUnit' \
-   'process  < 1.3' 'process'
-}



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

2020-06-28 Thread Sergei Trofimovich
commit: 68ffc711e6966ec00a37cd041b141e959948c0f5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:31:07 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ffc711

sys-devel/binutils: drop old

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

 sys-devel/binutils/Manifest |   1 -
 sys-devel/binutils/binutils-2.34.ebuild | 442 
 2 files changed, 443 deletions(-)

diff --git a/sys-devel/binutils/Manifest b/sys-devel/binutils/Manifest
index b7099fea2fb..9e9e3a861e0 100644
--- a/sys-devel/binutils/Manifest
+++ b/sys-devel/binutils/Manifest
@@ -3,7 +3,6 @@ DIST binutils-2.32-patches-3.tar.xz 151372 BLAKE2B 
70d5f78d9f3e3bf9ff096b6f24bab
 DIST binutils-2.32.tar.xz 20774880 BLAKE2B 
d1bdbd9c8487c091665c197974ce4bdf520b7a67ed6997a81b87e6a0af9514a091458244f583acec5ae580ac2ee5e908f67f483b8e5263cd18ced794cb235da6
 SHA512 
d326408f12a03d9a61a9de56584c2af12f81c2e50d2d7e835d51565df8314df01575724afa1e43bd0db45cfc9916b41519b67dfce03232aa4978704492a6994a
 DIST binutils-2.33.1-patches-2.tar.xz 18636 BLAKE2B 
0e0757329b6a83aeff4f4c450c95e73fd48fcc89f83e63f294568632bee0972552cf2f57494352c5d9a7c16a51cdbc4108b38fa6028d4388c8e76046b3da9212
 SHA512 
d982f68d1f5fdb384309a2a1b7426bf840a90e7a85b37229b4223b62c36cab9dd9ec0c08382c85c68adf996dec21133df3180a2fc649363adae8645f8282f71d
 DIST binutils-2.33.1.tar.xz 21490848 BLAKE2B 
c336a8412938dc8c224f40a763a8bea9937cca0462a8fb80e62f14aabe590107fc061a3f4b9327e1f4652cb026384d36a91b4766d4d469d2d0680932874b638c
 SHA512 
b7a6767c6c7ca6b5cafa7080e6820b7bb3a53b7148348c438d99905defbdf0d30c9744a484ee01c9441a8153901808513366b15ba9533e20c9673c262ade36ac
-DIST binutils-2.34-patches-1.tar.xz 20388 BLAKE2B 
8828505f62259a307de445357320827e7f6bc416a7f4c72140add505f62eef3928c7daec13be158b52c2a7a1d989f539025e4be6ec27ef80ede81477a42c5042
 SHA512 
951dffcc30ad5706dc48e71995217655c5d96472446ab66a357f19486b57d1868143a9809887eab7ba8c42c33124f8b37d3bab6618388ea8a08b4399d348a645
 DIST binutils-2.34-patches-4.tar.xz 95232 BLAKE2B 
0a355120ecaf447d863f6d0837028061968166c9024da36212ce7d172ee2060e4027be1fca0089e38ab9073b5332307ff1dc05b868603bd2aa0ec8e88af7cd0a
 SHA512 
e593edbeddaf97ef23fa8eb25c5714c7f2dd2500d11422bd9dba42e119884fe71593adc98862f74c7d391ceb298556ed049eee3c504733c634faef236045876b
 DIST binutils-2.34.tar.xz 21637796 BLAKE2B 
07dd23916a7d27f71c3f160c8c16abe2bd4fce294c738c665a012a3be6a87dbe8160d0c38740524f9025e01d438e99b2a94bcf9f9f79ee214f5dd033de8aad3d
 SHA512 
2c7976939dcf5e8c5b7374cccd39bfe803b1bec73c6abfa0eb17c24e1942574c6bdb874c66a092a82adc443182eacd8a5a8001c19a76101f0c7ba40c27de0bbd
 DIST binutils--patches-5.tar.xz 17492 BLAKE2B 
4d5072d26d714dbc2a65899102c35791887b3c1298eb40a72088f5f964f500fa82581ac27a47f075812610e1757ba1ca5ac7d055dccc0d819ec06a86ca98f395
 SHA512 
c8a843cf04b72f010eef405cc2d029e49fb1f4582686f1e0409579d544b02d249c31f7cb9cd59747bc94727e29ddaba89951043b392017c6963ca14f3a0202b1

diff --git a/sys-devel/binutils/binutils-2.34.ebuild 
b/sys-devel/binutils/binutils-2.34.ebuild
deleted file mode 100644
index 40a250edf7b..000
--- a/sys-devel/binutils/binutils-2.34.ebuild
+++ /dev/null
@@ -1,442 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit eutils libtool flag-o-matic gnuconfig multilib toolchain-funcs
-
-DESCRIPTION="Tools necessary to build programs"
-HOMEPAGE="https://sourceware.org/binutils/;
-LICENSE="GPL-3+"
-IUSE="default-gold doc +gold multitarget +nls +plugins static-libs test"
-REQUIRED_USE="default-gold? ( gold )"
-
-# Variables that can be set here:
-# PATCH_VER  - the patchset version
-#  Default: empty, no patching
-# PATCH_BINUTILS_VER - the binutils version in the patchset name
-#- Default: PV
-# PATCH_DEV  - Use download URI 
https://dev.gentoo.org/~{PATCH_DEV}/distfiles/...
-#  for the patchsets
-
-PATCH_VER=1
-PATCH_DEV=slyfox
-
-case ${PV} in
-   )
-   EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git;
-   inherit git-r3
-   S=${WORKDIR}/binutils
-   EGIT_CHECKOUT_DIR=${S}
-   SLOT=${PV}
-   ;;
-   *.)
-   EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git;
-   inherit git-r3
-   S=${WORKDIR}/binutils
-   EGIT_CHECKOUT_DIR=${S}
-   EGIT_BRANCH=$(ver_cut 1-2)
-   EGIT_BRANCH="binutils-${EGIT_BRANCH/./_}-branch"
-   SLOT=$(ver_cut 1-2)
-   ;;
-   *)
-   SRC_URI="mirror://gnu/binutils/binutils-${PV}.tar.xz"
-   SLOT=$(ver_cut 1-2)
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-

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

2020-06-28 Thread Sergei Trofimovich
commit: b67ff7c99921a1980d5b6ab708688fdae8509be2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:38:47 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:43:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b67ff7c9

dev-lang/whitespace: drop old

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

 dev-lang/whitespace/Manifest  |  1 -
 dev-lang/whitespace/whitespace-0.3.ebuild | 33 ---
 2 files changed, 34 deletions(-)

diff --git a/dev-lang/whitespace/Manifest b/dev-lang/whitespace/Manifest
index c7f03d92524..87c13d0185b 100644
--- a/dev-lang/whitespace/Manifest
+++ b/dev-lang/whitespace/Manifest
@@ -1,2 +1 @@
 DIST whitespace-0.4.tar.gz 16428 BLAKE2B 
d5353b05b80a14ed0583513568d2889816c9e8b7fca8d5253bb5def584c5d43cb0ed8fa46943e7c6c0f82b6424dd01879b7beaaad813a5beb6fc3081f4dfd618
 SHA512 
2a1c932d650f6cfd55bb7c08b8882086143bc9ec2b0f639a7452116d86f12daff1a1268d7451003a6bf8635fbf1ad23e9203410fd423ce16d4239c1b552d7046
-DIST wspace-0.3.tgz 15471 BLAKE2B 
7b5d5435b78d9ff794c69b21332328d0f2107663076c1d3e8e76469196d109827082cd2dd26b74ecd6305631cb254adf5ffa917707146ace29cd107df192
 SHA512 
d162e804b0b6c4cba164552678ef3a094153e89a0df5f684e52b93229d88699cf9c7fd31641b88fd8c4653c158b1e77193ebd9cd1edfc47863a09798f67d3487

diff --git a/dev-lang/whitespace/whitespace-0.3.ebuild 
b/dev-lang/whitespace/whitespace-0.3.ebuild
deleted file mode 100644
index 92b1bb97583..000
--- a/dev-lang/whitespace/whitespace-0.3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-CABAL_FEATURES="bin"
-
-inherit haskell-cabal
-
-DESCRIPTION="Whitespace language interpreter in haskell"
-HOMEPAGE="http://compsoc.dur.ac.uk/whitespace/;
-SRC_URI="http://compsoc.dur.ac.uk/whitespace/downloads/wspace-${PV}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-DEPEND="dev-lang/ghc"
-RDEPEND=""
-
-S="${WORKDIR}/WSpace"
-
-src_prepare() {
-   epatch -p1 "${FILESDIR}/${PN}-cabal.patch"
-}
-
-src_install() {
-   cabal_src_install
-
-   dohtml docs/tutorial.html
-   use examples && dodoc -r examples
-}



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

2020-06-28 Thread Mike Pagano
commit: b4a79daa0aa7c9c7fcae132dc5654feebf739497
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jun 28 22:36:58 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jun 28 22:36:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a79daa

sys-kernel/git-sources: Linux patch 5.8-rc3

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

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-5.8_rc3.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 68f5171e223..8c5557bb686 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -1,3 +1,4 @@
 DIST linux-5.7.tar.xz 112690468 BLAKE2B 
b2b71e231507429b178b6b89be546c4a3ee2757f5d2c58b6137d383f16034a587225a75a9dbca6a01a433056ebe078487132c224e909a2971c9634687e47b1d1
 SHA512 
45bde01593f6147c8c169b9e46b4b56eee998142552ae0ff82f1dd21b1fd54f3b32f6283f6bd77ea717d374672167849e468c157f235d2f12f7d7816e4623bf6
 DIST patch-5.8-rc1.patch 64960909 BLAKE2B 
a84c2ffcc46a9451404f7fbcb94ef84f02752bdbb06c554ffad33c98e7c6b98f8177d4f37ef7fff265b6266450f0575c4c67428967bb727733e75e2e8986b679
 SHA512 
0209a8fd978df08952cf7db62e7cbb1726fcf5c4008bbba084e6d32797aeb5fda4bf77ca9eecb4f839b63f3ee1c0e4839b566ec1dba6a1bd55f23286c0600f0e
 DIST patch-5.8-rc2.patch 65398003 BLAKE2B 
536bc4d8537587ce0324036d4649ac7c4ba2a390fc4fc3e15757fad2a63ad05642917e968290fe4ba02b06fc8ec67fe37ec203bfafe12fd83ec7fb9a8a0e8174
 SHA512 
4fd2d56e931079432ddce355acc049d3721eea1c1191f3c3ecbb9172169b1f8e181f272aef66a5c3bb8bce355af30e94558de2757a18c171d2e662f90c1a49f4
+DIST patch-5.8-rc3.patch 65933507 BLAKE2B 
a0af229faa03bcc91edd27fd09a157dda245a7e703c2c754e2917d6acbf94827db805432580760850f4b48aa3b6ae3a2431483d074eeb1a2648cb22a463f1bd5
 SHA512 
ddc163b322e75c40b2f4cd81e1c2e68cf1ebc9200095759948c353b75bd9dadeba4ffa704025ecbd95d8ebe9e7d2f561f2eb0f0d47dbf03d372b86bfddb31ed0

diff --git a/sys-kernel/git-sources/git-sources-5.8_rc3.ebuild 
b/sys-kernel/git-sources/git-sources-5.8_rc3.ebuild
new file mode 100644
index 000..9412304f02d
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-5.8_rc3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="5.7"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.5"
+
+pkg_postinst() {
+   postinst_sources
+}



[gentoo-commits] repo/gentoo:master commit in: gui-wm/hikari/, gui-wm/hikari/files/

2020-06-28 Thread Aaron Bauman
commit: b30757a714f3808369686d566bb501ffb4593aa1
Author: Aisha Tammy  aisha  cc>
AuthorDate: Thu Jun 18 12:02:32 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jun 28 22:21:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30757a7

gui-wm/hikari: remove old bugged version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy  aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/16290
Signed-off-by: Aaron Bauman  gentoo.org>

 gui-wm/hikari/Manifest  |   1 -
 gui-wm/hikari/files/hikari-2.0.1-gnu-make.patch | 327 
 gui-wm/hikari/hikari-2.0.1-r1.ebuild|  63 -
 3 files changed, 391 deletions(-)

diff --git a/gui-wm/hikari/Manifest b/gui-wm/hikari/Manifest
index 6692154a2a9..4a0d036c0f8 100644
--- a/gui-wm/hikari/Manifest
+++ b/gui-wm/hikari/Manifest
@@ -1,3 +1,2 @@
 DIST hikari-1.2.0.tar.gz 98941 BLAKE2B 
0b882d483143e307d4b173560f335e85b4c5613b75c51c6b70b68df9b4f70f9a009d95cb8eda1c211f4968b5c8600e7113bca5e014cecfb1917db2acae7e6f3d
 SHA512 
2bd0b6032541ca63a2bd12aee9155e9b0d08e4c541ec2f837073f1498ecb39df969f8821fcbd066e44c5ddaf658e4875bea25f344226b7ea97fe008a0db4d328
-DIST hikari-2.0.1.tar.gz 1003467 BLAKE2B 
8a299fe1d85fac5df04f2475295250d78706c5da9c14a965ff8c7c91af36eaf5711675dc07c43c83974411719b88d483eee24ebd24a87eb1b3280a89b521a19e
 SHA512 
18f8f46ae38fa307b63c44011da084ee0ec4a0925ff8ea3677fda9171bfd25b42853719cea812aabee2d377e6208ddcaf69692e1fb0655110f8d1905d1be00e8
 DIST hikari-2.0.2.tar.gz 1003593 BLAKE2B 
89a2ec29673e7ac371a7e4f179b3dc398fbacb3daf859a9f1a53cf74aac9dc36ca33f3dc1878360fdae80ef39315a0b06d0988d897c9ce58693404fd3099d6bf
 SHA512 
12e6cf2f1f24a4c0b64e6c035c518bdc5dbfa094a220147c374f599df8b52a4ee4c1f3cdffe1080fe87c665841a6ca018de4a48ec65aaa5b60e9e968087d83d6

diff --git a/gui-wm/hikari/files/hikari-2.0.1-gnu-make.patch 
b/gui-wm/hikari/files/hikari-2.0.1-gnu-make.patch
deleted file mode 100644
index 0f5a67a6242..000
--- a/gui-wm/hikari/files/hikari-2.0.1-gnu-make.patch
+++ /dev/null
@@ -1,327 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 0f104d0..39d6972 100644
 a/Makefile
-+++ b/Makefile
-@@ -1,7 +1,22 @@
-+TARGET =  hikari
-+
-+DESTDIR   ?=
-+
-+prefix ?= /usr/local
-+exec_prefix ?=$(prefix)
-+bindir ?= $(exec_prefix)/bin
-+sysconfdir ?= $(prefix)/etc
-+
-+PKG_CONFIG ?= pkg-config
-+
-+VERSION ?="CURRENT"
-+
-+### Upstream variables
-+PREFIX ?= $(DESTDIR)$(prefix)
-+ETC_PREFIX ?= $(DESTDIR)$(sysconfdir)
-+
- OS != uname
--VERSION ?= "CURRENT"
--PREFIX ?= /usr/local
--ETC_PREFIX ?= ${PREFIX}
-+INSTALL_GROUP != id -gn
- 
- OBJS = \
-   action.o \
-@@ -29,7 +44,6 @@ OBJS = \
-   layout.o \
-   layout_config.o \
-   layout_select_mode.o \
--  main.o \
-   mark.o \
-   mark_assign_mode.o \
-   mark_select_mode.o \
-@@ -56,116 +70,127 @@ OBJS = \
-   xwayland_unmanaged_view.o \
-   xwayland_view.o
- 
--WAYLAND_PROTOCOLS != pkg-config --variable pkgdatadir wayland-protocols
--
--.PHONY: distclean clean clean-doc doc dist install uninstall
--.PATH: src
-+WAYLAND_PROTOCOLS != $(PKG_CONFIG) --variable pkgdatadir wayland-protocols
- 
- # Allow specification of /extra/ CFLAGS and LDFLAGS
--CFLAGS += ${CFLAGS_EXTRA}
--LDFLAGS += ${LDFLAGS_EXTRA}
-+CFLAGS += $(CFLAGS_EXTRA)
-+LDFLAGS += $(LDFLAGS_EXTRA)
- 
--.ifdef DEBUG
-+ifdef DEBUG
- CFLAGS += -g -O0 -fsanitize=address
--.else
-+else
- CFLAGS += -DNDEBUG
--.endif
-+endif
- 
--.ifdef WITH_POSIX_C_SOURCE
-+ifdef WITH_POSIX_C_SOURCE
- CFLAGS += -D_POSIX_C_SOURCE=200809L
--.endif
-+endif
- 
--.ifdef WITH_XWAYLAND
-+ifdef WITH_XWAYLAND
- CFLAGS += -DHAVE_XWAYLAND=1
--.endif
-+endif
- 
--.ifdef WITH_GAMMACONTROL
-+ifdef WITH_GAMMACONTROL
- CFLAGS += -DHAVE_GAMMACONTROL=1
--.endif
-+endif
- 
--.ifdef WITH_SCREENCOPY
-+ifdef WITH_SCREENCOPY
- CFLAGS += -DHAVE_SCREENCOPY=1
--.endif
-+endif
- 
--.ifdef WITH_LAYERSHELL
-+ifdef WITH_LAYERSHELL
- CFLAGS += -DHAVE_LAYERSHELL=1
--.endif
-+endif
- 
--.ifdef WITHOUT_SUID
-+ifdef WITHOUT_SUID
- PERMS = 555
--.else
-+else
- PERMS = 4555
--.endif
-+endif
- 
--CFLAGS += -Wall -I. -Iinclude -DHIKARI_ETC_PREFIX=${ETC_PREFIX}
-+CFLAGS += -Wall -I. -Iinclude -DHIKARI_ETC_PREFIX=$(ETC_PREFIX)
- 
--WLROOTS_CFLAGS != pkg-config --cflags wlroots
--WLROOTS_LIBS != pkg-config --libs wlroots
-+WLROOTS_CFLAGS != $(PKG_CONFIG) --cflags wlroots
-+WLROOTS_LIBS != $(PKG_CONFIG) --libs wlroots
- 
- WLROOTS_CFLAGS += -DWLR_USE_UNSTABLE=1
- 
--PANGO_CFLAGS != pkg-config --cflags pangocairo
--PANGO_LIBS != pkg-config --libs pangocairo
-+PANGO_CFLAGS != $(PKG_CONFIG) --cflags pangocairo
-+PANGO_LIBS != $(PKG_CONFIG) --libs pangocairo
- 
--CAIRO_CFLAGS != pkg-config --cflags cairo
--CAIRO_LIBS != pkg-config --libs cairo
-+CAIRO_CFLAGS != $(PKG_CONFIG) --cflags cairo
-+CAIRO_LIBS != $(PKG_CONFIG) --libs cairo
- 
--GLIB_CFLAGS != pkg-config --cflags glib-2.0
--GLIB_LIBS != pkg-config --libs glib-2.0
-+GLIB_CFLAGS != 

[gentoo-commits] repo/gentoo:master commit in: gui-wm/hikari/files/, gui-wm/hikari/

2020-06-28 Thread Aaron Bauman
commit: 7f7e128f4e44faf93518b84bc455945ee7f663b6
Author: Aisha Tammy  aisha  cc>
AuthorDate: Wed Jun 17 12:40:49 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jun 28 22:21:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f7e128f

gui-wm/hikari: version bump to 2.0.2

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

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy  aisha.cc>
Signed-off-by: Aaron Bauman  gentoo.org>

 gui-wm/hikari/Manifest  |   1 +
 gui-wm/hikari/files/hikari-2.0.2-gnu-make.patch | 327 
 gui-wm/hikari/hikari-2.0.2.ebuild   |  63 +
 3 files changed, 391 insertions(+)

diff --git a/gui-wm/hikari/Manifest b/gui-wm/hikari/Manifest
index 2ef76be3063..6692154a2a9 100644
--- a/gui-wm/hikari/Manifest
+++ b/gui-wm/hikari/Manifest
@@ -1,2 +1,3 @@
 DIST hikari-1.2.0.tar.gz 98941 BLAKE2B 
0b882d483143e307d4b173560f335e85b4c5613b75c51c6b70b68df9b4f70f9a009d95cb8eda1c211f4968b5c8600e7113bca5e014cecfb1917db2acae7e6f3d
 SHA512 
2bd0b6032541ca63a2bd12aee9155e9b0d08e4c541ec2f837073f1498ecb39df969f8821fcbd066e44c5ddaf658e4875bea25f344226b7ea97fe008a0db4d328
 DIST hikari-2.0.1.tar.gz 1003467 BLAKE2B 
8a299fe1d85fac5df04f2475295250d78706c5da9c14a965ff8c7c91af36eaf5711675dc07c43c83974411719b88d483eee24ebd24a87eb1b3280a89b521a19e
 SHA512 
18f8f46ae38fa307b63c44011da084ee0ec4a0925ff8ea3677fda9171bfd25b42853719cea812aabee2d377e6208ddcaf69692e1fb0655110f8d1905d1be00e8
+DIST hikari-2.0.2.tar.gz 1003593 BLAKE2B 
89a2ec29673e7ac371a7e4f179b3dc398fbacb3daf859a9f1a53cf74aac9dc36ca33f3dc1878360fdae80ef39315a0b06d0988d897c9ce58693404fd3099d6bf
 SHA512 
12e6cf2f1f24a4c0b64e6c035c518bdc5dbfa094a220147c374f599df8b52a4ee4c1f3cdffe1080fe87c665841a6ca018de4a48ec65aaa5b60e9e968087d83d6

diff --git a/gui-wm/hikari/files/hikari-2.0.2-gnu-make.patch 
b/gui-wm/hikari/files/hikari-2.0.2-gnu-make.patch
new file mode 100644
index 000..338fcd8745f
--- /dev/null
+++ b/gui-wm/hikari/files/hikari-2.0.2-gnu-make.patch
@@ -0,0 +1,327 @@
+diff --git a/Makefile b/Makefile
+index 0f104d0..6a1d640 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,22 @@
++TARGET =  hikari
++
++DESTDIR   ?=
++
++prefix ?= /usr/local
++exec_prefix ?=$(prefix)
++bindir ?= $(exec_prefix)/bin
++sysconfdir ?= $(prefix)/etc
++
++PKG_CONFIG ?= pkg-config
++
++VERSION ?="CURRENT"
++
++### Upstream variables
++PREFIX ?= $(DESTDIR)$(prefix)
++ETC_PREFIX ?= $(DESTDIR)$(sysconfdir)
++
+ OS != uname
+-VERSION ?= "CURRENT"
+-PREFIX ?= /usr/local
+-ETC_PREFIX ?= ${PREFIX}
++INSTALL_GROUP != id -gn
+ 
+ OBJS = \
+   action.o \
+@@ -29,7 +44,6 @@ OBJS = \
+   layout.o \
+   layout_config.o \
+   layout_select_mode.o \
+-  main.o \
+   mark.o \
+   mark_assign_mode.o \
+   mark_select_mode.o \
+@@ -56,116 +70,127 @@ OBJS = \
+   xwayland_unmanaged_view.o \
+   xwayland_view.o
+ 
+-WAYLAND_PROTOCOLS != pkg-config --variable pkgdatadir wayland-protocols
+-
+-.PHONY: distclean clean clean-doc doc dist install uninstall
+-.PATH: src
++WAYLAND_PROTOCOLS != $(PKG_CONFIG) --variable pkgdatadir wayland-protocols
+ 
+ # Allow specification of /extra/ CFLAGS and LDFLAGS
+-CFLAGS += ${CFLAGS_EXTRA}
+-LDFLAGS += ${LDFLAGS_EXTRA}
++CFLAGS += $(CFLAGS_EXTRA)
++LDFLAGS += $(LDFLAGS_EXTRA)
+ 
+-.ifdef DEBUG
++ifdef DEBUG
+ CFLAGS += -g -O0 -fsanitize=address
+-.else
++else
+ CFLAGS += -DNDEBUG
+-.endif
++endif
+ 
+-.ifdef WITH_POSIX_C_SOURCE
++ifdef WITH_POSIX_C_SOURCE
+ CFLAGS += -D_POSIX_C_SOURCE=200809L
+-.endif
++endif
+ 
+-.ifdef WITH_XWAYLAND
++ifdef WITH_XWAYLAND
+ CFLAGS += -DHAVE_XWAYLAND=1
+-.endif
++endif
+ 
+-.ifdef WITH_GAMMACONTROL
++ifdef WITH_GAMMACONTROL
+ CFLAGS += -DHAVE_GAMMACONTROL=1
+-.endif
++endif
+ 
+-.ifdef WITH_SCREENCOPY
++ifdef WITH_SCREENCOPY
+ CFLAGS += -DHAVE_SCREENCOPY=1
+-.endif
++endif
+ 
+-.ifdef WITH_LAYERSHELL
++ifdef WITH_LAYERSHELL
+ CFLAGS += -DHAVE_LAYERSHELL=1
+-.endif
++endif
+ 
+-.ifdef WITHOUT_SUID
++ifdef WITHOUT_SUID
+ PERMS = 555
+-.else
++else
+ PERMS = 4555
+-.endif
++endif
+ 
+-CFLAGS += -Wall -I. -Iinclude -DHIKARI_ETC_PREFIX=${ETC_PREFIX}
++CFLAGS += -Wall -I. -Iinclude -DHIKARI_ETC_PREFIX=$(ETC_PREFIX)
+ 
+-WLROOTS_CFLAGS != pkg-config --cflags wlroots
+-WLROOTS_LIBS != pkg-config --libs wlroots
++WLROOTS_CFLAGS != $(PKG_CONFIG) --cflags wlroots
++WLROOTS_LIBS != $(PKG_CONFIG) --libs wlroots
+ 
+ WLROOTS_CFLAGS += -DWLR_USE_UNSTABLE=1
+ 
+-PANGO_CFLAGS != pkg-config --cflags pangocairo
+-PANGO_LIBS != pkg-config --libs pangocairo
++PANGO_CFLAGS != $(PKG_CONFIG) --cflags pangocairo
++PANGO_LIBS != $(PKG_CONFIG) --libs pangocairo
+ 
+-CAIRO_CFLAGS != pkg-config --cflags cairo
+-CAIRO_LIBS != pkg-config --libs cairo
++CAIRO_CFLAGS != $(PKG_CONFIG) --cflags cairo
++CAIRO_LIBS != $(PKG_CONFIG) --libs cairo
+ 
+-GLIB_CFLAGS != pkg-config --cflags glib-2.0
+-GLIB_LIBS != pkg-config --libs glib-2.0
++GLIB_CFLAGS != $(PKG_CONFIG) 

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

2020-06-28 Thread Aaron Bauman
commit: 84a7ea3e93c926df24e5f82d8e2ff0c3acd54206
Author: Aisha Tammy  aisha  cc>
AuthorDate: Tue Jun 16 17:25:54 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jun 28 22:19:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84a7ea3e

app-text/scdoc: version bump to 1.11.0

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy  aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/16271
Signed-off-by: Aaron Bauman  gentoo.org>

 app-text/scdoc/Manifest|  1 +
 app-text/scdoc/scdoc-1.11.0.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/app-text/scdoc/Manifest b/app-text/scdoc/Manifest
index 4703e82d040..6f23811e6c7 100644
--- a/app-text/scdoc/Manifest
+++ b/app-text/scdoc/Manifest
@@ -1,3 +1,4 @@
 DIST scdoc-1.10.0.tar.gz 12414 BLAKE2B 
3111b3ace102aca2f7da86e510e00f552874817b6b9d754770bd94f9482e4e444a4bc4d44a8317376a6c374bb7363eae96a49281fefd95dd663134087123034b
 SHA512 
546743376380d84aa9c8be65529dbbe1634e574203220ce1c057341436bd3a15297f393ca79d29372cb125bf457cfc00f64ba2867b8d2e910ca6531acb552e97
 DIST scdoc-1.10.1.tar.gz 12422 BLAKE2B 
4aa5b28994cd03f5d3fc9fff253a02f1052653d25d41225665219ebb6322ebe69f2671d91c5cfe201fd7f9b1ac06f38db3dd126492da06fef0b692fc040300d5
 SHA512 
356aee85c4676a1fbd7367c6087dd7f6f4d33793be0f3fef74803ceb93c0a9e45c78022d219dc08a7d79d71c393849fa3113c36a85d5d60ed474b62bf5f89743
+DIST scdoc-1.11.0.tar.gz 12616 BLAKE2B 
3aec60e51b949dc94e8339e400c366428a217c1bd44f79716cbd6993a7f8051a0796dc96163e071db4808c0edde071408e3eb1ee0ae3bb8ccd718479960ab8f3
 SHA512 
4c8248a12e69e53cc2182af5375912f7af64f3807163dbe3c52e85d817b1bfa7e461d02a627c73d93bdaa96e49668ff894d37817ceb70ee3186da9e3f8372d49
 DIST scdoc-1.9.3.tar.gz 11479 BLAKE2B 
79aa3f18104e06722f087e9c2fa047f6e19fe8eb47ba0b4e6fa86f7abdc52b06a2dfcfd632b16dc7bce6e5ef3b0dbb40ce9170e678bc17c0a4e43dcc0099a1dc
 SHA512 
77be81f042e2099de7fc84b0161bc8a95d5c3dde662284613d84a1e249fa0aa51dad73f53f265c833526d40f5e1f19fce99dc5cd6df35efb0a323c3db6084a55

diff --git a/app-text/scdoc/scdoc-1.11.0.ebuild 
b/app-text/scdoc/scdoc-1.11.0.ebuild
new file mode 100644
index 000..15ecbe1b112
--- /dev/null
+++ b/app-text/scdoc/scdoc-1.11.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Standalone tool for generating man pages with a simple syntax"
+HOMEPAGE="https://git.sr.ht/~sircmpwn/scdoc;
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/scdoc;
+   inherit git-r3
+else
+   SRC_URI="https://git.sr.ht/~sircmpwn/scdoc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+src_prepare() {
+   default
+
+   sed -e 's/-Werror//' \
+   -i Makefile || die 'Failed to patch Makefile'
+}
+
+src_compile() {
+   local MY_HS="./scdoc"
+   if tc-is-cross-compiler; then
+   tc-export_build_env
+   MY_HS="./hostscdoc"
+   emake scdoc HOST_SCDOC="./hostscdoc" OUTDIR="${S}/.build.host" 
CC="$(tc-getBUILD_CC)" \
+   CFLAGS="${BUILD_CFLAGS} -DVERSION='\"${PV}\"'" 
LDFLAGS="${BUILD_LDFLAGS}"
+   mv scdoc hostscdoc || die 'Failed to rename host scdoc'
+   fi
+   emake LDFLAGS="${LDFLAGS}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}" \
+   PCDIR="${ED}/usr/$(get_libdir)/pkgconfig" install
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/hunspell/, app-text/hunspell/files/

2020-06-28 Thread Aaron Bauman
commit: 4e89ec853a42dd375ccc12057c9376e6786d44ba
Author: John Helmert III  posteo  net>
AuthorDate: Fri Jun 19 03:50:19 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jun 28 22:16:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e89ec85

app-text/hunspell: Patch CVE-2019-16707

Bug: https://bugs.gentoo.org/717968
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: John Helmert III  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/16320
Signed-off-by: Aaron Bauman  gentoo.org>

 .../files/hunspell-1.7.0-CVE-2019-16707.patch  | 22 ++
 app-text/hunspell/hunspell-1.7.0-r2.ebuild | 89 ++
 2 files changed, 111 insertions(+)

diff --git a/app-text/hunspell/files/hunspell-1.7.0-CVE-2019-16707.patch 
b/app-text/hunspell/files/hunspell-1.7.0-CVE-2019-16707.patch
new file mode 100644
index 000..649eef5b293
--- /dev/null
+++ b/app-text/hunspell/files/hunspell-1.7.0-CVE-2019-16707.patch
@@ -0,0 +1,22 @@
+From ac938e2ecb48ab4dd21298126c7921689d60571b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= 
+Date: Tue, 12 Nov 2019 20:03:15 +
+Subject: [PATCH] invalid read memory access #624
+
+---
+ src/hunspell/suggestmgr.cxx | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/hunspell/suggestmgr.cxx b/src/hunspell/suggestmgr.cxx
+index dba084e9..c23f165a 100644
+--- a/src/hunspell/suggestmgr.cxx
 b/src/hunspell/suggestmgr.cxx
+@@ -2040,7 +2040,7 @@ int SuggestMgr::leftcommonsubstring(
+   int l2 = su2.size();
+   // decapitalize dictionary word
+   if (complexprefixes) {
+-if (su1[l1 - 1] == su2[l2 - 1])
++if (l1 && l2 && su1[l1 - 1] == su2[l2 - 1])
+   return 1;
+   } else {
+ unsigned short idx = su2.empty() ? 0 : (su2[0].h << 8) + su2[0].l;

diff --git a/app-text/hunspell/hunspell-1.7.0-r2.ebuild 
b/app-text/hunspell/hunspell-1.7.0-r2.ebuild
new file mode 100644
index 000..209dab4e6da
--- /dev/null
+++ b/app-text/hunspell/hunspell-1.7.0-r2.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools flag-o-matic
+
+MY_P="${PN}-${PV/_beta/b}"
+
+DESCRIPTION="Hunspell spell checker - an improved replacement for myspell in 
OOo"
+SRC_URI="https://github.com/hunspell/hunspell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+HOMEPAGE="https://github.com/hunspell;
+
+SLOT="0/$(ver_cut 1-2)"
+LICENSE="MPL-1.1 GPL-2 LGPL-2.1"
+IUSE="ncurses nls readline static-libs"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+
+RDEPEND="
+   ncurses? ( sys-libs/ncurses:0= )
+   readline? ( sys-libs/readline:= )
+"
+DEPEND="${RDEPEND}
+   sys-devel/gettext
+"
+
+LANGS="af bg ca cs cy da de de-1901 el en eo es et fo fr ga gl he hr hu ia id
+is it kk km ku lt lv mi mk ms nb nl nn pl pt pt-BR ro ru sk sl sq sv sw tn uk
+zu"
+
+PDEPEND=""
+for lang in ${LANGS}; do
+   IUSE+=" l10n_${lang}"
+   case ${lang} in
+   de-1901) dict="de_1901" ;;
+   pt-BR)   dict="pt-br"   ;;
+   *)   dict="${lang}" ;;
+   esac
+   PDEPEND+=" l10n_${lang}? ( app-dicts/myspell-${dict} )"
+done
+unset dict lang LANGS
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS=(
+   AUTHORS ChangeLog NEWS THANKS license.hunspell
+   license.myspell README.md
+)
+
+PATCHES=(
+   # Upstream package creates some executables which names are too generic
+   # to be placed in /usr/bin - this patch prefixes them with 'hunspell-'.
+   # It modifies a Makefile.am file, hence eautoreconf.
+   "${FILESDIR}/${PN}-1.7.0-renameexes.patch"
+
+   "${FILESDIR}/${PN}-1.7.0-tinfo.patch" #692614
+   "${FILESDIR}/${PN}-1.7.0-CVE-2019-16707.patch"
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   # missing somehow, and I am too lazy to fix it properly
+   [[ ${CHOST} == *-darwin* ]] && append-libs -liconv
+
+   # I wanted to put the include files in /usr/include/hunspell.
+   # You can do that, libreoffice can find them anywhere, just
+   # ping me when you do so ; -- scarabeus
+   local myeconfargs=(
+   $(use_enable nls)
+   $(use_with ncurses ui)
+   $(use_with readline readline)
+   $(use_enable static-libs static)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+   einstalldocs
+   find "${ED}" -type f -name '*.la' -delete || die
+
+   #342449
+   pushd "${ED}"/usr/$(get_libdir)/ >/dev/null
+   ln -s lib${PN}{-$(ver_cut 1).$(ver_cut 2).so.0.0.1,.so}
+   popd >/dev/null
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xmobar/

2020-06-28 Thread Sergei Trofimovich
commit: d89647005a898ebbcaec80d0caeb124a8fe44075
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:15:52 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:15:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8964700

x11-misc/xmobar: drop old

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

 x11-misc/xmobar/Manifest |  2 -
 x11-misc/xmobar/xmobar-0.23.1.ebuild | 88 
 x11-misc/xmobar/xmobar-0.24.2.ebuild | 93 --
 x11-misc/xmobar/xmobar-0.24.3.ebuild | 97 
 4 files changed, 280 deletions(-)

diff --git a/x11-misc/xmobar/Manifest b/x11-misc/xmobar/Manifest
index 2075e92898a..f8f176ea99e 100644
--- a/x11-misc/xmobar/Manifest
+++ b/x11-misc/xmobar/Manifest
@@ -1,3 +1 @@
-DIST xmobar-0.23.1.tar.gz 96169 BLAKE2B 
5d16d3fc0a052614bc86cbc5ab515a5e2879d39d7bdf4541a3a10193c08bdc34a9bb07468ff7142c73e58694fb24c2fe581934404fd5ca737c4736855c60d316
 SHA512 
0215c02d32d90efff4d041d48b663755ccfb1944281f8a2cabb3e88cc9fd77221da03dd709b9c96f5ca8d7204561fe33fdabf37a2d919a83374df71909cc5978
-DIST xmobar-0.24.2.tar.gz 100179 BLAKE2B 
a5ca50d66bdb83274be62d1df83545d3527a3d05fc41708be44927ff75519f8686a2afc6671bede1142b881ebef37ede5116abff557b03276d509b031f5292d3
 SHA512 
c271e50d615d509c2c15ffa716b45df3211cfa143b128126c55a78a056475c9fbb6d7abc60a6a058e20a12aced5f33b94cecc35c73a76505e33e62ea1f1561f8
 DIST xmobar-0.24.3.tar.gz 100317 BLAKE2B 
3ca7aeb977688b975674dc767f645d15aaf296ff906f51d79529ee58d827188437695b4ee0b960563f6c0ce1489baf1f5bdc4360807989277078a93dfafb3ed1
 SHA512 
aa16d55b16cf108005ee8ec6c3d1b348b3e70a5182cbb97eed2aeb67bed83bee4b23acff6d29d5bda5a30ce35dc87463a6ade6e0814b588f53b173a1c3b5a5b3

diff --git a/x11-misc/xmobar/xmobar-0.23.1.ebuild 
b/x11-misc/xmobar/xmobar-0.23.1.ebuild
deleted file mode 100644
index 4ae5b8af980..000
--- a/x11-misc/xmobar/xmobar-0.23.1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# ebuild generated by hackport 0.4.5.
-#hackport: flags: 
-all_extensions,+with_threaded,+with_utf8,with_iwlib:wifi,with_alsa:alsa,with_xft:xft,with_datezone:timezone,with_dbus:dbus,with_mpd:mpd,with_inotify:inotify,with_mpris:mpris,with_xpm:xpm
-
-CABAL_FEATURES="bin"
-inherit haskell-cabal
-
-DESCRIPTION="A Minimalistic Text Based Status Bar"
-HOMEPAGE="https://xmobar.org;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa dbus inotify mpd mpris timezone wifi xft xpm"
-
-RDEPEND=">=dev-haskell/http-4000.2.4:=
-   >=dev-haskell/mtl-2.1:= =dev-haskell/parsec-3.1:= =dev-haskell/stm-2.3:= =dev-haskell/utf8-string-0.3:= =dev-haskell/x11-1.6.1:=
-   >=dev-lang/ghc-7.4.1:=
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   alsa? ( >=dev-haskell/alsa-core-0.5:= =dev-haskell/alsa-mixer-0.2:= =dev-haskell/dbus-0.10:= )
-   inotify? ( >=dev-haskell/hinotify-0.3:= =dev-haskell/libmpd-0.9:= =dev-haskell/dbus-0.10:= )
-   timezone? ( >=dev-haskell/timezone-olson-0.1:= 
=dev-haskell/timezone-series-0.1:= 
=dev-haskell/x11-xft-0.2:= https://xmobar.org;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa dbus inotify mpd mpris timezone wifi conduit uvmeter xft xpm"
-
-RDEPEND=">=dev-haskell/http-4000.2.4:=
-   >=dev-haskell/mtl-2.1:= =dev-haskell/parsec-3.1:= =dev-haskell/stm-2.3:= =dev-haskell/utf8-string-0.3:= =dev-haskell/x11-1.6.1:=
-   >=dev-lang/ghc-7.4.1:=
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   alsa? ( >=dev-haskell/alsa-core-0.5:= dev-haskell/alsa-mixer-0.2.0.2:= )
-   dbus? ( >=dev-haskell/dbus-0.10:= )
-   inotify? ( >=dev-haskell/hinotify-0.3:= =dev-haskell/libmpd-0.9:= =dev-haskell/dbus-0.10:= )
-   timezone? ( >=dev-haskell/timezone-olson-0.1:= 
=dev-haskell/timezone-series-0.1:= 
=dev-haskell/x11-xft-0.2:= https://xmobar.org;
-SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa dbus inotify mpd mpris timezone wifi conduit uvmeter xft xpm"
-
-RDEPEND=">=dev-haskell/http-4000.2.4:=
-   >=dev-haskell/mtl-2.1:= =dev-haskell/parsec-3.1:= =dev-haskell/stm-2.3:= =dev-haskell/utf8-string-0.3:= =dev-haskell/x11-1.6.1:=
-   >=dev-lang/ghc-7.8.2:=
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   alsa? ( >=dev-haskell/alsa-core-0.5:= dev-haskell/alsa-mixer-0.2.0.2:= )
-   dbus? ( >=dev-haskell/dbus-0.10:= )
-   inotify? ( >=dev-haskell/hinotify-0.3:= =dev-haskell/libmpd-0.9:= =dev-haskell/dbus-0.10:= )
-   timezone? ( >=dev-haskell/timezone-olson-0.1:= 
=dev-haskell/timezone-series-0.1:= 
=dev-haskell/x11-xft-0.2:= = 2.3 && < 2.5' 'stm >= 

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

2020-06-28 Thread Andreas Sturmlechner
commit: 885e62dc11ce0c4889486032df0c66059f9b08e1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 22:12:25 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 22:15:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=885e62dc

net-misc/smb4k: Drop 3.0.4 and 3.0.5

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

 net-misc/smb4k/Manifest|  2 -
 net-misc/smb4k/files/smb4k-3.0.4-qt-5.15.patch | 25 -
 net-misc/smb4k/smb4k-3.0.4.ebuild  | 74 --
 net-misc/smb4k/smb4k-3.0.5.ebuild  | 72 -
 4 files changed, 173 deletions(-)

diff --git a/net-misc/smb4k/Manifest b/net-misc/smb4k/Manifest
index d5b65f28c9b..eca14f8a11a 100644
--- a/net-misc/smb4k/Manifest
+++ b/net-misc/smb4k/Manifest
@@ -1,3 +1 @@
-DIST smb4k-3.0.4.tar.xz 3824508 BLAKE2B 
98d9e66a577e40e734421cf46d72ebf010fa1d2161d411dbd5382af8fd84f2578a086f0425e576508aed0ed549940cf4b7f688c527f42218dd781006d2460204
 SHA512 
bd3b53f6f8e9ee3dd6fc8c0ab31b877fc89a887837b7bd91eef410b6dff81960ada872bada074638c8b7d204c638564a70568e87cc874e146508241e071665a3
-DIST smb4k-3.0.5.tar.xz 3841924 BLAKE2B 
98bc44ed33b60fb983db34d39ed7bd51f9fab8c4594e81c9f3d6275c4b6f49822902d12da59cb54febd839c37d42d6623cb42ae03385a5187e063790a872
 SHA512 
913e69ba30b4d7294e4436648fcebd54173cc0c32a712824218aee7c276dc0d8eea0a2e4a14648cd55c99424b80512e01c5a1929ce38a9f83d3dfb9c24601af1
 DIST smb4k-3.0.6.tar.xz 3842424 BLAKE2B 
7c42007a00b3da07bdc1629360bb8640c66ac7332fefca82698664cf197d4061d6c4419ab99ebd29e6515dace194973be2c179fa3c422820716fc5e5e1b8591f
 SHA512 
993f669c12db30dd78f9f6cc694dfe563958407582f65ff64b6ada36cf4372ad6bb5addecc93970ce6750d031bf4ee9dfefa362e13100d2ce8d3e848a0d89382

diff --git a/net-misc/smb4k/files/smb4k-3.0.4-qt-5.15.patch 
b/net-misc/smb4k/files/smb4k-3.0.4-qt-5.15.patch
deleted file mode 100644
index 8948e30dfa1..000
--- a/net-misc/smb4k/files/smb4k-3.0.4-qt-5.15.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 009ebe0224f7e236837741a1b35f0c572024e8b3 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Tue, 21 Apr 2020 10:27:28 +0200
-Subject: [PATCH] Fix build with Qt-5.15 (missing header)
-
-Signed-off-by: Andreas Sturmlechner 

- smb4k/smb4ktooltip.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/smb4k/smb4ktooltip.cpp b/smb4k/smb4ktooltip.cpp
-index de07a1d..b1064f7 100644
 a/smb4k/smb4ktooltip.cpp
-+++ b/smb4k/smb4ktooltip.cpp
-@@ -43,6 +43,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
--- 
-2.26.1
-

diff --git a/net-misc/smb4k/smb4k-3.0.4.ebuild 
b/net-misc/smb4k/smb4k-3.0.4.ebuild
deleted file mode 100644
index dfe247ddeca..000
--- a/net-misc/smb4k/smb4k-3.0.4.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-ECM_HANDBOOK="forceoptional"
-KFMIN=5.60.0
-QTMIN=5.12.3
-inherit ecm kde.org
-
-DESCRIPTION="Advanced network neighborhood browser"
-HOMEPAGE="https://kde.org/applications/utilities/org.kde.smb4k
-https://sourceforge.net/p/smb4k/home/Home/;
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="5"
-IUSE="plasma"
-
-DEPEND="
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-   >=dev-qt/qtgui-${QTMIN}:5
-   >=dev-qt/qtnetwork-${QTMIN}:5
-   >=dev-qt/qtprintsupport-${QTMIN}:5
-   >=dev-qt/qttest-${QTMIN}:5
-   >=dev-qt/qtwidgets-${QTMIN}:5
-   >=kde-frameworks/kauth-${KFMIN}:5
-   >=kde-frameworks/kcompletion-${KFMIN}:5
-   >=kde-frameworks/kconfig-${KFMIN}:5
-   >=kde-frameworks/kconfigwidgets-${KFMIN}:5
-   >=kde-frameworks/kcoreaddons-${KFMIN}:5
-   >=kde-frameworks/kcrash-${KFMIN}:5
-   >=kde-frameworks/kdbusaddons-${KFMIN}:5
-   >=kde-frameworks/ki18n-${KFMIN}:5
-   >=kde-frameworks/kiconthemes-${KFMIN}:5
-   >=kde-frameworks/kio-${KFMIN}:5
-   >=kde-frameworks/kjobwidgets-${KFMIN}:5
-   >=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-frameworks/kwallet-${KFMIN}:5
-   >=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-   >=kde-frameworks/kwindowsystem-${KFMIN}:5
-   >=kde-frameworks/kxmlgui-${KFMIN}:5
-   >=kde-frameworks/solid-${KFMIN}:5
-   net-fs/samba[cups]
-"
-RDEPEND="${DEPEND}
-   plasma? (
-   >=dev-qt/qtquickcontrols2-${QTMIN}:5
-   >=kde-frameworks/plasma-${KFMIN}:5
-   )
-"
-
-PATCHES=( "${FILESDIR}/${P}-qt-5.15.patch" )
-
-src_configure() {
-   local mycmakeargs=(
-   -DINSTALL_PLASMOID=$(usex plasma)
-   )
-   ecm_src_configure
-}
-
-pkg_postinst() {
-   ecm_pkg_postinst
-   elog "Users of Samba 4.7 and above please note that for the time being,"
-   elog "the following 

[gentoo-commits] repo/gentoo:master commit in: app-text/highlight/files/, app-text/highlight/

2020-06-28 Thread Andreas Sturmlechner
commit: 8d18437a1855845b186993fe88de9b0821be10be
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 22:10:21 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 22:15:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d18437a

app-text/highlight: Drop 3.42-r1

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

 app-text/highlight/Manifest|  1 -
 .../highlight/files/highlight-3.42-qmake-fix.patch | 32 
 app-text/highlight/highlight-3.42-r1.ebuild| 91 --
 3 files changed, 124 deletions(-)

diff --git a/app-text/highlight/Manifest b/app-text/highlight/Manifest
index 48154bbac99..3dd422a98bc 100644
--- a/app-text/highlight/Manifest
+++ b/app-text/highlight/Manifest
@@ -1,2 +1 @@
-DIST highlight-3.42.tar.bz2 1294770 BLAKE2B 
22c79258be6a665eda8ee17d1de6a97811f97dc4b4491c24b466dc5375d98d865e07ac4e462288d066613bef8bb5a469fa0bdb3065ecf098fc6c4f6090ecb63e
 SHA512 
362150ee396d2b203f11ecc3d011e23b6f8c7d93ff9f8cb0e9e980be6da21e7b3b1ea1e347e3f09129ab0fb1a0aab19ff19f021e643b93a163a99d3882f9bf80
 DIST highlight-3.57.tar.bz2 1412857 BLAKE2B 
c0ee8189294feac3b5e8c6d356634d8074a8960f2010918de52f23515ad4a13626971e9106ecc6d2adbdb45e0ebb66ff60eb3cbe86d2449666e3424f1c0dc3a6
 SHA512 
a086f6b8c4a4fc0b6651d456b178350a6c59a32cd613451d81b53fe3294eb0f80d673cb64fb615ef91d6c4d4bbc8a57413aec2490d2a5ad67e695ec6e92b3d99

diff --git a/app-text/highlight/files/highlight-3.42-qmake-fix.patch 
b/app-text/highlight/files/highlight-3.42-qmake-fix.patch
deleted file mode 100644
index 31970057d9a..000
--- a/app-text/highlight/files/highlight-3.42-qmake-fix.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 8464afed560fa1096d37aa82aef99c00819fec87 Mon Sep 17 00:00:00 2001
-From: Chris Mayo 
-Date: Fri, 2 Mar 2018 19:15:35 +
-Subject: [PATCH] fix directories passed to qmake being ignored
-
-contains() matches the whole value, add regular expressions for the path
-components.

- src/gui-qt/highlight.pro | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/gui-qt/highlight.pro b/src/gui-qt/highlight.pro
-index bae8d7c..0380a90 100644
 a/src/gui-qt/highlight.pro
-+++ b/src/gui-qt/highlight.pro
-@@ -43,13 +43,13 @@ unix {
- PKGCONFIG += lua
- 
- # to make it run within Qt Creator
--!contains(DEFINES, DATA_DIR) {
-+!contains(DEFINES, DATA_DIR.*) {
- DEFINES+=DATA_DIR=\\\"/usr/share/highlight/\\\"
- }
--!contains(DEFINES, CONFIG_DIR) {
-+!contains(DEFINES, CONFIG_DIR.*) {
- DEFINES+=CONFIG_DIR=\\\"/etc/highlight/\\\"
- }
--!contains(DEFINES, DOC_DIR) {
-+!contains(DEFINES, DOC_DIR.*) {
- DEFINES+=DOC_DIR=\\\"/usr/share/doc/highlight/\\\"
- }
- }

diff --git a/app-text/highlight/highlight-3.42-r1.ebuild 
b/app-text/highlight/highlight-3.42-r1.ebuild
deleted file mode 100644
index 513d088c6f2..000
--- a/app-text/highlight/highlight-3.42-r1.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic qmake-utils toolchain-funcs
-
-DESCRIPTION="Converts source code to formatted text (HTML, LaTeX, etc.) with 
syntax highlight"
-HOMEPAGE="http://www.andre-simon.de/;
-SRC_URI="http://www.andre-simon.de/zip/${P}.tar.bz2;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="examples qt5"
-
-RDEPEND="
-   dev-lang/lua:0=
-   qt5? (
-   dev-libs/double-conversion:=
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )
-"
-DEPEND="${RDEPEND}
-   dev-libs/boost
-   virtual/pkgconfig
-   qt5? ( dev-qt/linguist-tools:5 )
-"
-
-myhlopts=(
-   "CXX=$(tc-getCXX)"
-   "AR=$(tc-getAR)"
-   "LDFLAGS=${LDFLAGS}"
-   "CFLAGS=${CXXFLAGS} -DNDEBUG -std=c++11"
-   "DESTDIR=${D}"
-   "PREFIX=${EPREFIX}/usr"
-   "HL_CONFIG_DIR=${EPREFIX}/etc/highlight/"
-   "HL_DATA_DIR=${EPREFIX}/usr/share/highlight/"
-   "doc_dir=${EPREFIX}/usr/share/doc/${PF}/"
-   "conf_dir=${EPREFIX}/etc/highlight/"
-)
-
-PATCHES=( "${FILESDIR}"/${P}-qmake-fix.patch ) # bug 649398
-
-src_prepare() {
-   default
-
-   sed -e "/LSB_DOC_DIR/s:doc/${PN}:doc/${PF}:" \
-   -i src/core/datadir.cpp || die
-
-   if has_version " /dev/null || die
-   eqmake5 \
-   
'DEFINES+=DATA_DIR=\\\"'"${EPREFIX}"'/usr/share/${PN}/\\\" 
CONFIG_DIR=\\\"'"${EPREFIX}"'/etc/${PN}/\\\" 
DOC_DIR=\\\"'"${EPREFIX}"'/usr/share/doc/${PF}/\\\"'
-   popd > /dev/null || die
-   fi
-}
-
-src_compile() {
-   emake -f makefile "${myhlopts[@]}"
-   if use qt5 ; then
-   pushd src/gui-qt > /dev/null || die
-   emake
-

[gentoo-commits] repo/gentoo:master commit in: media-video/smtube/

2020-06-28 Thread Andreas Sturmlechner
commit: 8fa0a21da8e1d9a62531f30567a63c6594951bb9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 22:10:47 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 22:15:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fa0a21d

media-video/smtube: Drop 19.6.0

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

 media-video/smtube/Manifest |  1 -
 media-video/smtube/smtube-19.6.0.ebuild | 65 -
 2 files changed, 66 deletions(-)

diff --git a/media-video/smtube/Manifest b/media-video/smtube/Manifest
index b6b3a1d86a4..4917b5654dd 100644
--- a/media-video/smtube/Manifest
+++ b/media-video/smtube/Manifest
@@ -1,2 +1 @@
-DIST smtube-19.6.0.tar.bz2 748844 BLAKE2B 
55e662fc85ec44f067cba037c28b26fbfe08439bafea294dfcd1c4187e8df9f1f066780dd80c765dc4e584ba5b3917d8982a46253039b6327a30ff9d842b9e0b
 SHA512 
f61e432b8f99e34ddbd9415064eecf30c9a3a6731d646073253d63690cf531321a7a5038117db981d036d1abfdbd3150df21bc22c9ae75e32c63ade3a859ecef
 DIST smtube-20.1.0.tar.bz2 749306 BLAKE2B 
27d8b8c45264311f324d826768c44750373161521e8a3a9778b7b929d2ac437cfbfa9131b772c19d065d6a9e7646a381a2dd52c0e4fdf1d7a202ce982f22d9e2
 SHA512 
91a3b53c7bf23b567cc9e35f6c12cfc37e4286c0b60938d4ea9e275f1f459db6ff149f3b316b05a4810a62b0f224ee360ecf10f1e5c1d101178a949280eb8e2f

diff --git a/media-video/smtube/smtube-19.6.0.ebuild 
b/media-video/smtube/smtube-19.6.0.ebuild
deleted file mode 100644
index 833814a95eb..000
--- a/media-video/smtube/smtube-19.6.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PLOCALES="bg cs da de en_GB en es eu fr gl he_IL hr hu it ja ko ms nn_NO pl 
pt_BR pt ru sq sr tr uk zh_CN zh_TW"
-PLOCALE_BACKUP="en"
-inherit desktop l10n qmake-utils
-
-DESCRIPTION="YouTube Browser for SMPlayer"
-HOMEPAGE="http://smplayer.sourceforge.net/smtube;
-SRC_URI="mirror://sourceforge/smtube/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtscript:5
-   dev-qt/qtwebkit:5
-   dev-qt/qtwidgets:5
-"
-RDEPEND="${DEPEND}
-   || (
-   media-video/smplayer
-   media-video/mpv
-   media-video/mplayer
-   media-video/vlc
-   media-video/totem
-   )
-"
-
-gen_translation() {
-   "$(qt5_get_bindir)"/lrelease ${PN}_${1}.ts
-   eend $? || die "failed to generate $1 translation"
-}
-
-src_compile() {
-   eqmake5 src/${PN}.pro
-   emake
-
-   cd src/translations || die
-   l10n_for_each_locale_do gen_translation
-}
-
-install_locale() {
-   insinto /usr/share/${PN}/translations
-   doins src/translations/${PN}_${1}.qm
-   eend $? || die "failed to install $1 translation"
-}
-
-src_install() {
-   dobin ${PN}
-   domenu ${PN}.desktop
-   newicon icons/${PN}_64.png ${PN}.png
-   dodoc Changelog
-
-   l10n_for_each_locale_do install_locale
-}



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

2020-06-28 Thread Sergei Trofimovich
commit: 8fe34f4b34ef6dd1e29bb87f34a8f519c9248b99
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 28 22:12:57 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 28 22:13:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe34f4b

sys-libs/glibc: drop DEPEND="! gentoo.org>

 sys-libs/glibc/glibc-2.19-r2.ebuild | 1 -
 sys-libs/glibc/glibc-2.30-r8.ebuild | 1 -
 sys-libs/glibc/glibc-2.30-r9.ebuild | 1 -
 sys-libs/glibc/glibc-2.31-r4.ebuild | 1 -
 sys-libs/glibc/glibc-2.31-r5.ebuild | 1 -
 sys-libs/glibc/glibc-.ebuild| 1 -
 6 files changed, 6 deletions(-)

diff --git a/sys-libs/glibc/glibc-2.19-r2.ebuild 
b/sys-libs/glibc/glibc-2.19-r2.ebuild
index e8877a90634..3b45b557922 100644
--- a/sys-libs/glibc/glibc-2.19-r2.ebuild
+++ b/sys-libs/glibc/glibc-2.19-r2.ebuild
@@ -94,7 +94,6 @@ COMMON_DEPEND="
 "
 DEPEND="${COMMON_DEPEND}
>=app-misc/pax-utils-0.1.10
-   !=app-misc/pax-utils-0.1.10
sys-devel/bison
-   !=app-misc/pax-utils-0.1.10
sys-devel/bison
-   !=app-misc/pax-utils-0.1.10
sys-devel/bison
-   !=app-misc/pax-utils-0.1.10
sys-devel/bison
-   !=app-misc/pax-utils-0.1.10
sys-devel/bison
-   

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

2020-06-28 Thread Mike Gilbert
commit: c7fca1e78622356c562e049cc1aa4ebfd3b456f0
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jun 28 22:06:26 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jun 28 22:06:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7fca1e7

sci-libs/mpir: fix bash syntax

Closes: https://bugs.gentoo.org/725554
Signed-off-by: Mike Gilbert  gentoo.org>

 sci-libs/mpir/mpir-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/mpir/mpir-3.0.0.ebuild b/sci-libs/mpir/mpir-3.0.0.ebuild
index dd1e6cc41e8..b22fb7b3603 100644
--- a/sci-libs/mpir/mpir-3.0.0.ebuild
+++ b/sci-libs/mpir/mpir-3.0.0.ebuild
@@ -65,7 +65,7 @@ src_configure() {
$(use_enable static-libs static)
)
# https://bugs.gentoo.org/661430
-   if !use amd64 && !use x86; then
+   if ! use amd64 && ! use x86; then
myeconfargs+=( --with-yasm=/bin/false )
fi
econf "${myeconfargs[@]}"



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

2020-06-28 Thread Mike Gilbert
commit: e424e535ba0ae80880ee13417713757161a925f0
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jun 22 15:07:39 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jun 28 22:01:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e424e535

unpacker.eclass: call BUILD_AR when unpacking deb files

Closes: https://bugs.gentoo.org/722054
Signed-off-by: Mike Gilbert  gentoo.org>

 eclass/unpacker.eclass | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass
index 865e2e1a1a5..63aedee4480 100644
--- a/eclass/unpacker.eclass
+++ b/eclass/unpacker.eclass
@@ -17,6 +17,8 @@
 if [[ -z ${_UNPACKER_ECLASS} ]]; then
 _UNPACKER_ECLASS=1
 
+inherit toolchain-funcs
+
 # @ECLASS-VARIABLE: UNPACKER_BZ2
 # @DEFAULT_UNSET
 # @DESCRIPTION:
@@ -279,8 +281,7 @@ unpack_deb() {
done
} < "${deb}"
else
-   local AR=${AR-ar}
-   ${AR} x "${deb}" || die
+   $(tc-getBUILD_AR) x "${deb}" || die
fi
 
unpacker ./data.tar*



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

2020-06-28 Thread Andreas Sturmlechner
commit: 65170ca972da94f24602d41992f4f3216f8affcb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 21:13:44 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 21:55:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65170ca9

net-libs/signond: Replace big sed with fix from pending upstream PR

See also: https://gitlab.com/accounts-sso/signond/-/merge_requests/27

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

 .../signond/files/signond-8.60-drop-fno-rtti.patch | 123 +
 net-libs/signond/signond-8.60-r2.ebuild|   9 +-
 2 files changed, 124 insertions(+), 8 deletions(-)

diff --git a/net-libs/signond/files/signond-8.60-drop-fno-rtti.patch 
b/net-libs/signond/files/signond-8.60-drop-fno-rtti.patch
new file mode 100644
index 000..175d88361c4
--- /dev/null
+++ b/net-libs/signond/files/signond-8.60-drop-fno-rtti.patch
@@ -0,0 +1,123 @@
+From e21867fa27e32f5391d73d145eef1c8d908dee44 Mon Sep 17 00:00:00 2001
+From: Fabian Vogt 
+Date: Thu, 18 Jun 2020 10:22:04 +0200
+Subject: [PATCH] Don't use -fno-rtti
+
+QProcess uses typeid and crashes otherwise.
+---
+ common-project-config.pri   | 2 --
+ src/extensions/cryptsetup/cryptsetup.pro| 1 -
+ src/plugins/plugins.pri | 3 +--
+ src/remotepluginprocess/remotepluginprocess.pro | 3 +--
+ tests/extensions/extensions.pri | 3 +--
+ tests/libsignon-qt-tests/libsignon-qt-tests.pro | 3 +--
+ tests/passwordplugintest/passwordplugintest.pro | 3 +--
+ tests/signond-tests/signond-tests.pri   | 3 +--
+ 8 files changed, 6 insertions(+), 15 deletions(-)
+
+diff --git a/common-project-config.pri b/common-project-config.pri
+index 606f70bb..abe6cf6d 100644
+--- a/common-project-config.pri
 b/common-project-config.pri
+@@ -13,8 +13,6 @@ RCC_DIR = resources
+ 
+ # we don't like warnings...
+ QMAKE_CXXFLAGS -= -Werror -Wno-write-strings
+-# Disable RTTI
+-QMAKE_CXXFLAGS += -fno-rtti
+ # Disable exceptions
+ CONFIG += exceptions_off
+ # Use C++11
+diff --git a/src/extensions/cryptsetup/cryptsetup.pro 
b/src/extensions/cryptsetup/cryptsetup.pro
+index f4b6e53b..5cc214e4 100644
+--- a/src/extensions/cryptsetup/cryptsetup.pro
 b/src/extensions/cryptsetup/cryptsetup.pro
+@@ -29,7 +29,6 @@ QT -= gui
+ 
+ QMAKE_CXXFLAGS += \
+ -fno-exceptions \
+--fno-rtti \
+ -fvisibility=hidden
+ 
+ DEFINES += QT_NO_CAST_TO_ASCII QT_NO_CAST_FROM_ASCII
+diff --git a/src/plugins/plugins.pri b/src/plugins/plugins.pri
+index 2c03e743..074896d5 100644
+--- a/src/plugins/plugins.pri
 b/src/plugins/plugins.pri
+@@ -22,8 +22,7 @@ LIBS += -lsignon-plugins
+ QMAKE_LIBDIR += \
+ $${TOP_BUILD_DIR}/lib/plugins
+ 
+-QMAKE_CXXFLAGS += -fno-exceptions \
+--fno-rtti
++QMAKE_CXXFLAGS += -fno-exceptions
+ 
+ headers.path = $${INSTALL_PREFIX}/include/signon-plugins
+ 
+diff --git a/src/remotepluginprocess/remotepluginprocess.pro 
b/src/remotepluginprocess/remotepluginprocess.pro
+index 7c2ea007..36b4cbe0 100644
+--- a/src/remotepluginprocess/remotepluginprocess.pro
 b/src/remotepluginprocess/remotepluginprocess.pro
+@@ -40,8 +40,7 @@ LIBS += \
+ -lsignon-plugins-common \
+ -lsignon-plugins
+ 
+-QMAKE_CXXFLAGS += -fno-exceptions \
+-  -fno-rtti
++QMAKE_CXXFLAGS += -fno-exceptions
+ 
+ #DEFINES += QT_NO_CAST_TO_ASCII \
+ #QT_NO_CAST_FROM_ASCII
+diff --git a/tests/extensions/extensions.pri b/tests/extensions/extensions.pri
+index 179cd28d..2fd75955 100644
+--- a/tests/extensions/extensions.pri
 b/tests/extensions/extensions.pri
+@@ -20,5 +20,4 @@ INCLUDEPATH += . \
+ $$TOP_SRC_DIR/lib/signond
+ 
+ QMAKE_CXXFLAGS += \
+--fno-exceptions \
+--fno-rtti
++-fno-exceptions
+diff --git a/tests/libsignon-qt-tests/libsignon-qt-tests.pro 
b/tests/libsignon-qt-tests/libsignon-qt-tests.pro
+index 43f2d59f..ac87781d 100644
+--- a/tests/libsignon-qt-tests/libsignon-qt-tests.pro
 b/tests/libsignon-qt-tests/libsignon-qt-tests.pro
+@@ -36,8 +36,7 @@ INCLUDEPATH += . \
+ $$TOP_SRC_DIR/src/plugins/test
+ DEFINES += SSO_CI_TESTMANAGEMENT
+ DEFINES += "SIGNOND_PLUGINS_DIR=$${SIGNOND_PLUGINS_DIR_QUOTED}"
+-QMAKE_CXXFLAGS += -fno-exceptions \
+--fno-rtti
++QMAKE_CXXFLAGS += -fno-exceptions
+ 
+ check.depends = $$TARGET
+ check.commands = "SSO_PLUGINS_DIR=$${TOP_BUILD_DIR}/src/plugins/test 
SSO_EXTENSIONS_DIR=$${TOP_BUILD_DIR}/non-existing-dir $$RUN_WITH_SIGNOND 
./libsignon-qt-tests"
+diff --git a/tests/passwordplugintest/passwordplugintest.pro 
b/tests/passwordplugintest/passwordplugintest.pro
+index 6132921e..ce16fdcf 100644
+--- a/tests/passwordplugintest/passwordplugintest.pro
 b/tests/passwordplugintest/passwordplugintest.pro
+@@ -19,5 +19,4 @@ INCLUDEPATH += $${TOP_SRC_DIR}/lib/plugins \
+ $${TOP_SRC_DIR}/src/plugins \
+ $${TOP_SRC_DIR}/lib
+ 
+-QMAKE_CXXFLAGS += -fno-exceptions \
+-

[gentoo-commits] repo/gentoo:master commit in: mail-client/trojita/, mail-client/trojita/files/

2020-06-28 Thread Andreas Sturmlechner
commit: 79f45c1d2526dd37f1bc7a25b8f7feb13ad4575c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 20:55:39 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 21:55:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79f45c1d

mail-client/trojita: Fix build with IUSE=test and >=Qt-5.13

Closes: https://bugs.gentoo.org/730058
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../trojita/files/trojita-0.7-cmake-cxx11.patch| 66 ++
 .../trojita/files/trojita-0.7-qt-5.13.patch| 37 
 mail-client/trojita/trojita-0.7-r4.ebuild  |  2 +
 3 files changed, 105 insertions(+)

diff --git a/mail-client/trojita/files/trojita-0.7-cmake-cxx11.patch 
b/mail-client/trojita/files/trojita-0.7-cmake-cxx11.patch
new file mode 100644
index 000..71ab15950b8
--- /dev/null
+++ b/mail-client/trojita/files/trojita-0.7-cmake-cxx11.patch
@@ -0,0 +1,66 @@
+From e2e35bfda75a2f4950408c93ede72fabfe86360e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= 
+Date: Wed, 19 Oct 2016 22:15:16 +0200
+Subject: [PATCH] cmake: Speed up cmake by using native features for enforcing
+ C++11
+
+This saves about 8 seconds in my (limited) testing with a 2016-era
+laptop with plenty of RAM and a fast SSD.
+
+We still attempt to support ancient pre-3.1 CMake by adding that blurb
+into CXXFLAGS, maybe it even works.
+
+I should probably start tracking time I spend supporting old
+environments and evaluate whether this is worth the effort. Once we are
+ready to distribute flatpaks/appimages/whatevers, I suspect that my life
+will become much easier.
+
+Change-Id: Ibbbe3d8440a7d29ef27440a99938d313bfe9699f
+---
+ CMakeLists.txt|  26 ++--
+ 24 files changed, 8 insertions(+), 468 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 9393b19c..92a682f7 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -18,6 +18,14 @@ if(POLICY CMP0043)
+ cmake_policy(SET CMP0043 OLD)
+ endif()
+ 
++if(CMAKE_VERSION VERSION_LESS "3.1")
++# If you aren't using and old Linux with an old GCC and old CMake, please 
just upgrade.
++set(CMAKE_CXX_FLAGS "--std=c++11 ${CMAKE_CXX_FLAGS}")
++else()
++set(CMAKE_CXX_STANDARD 11)
++set(CMAKE_CXX_STANDARD_REQUIRED ON)
++endif()
++
+ # Set a default build type if none was specified. This was shamelessly stolen
+ # from VTK's cmake setup because these guys produce both CMake and a project 
that
+ # manipulates this variable, and the web is full of posts where people say 
that
+@@ -34,24 +42,6 @@ endif()
+ 
+ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
+ 
+-include(FindCXXFeatures)
+-if(NOT CXXFeatures_auto_FOUND)
+-message(SEND_ERROR "Your compiler doesn't support C++11's auto")
+-endif()
+-if(NOT CXXFeatures_static_assert_FOUND)
+-message(SEND_ERROR "Your compiler doesn't support C++11's static_assert")
+-endif()
+-if(NOT CXXFeatures_alignof_FOUND)
+-message(SEND_ERROR "Your compiler doesn't support C++11's alignof")
+-endif()
+-if(NOT CXXFeatures_nullptr_FOUND)
+-message(SEND_ERROR "Your compiler doesn't support C++11's nullptr")
+-endif()
+-if(NOT CXXFeatures_lambda_FOUND)
+-message(SEND_ERROR "Your compiler doesn't support C++11's lambda 
functions")
+-endif()
+-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CXX11_COMPILER_FLAGS}")
+-
+ include(TrojitaOption)
+ 
+ trojita_option(WITH_DESKTOP "Build desktop version" ON)

diff --git a/mail-client/trojita/files/trojita-0.7-qt-5.13.patch 
b/mail-client/trojita/files/trojita-0.7-qt-5.13.patch
new file mode 100644
index 000..9f1ab3e7e88
--- /dev/null
+++ b/mail-client/trojita/files/trojita-0.7-qt-5.13.patch
@@ -0,0 +1,37 @@
+From 39772585033c1c0aff96f297e93de7be53f9b114 Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Sat, 23 Mar 2019 01:17:11 +0100
+Subject: [PATCH] tests: Fix build with Qt 5.13
+
+QTest::toString(QModelIndex) was added in
+7ef0b575b38d267bd3dc14ff46935d556562ff00 and thus causes a build
+error with Qt 5.13 because it's redefined here.
+
+Change-Id: I015800e49cf8d0e87f3541642406396f150d0eeb
+---
+ tests/Imap/test_Imap_BodyParts.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/tests/Imap/test_Imap_BodyParts.cpp 
b/tests/Imap/test_Imap_BodyParts.cpp
+index f1c577fa..b6e0421d 100644
+--- a/tests/Imap/test_Imap_BodyParts.cpp
 b/tests/Imap/test_Imap_BodyParts.cpp
+@@ -51,6 +51,7 @@ struct Data {
+ 
+ Q_DECLARE_METATYPE(QList)
+ 
++#if QT_VERSION < QT_VERSION_CHECK(5, 13, 0)
+ namespace QTest {
+ template <>
+ char *toString(const QModelIndex )
+@@ -60,6 +61,7 @@ char *toString(const QModelIndex )
+ return qstrdup(buf.toUtf8().constData());
+ }
+ }
++#endif
+ 
+ using namespace Imap::Mailbox;
+ 
+-- 
+GitLab
+

diff --git a/mail-client/trojita/trojita-0.7-r4.ebuild 
b/mail-client/trojita/trojita-0.7-r4.ebuild
index 8583ee49efd..e9b7c9e515a 100644
--- 

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

2020-06-28 Thread Andreas Sturmlechner
commit: 08baa3311287ea39ca35c9b67abe636146728bc8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 21:01:24 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 21:55:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08baa331

mail-client/trojita: Drop 0.7-r3

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

 mail-client/trojita/trojita-0.7-r3.ebuild | 83 ---
 1 file changed, 83 deletions(-)

diff --git a/mail-client/trojita/trojita-0.7-r3.ebuild 
b/mail-client/trojita/trojita-0.7-r3.ebuild
deleted file mode 100644
index ba129ff4eb4..000
--- a/mail-client/trojita/trojita-0.7-r3.ebuild
+++ /dev/null
@@ -1,83 +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://anongit.kde.org/${PN}.git;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-   KEYWORDS="~amd64 ~x86"
-fi
-inherit cmake virtualx xdg
-
-DESCRIPTION="A Qt IMAP e-mail client"
-HOMEPAGE="http://trojita.flaska.net/;
-
-LICENSE="|| ( GPL-2 GPL-3 )"
-SLOT="0"
-IUSE="+crypt +dbus debug +password test +zlib"
-
-REQUIRED_USE="password? ( dbus )"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   zlib? ( virtual/pkgconfig )
-"
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtsvg:5
-   dev-qt/qtwebkit:5
-   dev-qt/qtwidgets:5
-   crypt? (
-   >=app-crypt/gpgme-1.8.0[cxx,qt5]
-   dev-libs/mimetic
-   )
-   dbus? ( dev-qt/qtdbus:5 )
-   password? ( dev-libs/qtkeychain[qt5(+)] )
-   zlib? ( sys-libs/zlib )
-"
-DEPEND="${RDEPEND}
-   test? ( dev-qt/qttest:5 )
-"
-
-DOCS=( README LICENSE )
-
-PATCHES=(
-   "${FILESDIR}/${P}-gpgme.patch"
-   "${FILESDIR}/${P}-gpg-tests.patch"
-   "${FILESDIR}/${P}-qt-5.11b3.patch"
-   "${FILESDIR}/${P}-qt-5.15.patch"
-   "${FILESDIR}/${P}-CVE-2020-15047.patch" # bug 729596
-)
-
-src_prepare() {
-   cmake_src_prepare
-
-   # the build system is taking a look at `git describe ... --dirty` and
-   # gentoo's modifications to CMakeLists.txt break these
-   sed -e "s/--dirty//" -i cmake/TrojitaVersion.cmake || die "Cannot fix 
the version check"
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_CRYPTO_MESSAGES=$(usex crypt)
-   -DWITH_GPGMEPP=$(usex crypt)
-   -DWITH_MIMETIC=$(usex crypt)
-   -DWITH_DBUS=$(usex dbus)
-   -DWITH_QTKEYCHAIN_PLUGIN=$(usex password)
-   -DWITH_TESTS=$(usex test)
-   -DWITH_ZLIB=$(usex zlib)
-   )
-
-   cmake_src_configure
-}
-
-src_test() {
-   virtx cmake_src_test
-}



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

2020-06-28 Thread Andreas Sturmlechner
commit: 8304c9b8f9c8081b86ead3a1a473c6b8fc62de7e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 21:10:31 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 21:55:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8304c9b8

net-libs/signond: Reshuffle patches, but no change yet

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

 .../signond/files/signond-8.60-buildsystem.patch   | 30 ++-
 .../files/signond-8.60-consistent-paths.patch  | 13 +
 .../signond/files/signond-8.60-unused-dep.patch| 34 --
 3 files changed, 48 insertions(+), 29 deletions(-)

diff --git a/net-libs/signond/files/signond-8.60-buildsystem.patch 
b/net-libs/signond/files/signond-8.60-buildsystem.patch
index 95c4791ac4e..a38f8458848 100644
--- a/net-libs/signond/files/signond-8.60-buildsystem.patch
+++ b/net-libs/signond/files/signond-8.60-buildsystem.patch
@@ -1,16 +1,16 @@
-From 43e953418a5a08c3492d1160e4268dbcf82e7be9 Mon Sep 17 00:00:00 2001
+From 32e001d760dc1a7f884d7dc3a6e6883bd76e2f55 Mon Sep 17 00:00:00 2001
 From: Andreas Sturmlechner 
-Date: Sun, 8 Dec 2019 20:35:11 +0100
-Subject: [PATCH] Fix build system for Gentoo
+Date: Sun, 28 Jun 2020 21:37:30 +0200
+Subject: [PATCH 1/3] Fix buildsystem
 
-1) remove unused dependency Qt5Xml
-2) don't install example plugin
-3) don't install static libs
+- Disable examples
+- Disable static lib
+
+Signed-off-by: Andreas Sturmlechner 
 ---
  lib/SignOn/SignOn.pro   | 4 +---
  src/plugins/plugins.pro | 1 -
- src/signond/signond.pro | 1 -
- 3 files changed, 1 insertion(+), 5 deletions(-)
+ 2 files changed, 1 insertion(+), 4 deletions(-)
 
 diff --git a/lib/SignOn/SignOn.pro b/lib/SignOn/SignOn.pro
 index f6a1d61..28af041 100644
@@ -34,18 +34,6 @@ index dfccc4a..ca1c1ae 100644
  SUBDIRS = password \
 -  example \
test
-diff --git a/src/signond/signond.pro b/src/signond/signond.pro
-index 60ee5e7..211dab6 100644
 a/src/signond/signond.pro
-+++ b/src/signond/signond.pro
-@@ -4,7 +4,6 @@ TEMPLATE = app
- TARGET = signond
- QT += core \
- sql \
--xml \
- network \
- dbus
- 
 -- 
-2.24.0
+2.27.0
 

diff --git a/net-libs/signond/files/signond-8.60-consistent-paths.patch 
b/net-libs/signond/files/signond-8.60-consistent-paths.patch
index f32ac319e57..6743a92678a 100644
--- a/net-libs/signond/files/signond-8.60-consistent-paths.patch
+++ b/net-libs/signond/files/signond-8.60-consistent-paths.patch
@@ -1,11 +1,14 @@
-From c68f31b964f9decf323cd212282cf13d4a42ad21 Mon Sep 17 00:00:00 2001
+From 62ce2305081075a53836999441214f03d37b50b5 Mon Sep 17 00:00:00 2001
 From: Andreas Sturmlechner 
-Date: Sun, 8 Dec 2019 22:52:46 +0100
-Subject: [PATCH] Consistent overrideable install paths
+Date: Sun, 28 Jun 2020 21:44:42 +0200
+Subject: [PATCH 3/3] Consistent overrideable install paths
 
 At least signon-plugins.pc and signon-plugins-common.pc were getting it wrong.
 
-This patch is converting absolute INSTALL_LIBDIR to LIBDIR relative beneath 
INSTALL_PREFIX.
+This patch is converting absolute INSTALL_LIBDIR to LIBDIR relative beneath
+INSTALL_PREFIX.
+
+Signed-off-by: Andreas Sturmlechner 
 ---
  common-installs-config.pri|  2 +-
  common-pkgconfig.pri  |  2 +-
@@ -259,5 +262,5 @@ index 2c03e74..ea2fcb2 100644
 +target.path = $${INSTALL_PREFIX}/$${LIBDIR}/signon
  INSTALLS = target
 -- 
-2.24.0
+2.27.0
 

diff --git a/net-libs/signond/files/signond-8.60-unused-dep.patch 
b/net-libs/signond/files/signond-8.60-unused-dep.patch
index dd32af041d4..54b5ce26f4c 100644
--- a/net-libs/signond/files/signond-8.60-unused-dep.patch
+++ b/net-libs/signond/files/signond-8.60-unused-dep.patch
@@ -1,6 +1,31 @@
 a/tests/signond-tests/signond-tests.pri2020-06-07 10:57:19.327456979 
+0200
-+++ b/tests/signond-tests/signond-tests.pri2020-06-07 11:00:39.866322814 
+0200
-@@ -6,7 +6,6 @@
+From 5814507706210031432a4ff727231bb1082576d5 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 28 Jun 2020 21:43:09 +0200
+Subject: [PATCH 2/3] Drop unused Qt5Xml dependency
+
+Signed-off-by: Andreas Sturmlechner 
+---
+ src/signond/signond.pro   | 1 -
+ tests/signond-tests/signond-tests.pri | 1 -
+ 2 files changed, 2 deletions(-)
+
+diff --git a/src/signond/signond.pro b/src/signond/signond.pro
+index 60ee5e7..211dab6 100644
+--- a/src/signond/signond.pro
 b/src/signond/signond.pro
+@@ -4,7 +4,6 @@ TEMPLATE = app
+ TARGET = signond
+ QT += core \
+ sql \
+-xml \
+ network \
+ dbus
+ 
+diff --git a/tests/signond-tests/signond-tests.pri 
b/tests/signond-tests/signond-tests.pri
+index 1bbd5a1..950baaa 100644
+--- a/tests/signond-tests/signond-tests.pri
 b/tests/signond-tests/signond-tests.pri
+@@ -6,7 +6,6 @@ CONFIG += \
  QT += core \
  sql \
  testlib \
@@ -8,3 +33,6 @@
  network \
  dbus
  
+-- 
+2.27.0

[gentoo-commits] repo/gentoo:master commit in: mail-client/trojita/files/, mail-client/trojita/

2020-06-28 Thread Andreas Sturmlechner
commit: f62f0ef01a099f4de0af4ce34c7667e61c8a5995
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 20:42:33 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 21:55:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62f0ef0

mail-client/trojita: Use CVE-2020-15047 upstream commit for patch

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

 7-smtp-handle-tls-errors.patch => trojita-0.7-CVE-2020-15047.patch} | 0
 mail-client/trojita/trojita-0.7-r3.ebuild   | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/trojita/files/trojita-0.7-smtp-handle-tls-errors.patch 
b/mail-client/trojita/files/trojita-0.7-CVE-2020-15047.patch
similarity index 100%
rename from mail-client/trojita/files/trojita-0.7-smtp-handle-tls-errors.patch
rename to mail-client/trojita/files/trojita-0.7-CVE-2020-15047.patch

diff --git a/mail-client/trojita/trojita-0.7-r3.ebuild 
b/mail-client/trojita/trojita-0.7-r3.ebuild
index 4d4f81542cb..ba129ff4eb4 100644
--- a/mail-client/trojita/trojita-0.7-r3.ebuild
+++ b/mail-client/trojita/trojita-0.7-r3.ebuild
@@ -53,7 +53,7 @@ PATCHES=(
"${FILESDIR}/${P}-gpg-tests.patch"
"${FILESDIR}/${P}-qt-5.11b3.patch"
"${FILESDIR}/${P}-qt-5.15.patch"
-   "${FILESDIR}/${P}-smtp-handle-tls-errors.patch" # bug 729596
+   "${FILESDIR}/${P}-CVE-2020-15047.patch" # bug 729596
 )
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: mail-client/trojita/files/, mail-client/trojita/

2020-06-28 Thread Andreas Sturmlechner
commit: a89ecdd740bdd213af85f03950fdcdaeef4a12ec
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 20:47:13 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 21:55:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a89ecdd7

mail-client/trojita: Fix CVE-2019-10734

KDE-bug: https://bugs.kde.org/show_bug.cgi?id=404697
Bug: https://bugs.gentoo.org/729596
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../trojita/files/trojita-0.7-CVE-2019-10734.patch | 104 +
 mail-client/trojita/trojita-0.7-r4.ebuild  |  84 +
 2 files changed, 188 insertions(+)

diff --git a/mail-client/trojita/files/trojita-0.7-CVE-2019-10734.patch 
b/mail-client/trojita/files/trojita-0.7-CVE-2019-10734.patch
new file mode 100644
index 000..d52edb042ad
--- /dev/null
+++ b/mail-client/trojita/files/trojita-0.7-CVE-2019-10734.patch
@@ -0,0 +1,104 @@
+From 8db7f450d52539b4c72ee968384911b6813ad1e7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= 
+Date: Thu, 25 Jun 2020 21:39:34 +0200
+Subject: [PATCH] Prevent a possible decryption oracle attack
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Thanks to Jens Mueller (Ruhr-Uni Bochum and FH Münster) for reporting
+this. The gist is that an attacker can embed arbitrary ciphertext into
+their messages. Trojita decrypts that, and when we hit reply, the
+original *cleartext* gets quoted and put into a reply for the attacker
+to see.
+
+Fix this by not quoting any plaintext which originated in an encrypted
+message. That's pretty draconian, but hey, it works and we never came up
+with any better patch. Also, given that Trojita does not encrypt
+outgoing messages yet, this is probably also a conservative thing to do.
+
+Change-Id: I84c45b9e707eb7c99eb7183c6ef59ef41cd62c43
+CVE: CVE-2019-10734
+BUG: 404697
+---
+ src/Cryptography/GpgMe++.cpp | 2 ++
+ src/Gui/MessageView.cpp  | 9 -
+ src/Gui/PartWidget.cpp   | 8 
+ src/Imap/Model/ItemRoles.h   | 2 +-
+ 4 files changed, 19 insertions(+), 2 deletions(-)
+
+diff --git a/src/Cryptography/GpgMe++.cpp b/src/Cryptography/GpgMe++.cpp
+index e012f603..716b8aff 100644
+--- a/src/Cryptography/GpgMe++.cpp
 b/src/Cryptography/GpgMe++.cpp
+@@ -267,6 +267,8 @@ QVariant GpgMePart::data(int role) const
+ switch (role) {
+ case Imap::Mailbox::RolePartSignatureVerifySupported:
+ return m_wasSigned;
++case RolePartDecryptionSupported:
++return m_isAllegedlyEncrypted;
+ case RolePartCryptoNotFinishedYet:
+ return m_waitingForData ||
+ (m_crypto.valid() &&
+diff --git a/src/Gui/MessageView.cpp b/src/Gui/MessageView.cpp
+index 7d649308..c95e0878 100644
+--- a/src/Gui/MessageView.cpp
 b/src/Gui/MessageView.cpp
+@@ -354,7 +354,6 @@ bool MessageView::eventFilter(QObject *object, QEvent 
*event)
+ QString MessageView::quoteText() const
+ {
+ if (auto w = bodyWidget()) {
+-QStringList quote = 
Composer::quoteText(w->quoteMe().split(QLatin1Char('\n')));
+ const Imap::Message::Envelope  = 
message.data(Imap::Mailbox::RoleMessageEnvelope).value();
+ QString sender;
+ if (!e.from.isEmpty())
+@@ -362,6 +361,14 @@ QString MessageView::quoteText() const
+ if (e.from.isEmpty())
+ sender = tr("you");
+ 
++if (messageModel->index(0, 0) /* fake message root */.child(0, 0) /* 
first MIME part */.data(Imap::Mailbox::RolePartDecryptionSupported).toBool()) {
++// This is just an UX improvement shortcut: real filtering for 
CVE-2019-10734 is in
++// MultipartSignedEncryptedWidget::quoteMe().
++// That is required because the encrypted part might not be the 
root part of the message.
++return tr("On %1, %2 sent an encrypted message:\n> 
...\n\n").arg(e.date.toLocalTime().toString(Qt::SystemLocaleLongDate), sender);
++}
++
++QStringList quote = 
Composer::quoteText(w->quoteMe().split(QLatin1Char('\n')));
+ // One extra newline at the end of the quoted text to separate the 
response
+ quote << QString();
+ 
+diff --git a/src/Gui/PartWidget.cpp b/src/Gui/PartWidget.cpp
+index bb27604d..96eff338 100644
+--- a/src/Gui/PartWidget.cpp
 b/src/Gui/PartWidget.cpp
+@@ -378,6 +378,14 @@ void 
MultipartSignedEncryptedWidget::updateStatusIndicator()
+ 
+ QString MultipartSignedEncryptedWidget::quoteMe() const
+ {
++if 
(m_partIndex.data(Imap::Mailbox::RolePartDecryptionSupported).toBool()) {
++// See CVE-2019-10734, the point is not to leak cleartext from 
encrypted content. Even when Trojita starts supporting
++// encryption of outgoing mail, we will have to check whether the 
encrypted cleartext is from the same sender, whether
++// it matches the list of recipients (which is dynamic and can be set 
later 

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

2020-06-28 Thread Andreas Sturmlechner
commit: 27928a6503e350a169f44fd2f7f675ac54df1175
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun 28 21:16:37 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jun 28 21:55:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27928a65

net-libs/signond: Tests are really really brittle; but they can pass

...when they feel like it sometimes.

Closes: https://bugs.gentoo.org/727666
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/signond/signond-8.60-r2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net-libs/signond/signond-8.60-r2.ebuild 
b/net-libs/signond/signond-8.60-r2.ebuild
index ac9f38c87f2..4c354dd6364 100644
--- a/net-libs/signond/signond-8.60-r2.ebuild
+++ b/net-libs/signond/signond-8.60-r2.ebuild
@@ -27,7 +27,8 @@ DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )
 "
 
-RESTRICT="!test? ( test )"
+# tests are brittle; they all pass when stars align, bug 727666
+RESTRICT="test !test? ( test )"
 
 PATCHES=(
"${FILESDIR}/${P}-buildsystem.patch"



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

2020-06-28 Thread Mike Gilbert
commit: c4013edc649c58576362aa0d393037681a3e89cb
Author: Stephan Hartmann  googlemail  com>
AuthorDate: Sun Jun 28 16:28:34 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jun 28 21:55:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4013edc

www-client/chromium: fix ffmpeg dep

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Stephan Hartmann  googlemail.com>
Signed-off-by: Mike Gilbert  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/16476

 www-client/chromium/chromium-84.0.4147.68.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/www-client/chromium/chromium-84.0.4147.68.ebuild 
b/www-client/chromium/chromium-84.0.4147.68.ebuild
index fa4201cf1b1..6f26ac56db2 100644
--- a/www-client/chromium/chromium-84.0.4147.68.ebuild
+++ b/www-client/chromium/chromium-84.0.4147.68.ebuild
@@ -62,8 +62,7 @@ COMMON_DEPEND="
system-libvpx? ( >=media-libs/libvpx-1.8.2:=[postproc,svc] )
pulseaudio? ( media-sound/pulseaudio:= )
system-ffmpeg? (
-   >=media-video/ffmpeg-4:0
-   =media-video/ffmpeg-4:=
|| (
media-video/ffmpeg[-samba]
>=net-fs/samba-4.5.10-r1[-debug(-)]



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

2020-06-28 Thread Thomas Deutschmann
commit: 005bbdbf359ac51a0c12fb98ca8da82871660c85
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 21:53:35 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 21:53:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=005bbdbf

dev-util/jenkins-bin: drop old

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

 dev-util/jenkins-bin/Manifest   |  2 --
 dev-util/jenkins-bin/jenkins-bin-2.222.4.ebuild | 46 -
 dev-util/jenkins-bin/jenkins-bin-2.228.ebuild   | 46 -
 3 files changed, 94 deletions(-)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index b598a4ceb3b..3e89daa2b7c 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,4 +1,2 @@
-DIST jenkins-bin-2.222.4.war 66239216 BLAKE2B 
0272f91b4460ac9f9cd0235df59f55e3135f593d8098d35aae4db6571e171d3c38c6b3e0ac0ae2f7825a3ac3e56c8e76cc4e15e28743cd2aa007395921eb7100
 SHA512 
8f82d8c69807c46eb0f0638d59777f10e1017b197a1d88295882e6b8aef6376609ed9da625691eafca786ed0a7314e7ab2abb000a39dcfb6da2d250bbd5e0c76
-DIST jenkins-bin-2.228.war 66137156 BLAKE2B 
acd1414745f0ffe12ca3025149d5ef8dcdebe6415e54e18f71eb4ef05bb578279409fbf5605763d86144726a82057ba796ea8ce3b79301ea33ddfed1f03ad9f4
 SHA512 
899c5838cc46f87020c18b0863b8f160c22b0422e7adec1bfd48dce5f06264b5e33ec8411bf9133e28fa8723daeeb5d2cd14a92c261d82e2b2b804d0b1c21250
 DIST jenkins-bin-2.235.1.war 66437256 BLAKE2B 
900f5616db3e4e1913e9e07f1d40951fdb0a467e2acd93441a52fed7d9f5961103c46b34627e0add76da11a3e4787535d0a47e5eee20a474f65c14b03fefe9a4
 SHA512 
1be1f1845de87316107469b9b7c4d0e1e6b0f014f495981f2ecc2ce3acbfd820275c187c61b3f9664ad2a61312e4504171c45edf05e1711bbf61554c5f3fd653
 DIST jenkins-bin-2.242.war 67003152 BLAKE2B 
cc20efde5196ed66af3cfb0b52404e35bf3954422734278ce2c3bfad5402c0f005579a1c406e519e8e04b28e3d0f26cff2d4fb5a40c2b722dd3a93d54cf86cb4
 SHA512 
22e138d4c3291b2885b9cb9db51e5dedcca13ca93a2fb8b11bd1dc81da981e9404717ff791fa2a1d9dd4530fb806e8cf9c79931cdb968723f02177fc00321f92

diff --git a/dev-util/jenkins-bin/jenkins-bin-2.222.4.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-2.222.4.ebuild
deleted file mode 100644
index 8ab8d5db213..000
--- a/dev-util/jenkins-bin/jenkins-bin-2.222.4.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit user systemd
-
-DESCRIPTION="Extensible continuous integration server"
-HOMEPAGE="https://jenkins.io/;
-LICENSE="MIT"
-SRC_URI="http://mirrors.jenkins-ci.org/war-stable/${PV}/${PN/-bin/}.war -> 
${P}.war"
-RESTRICT="mirror"
-SLOT="lts"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
-IUSE=""
-
-RDEPEND="media-fonts/dejavu
-   media-libs/freetype
-   !dev-util/jenkins-bin:0
-   >=virtual/jre-1.8.0"
-
-S=${WORKDIR}
-
-JENKINS_DIR=/var/lib/jenkins
-
-pkg_setup() {
-   enewgroup jenkins
-   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
-}
-
-src_install() {
-   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
-
-   insinto /opt/jenkins
-   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
-
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
-
-   newinitd "${FILESDIR}"/${PN}.init2 jenkins
-   newconfd "${FILESDIR}"/${PN}.confd jenkins
-
-   systemd_newunit "${FILESDIR}"/${PN}.service2 jenkins.service
-
-   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
-}

diff --git a/dev-util/jenkins-bin/jenkins-bin-2.228.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-2.228.ebuild
deleted file mode 100644
index e3e0cd1a4ed..000
--- a/dev-util/jenkins-bin/jenkins-bin-2.228.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit user systemd
-
-DESCRIPTION="Extensible continuous integration server"
-HOMEPAGE="https://jenkins.io/;
-LICENSE="MIT"
-SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war"
-RESTRICT="mirror"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
-IUSE=""
-
-RDEPEND="media-fonts/dejavu
-   media-libs/freetype
-   !dev-util/jenkins-bin:lts
-   >=virtual/jre-1.8.0"
-
-S=${WORKDIR}
-
-JENKINS_DIR=/var/lib/jenkins
-
-pkg_setup() {
-   enewgroup jenkins
-   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
-}
-
-src_install() {
-   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
-
-   insinto /opt/jenkins
-   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
-
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
-
-   newinitd "${FILESDIR}"/${PN}.init2 jenkins
-   newconfd "${FILESDIR}"/${PN}.confd jenkins
-
-   systemd_newunit "${FILESDIR}"/${PN}.service2 jenkins.service

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

2020-06-28 Thread Thomas Deutschmann
commit: 726f3d15b281f8e811cdebc0a325afe469b7c975
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 21:53:13 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 21:53:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=726f3d15

dev-util/jenkins-bin: bump to v2.242

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

 dev-util/jenkins-bin/Manifest |  1 +
 dev-util/jenkins-bin/jenkins-bin-2.242.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index 8d916eb0b68..b598a4ceb3b 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,3 +1,4 @@
 DIST jenkins-bin-2.222.4.war 66239216 BLAKE2B 
0272f91b4460ac9f9cd0235df59f55e3135f593d8098d35aae4db6571e171d3c38c6b3e0ac0ae2f7825a3ac3e56c8e76cc4e15e28743cd2aa007395921eb7100
 SHA512 
8f82d8c69807c46eb0f0638d59777f10e1017b197a1d88295882e6b8aef6376609ed9da625691eafca786ed0a7314e7ab2abb000a39dcfb6da2d250bbd5e0c76
 DIST jenkins-bin-2.228.war 66137156 BLAKE2B 
acd1414745f0ffe12ca3025149d5ef8dcdebe6415e54e18f71eb4ef05bb578279409fbf5605763d86144726a82057ba796ea8ce3b79301ea33ddfed1f03ad9f4
 SHA512 
899c5838cc46f87020c18b0863b8f160c22b0422e7adec1bfd48dce5f06264b5e33ec8411bf9133e28fa8723daeeb5d2cd14a92c261d82e2b2b804d0b1c21250
 DIST jenkins-bin-2.235.1.war 66437256 BLAKE2B 
900f5616db3e4e1913e9e07f1d40951fdb0a467e2acd93441a52fed7d9f5961103c46b34627e0add76da11a3e4787535d0a47e5eee20a474f65c14b03fefe9a4
 SHA512 
1be1f1845de87316107469b9b7c4d0e1e6b0f014f495981f2ecc2ce3acbfd820275c187c61b3f9664ad2a61312e4504171c45edf05e1711bbf61554c5f3fd653
+DIST jenkins-bin-2.242.war 67003152 BLAKE2B 
cc20efde5196ed66af3cfb0b52404e35bf3954422734278ce2c3bfad5402c0f005579a1c406e519e8e04b28e3d0f26cff2d4fb5a40c2b722dd3a93d54cf86cb4
 SHA512 
22e138d4c3291b2885b9cb9db51e5dedcca13ca93a2fb8b11bd1dc81da981e9404717ff791fa2a1d9dd4530fb806e8cf9c79931cdb968723f02177fc00321f92

diff --git a/dev-util/jenkins-bin/jenkins-bin-2.242.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-2.242.ebuild
new file mode 100644
index 000..e3e0cd1a4ed
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-2.242.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit user systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="https://jenkins.io/;
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war"
+RESTRICT="mirror"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux"
+IUSE=""
+
+RDEPEND="media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:lts
+   >=virtual/jre-1.8.0"
+
+S=${WORKDIR}
+
+JENKINS_DIR=/var/lib/jenkins
+
+pkg_setup() {
+   enewgroup jenkins
+   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
+}
+
+src_install() {
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}.init2 jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd_newunit "${FILESDIR}"/${PN}.service2 jenkins.service
+
+   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
+}



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

2020-06-28 Thread Thomas Deutschmann
commit: d4ab033582ceb018e572d2d8663f0ddb8466dfd2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 21:28:32 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 21:30:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4ab0335

media-gfx/imagemagick: drop old

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

 media-gfx/imagemagick/Manifest |   4 -
 media-gfx/imagemagick/imagemagick-6.9.11.16.ebuild | 255 
 media-gfx/imagemagick/imagemagick-6.9.11.9.ebuild  | 255 
 .../imagemagick/imagemagick-7.0.10.16-r2.ebuild| 268 -
 media-gfx/imagemagick/imagemagick-7.0.10.16.ebuild | 267 
 media-gfx/imagemagick/imagemagick-7.0.10.9.ebuild  | 267 
 6 files changed, 1316 deletions(-)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index c81adf7ac9f..41142e40ff5 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,6 +1,2 @@
-DIST ImageMagick-6.9.11-16.tar.xz 9075792 BLAKE2B 
7cfa4a071ee09b9658e302db963cdcc393395305bd96d04ddc5ce7941bd3b26fec74206525ffb1d93a423a970ee91dcd308041c8cb407c783195dc98a337db5c
 SHA512 
ae4c56afdde8d62f80cfc32e208595f50b4e1d3cdfffbf1f18a5ad1f715998bcc917fe595369cda216d13ebd7121c060376a3ed6c0558dcd508f0142b108e2ff
 DIST ImageMagick-6.9.11-19.tar.xz 9076632 BLAKE2B 
fb6e954052e4dc9b5db80fcb3868e627f3cbe5d9ccb02425fe3838dfef4deb1132360a30b561de28bf7d2051bc7c01ad5c4ebc0266b48f1d48d7af5ecae4b5e2
 SHA512 
fe8e7399b377c84155d3ad3c3963d58b8704233d9c858ff92ba1837e6e1f5d86846153660cc0973b8cd27917e4c8b4834874c510f00505142cd8165ae3e3526d
-DIST ImageMagick-6.9.11-9.tar.xz 9069640 BLAKE2B 
ab39f4723e4bc843a504ce29a840d24a0497d00ebaaf8a10589813d7bf13f5ef3774e9989dd38d667e1a9ad3dbc5357ca4a53533b5ef338781409c0b3bdde01a
 SHA512 
8f8e6cdbbc4ff367304d29d3098dc208ac17e8037e31426e5e24d918ab13a292660e2944cb830fa814f297b69f8b2d693ac33b94f5ee4b8406cf52605ee00586
-DIST ImageMagick-7.0.10-16.tar.xz 9694880 BLAKE2B 
6d0e0baeb99d9815255f10d04176b816694afb9d7e2169af60401eb57b13bc2dbf1223b1b3de6b67c2ed9f1581983801bfec017dee6f4b73319b68d0e16366fb
 SHA512 
e1ba52cde03b1230789a9e538ea93bd8b0713b418cf268ab3c3be0c0da4b6144ff47479e554c27a9348d56b5e94a181944474f77568f502cf31885d871f2ea5e
 DIST ImageMagick-7.0.10-19.tar.xz 9685552 BLAKE2B 
e3d6ca1e16ad4bc346153372f1122731a750876650cdb705985ef29ef30c5ceb7f2f473ff2734a38c50e2e531094a08526678cfe1e8f58eef79d30ea18c363bf
 SHA512 
ed577e48ca88d37c01d7e889fa1364af3398e94864b393fcc70711a3317c34adababe5ac0ea7995bd23e10aac554522ed69d290c4c11b946e8a0de86c6365e84
-DIST ImageMagick-7.0.10-9.tar.xz 9681168 BLAKE2B 
0a26df054f6799dcc0cc576dc3d3e30689d3311ce658b220f4575d6ddf31063e8e9b1de57d5065171480dad5ae4f3a0bdde0d5ef7a5a7cdd267f2e76a210f30c
 SHA512 
db19b39c41e3401ce454016a14c83d1188d38d7e4a31848c29344bd86ef14d4250208bcfb4b9e519f7d2d193a61724d980ce39e9d6e2388c872281e9383e2f54

diff --git a/media-gfx/imagemagick/imagemagick-6.9.11.16.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.11.16.ebuild
deleted file mode 100644
index 02b0c9655fe..000
--- a/media-gfx/imagemagick/imagemagick-6.9.11.16.ebuild
+++ /dev/null
@@ -1,255 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs 
multilib
-
-MY_PV="$(ver_rs 3 '-')"
-MY_P="ImageMagick-${MY_PV}"
-
-DESCRIPTION="A collection of tools and libraries for many image formats"
-HOMEPAGE="https://www.imagemagick.org/;
-SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
-
-LICENSE="imagemagick"
-SLOT="0/6.9.11"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
-
-REQUIRED_USE="corefonts? ( truetype )
-   test? ( corefonts )"
-
-RESTRICT="perl? ( userpriv )
-   !test? ( test )"
-
-RDEPEND="
-   dev-libs/libltdl:0
-   bzip2? ( app-arch/bzip2 )
-   corefonts? ( media-fonts/corefonts )
-   djvu? ( app-text/djvu )
-   fftw? ( sci-libs/fftw:3.0 )
-   fontconfig? ( media-libs/fontconfig )
-   fpx? ( >=media-libs/libfpx-1.3.0-r1 )
-   graphviz? ( media-gfx/graphviz )
-   heif? ( media-libs/libheif:= )
-   jbig? ( >=media-libs/jbigkit-2:= )
-   jpeg? ( virtual/jpeg:0 )
-   jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
-   lcms? ( media-libs/lcms:2= )
-   lqr? ( media-libs/liblqr )
-   opencl? ( virtual/opencl )
-   openexr? ( media-libs/openexr:0= )
-   pango? ( x11-libs/pango )
-   perl? ( 

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

2020-06-28 Thread Thomas Deutschmann
commit: c8bc4d04c51f6f0cf1376d19dc78eef5eb2987cf
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 21:29:59 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 21:30:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8bc4d04

media-gfx/imagemagick: bump to v6.9.11-22 & v7.0.10-22

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

 media-gfx/imagemagick/Manifest |   2 +
 media-gfx/imagemagick/imagemagick-6.9.11.22.ebuild | 255 
 media-gfx/imagemagick/imagemagick-7.0.10.22.ebuild | 268 +
 3 files changed, 525 insertions(+)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index 41142e40ff5..3acd05bdb5a 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,2 +1,4 @@
 DIST ImageMagick-6.9.11-19.tar.xz 9076632 BLAKE2B 
fb6e954052e4dc9b5db80fcb3868e627f3cbe5d9ccb02425fe3838dfef4deb1132360a30b561de28bf7d2051bc7c01ad5c4ebc0266b48f1d48d7af5ecae4b5e2
 SHA512 
fe8e7399b377c84155d3ad3c3963d58b8704233d9c858ff92ba1837e6e1f5d86846153660cc0973b8cd27917e4c8b4834874c510f00505142cd8165ae3e3526d
+DIST ImageMagick-6.9.11-22.tar.xz 9084304 BLAKE2B 
38df3e9535c23b246b6ededc1b9d083fc8c42f3abe85835d6ef29dffb06bbccaa7aae534efeaaf224b9f8495c1c116a6ce4c886e70fa0976cfbda0880a165e96
 SHA512 
9c6f4ab3f881b4aba4de3fde2d49ed66773b52dacbdc24c92eba6b8b1e97ea28b983cbd9fbcf4721f4b46ab8d249470f44e1cc7e173728d78f2ef049f4aa42c0
 DIST ImageMagick-7.0.10-19.tar.xz 9685552 BLAKE2B 
e3d6ca1e16ad4bc346153372f1122731a750876650cdb705985ef29ef30c5ceb7f2f473ff2734a38c50e2e531094a08526678cfe1e8f58eef79d30ea18c363bf
 SHA512 
ed577e48ca88d37c01d7e889fa1364af3398e94864b393fcc70711a3317c34adababe5ac0ea7995bd23e10aac554522ed69d290c4c11b946e8a0de86c6365e84
+DIST ImageMagick-7.0.10-22.tar.xz 9710504 BLAKE2B 
bfa35f9bf28629656d97ab03c1adf2641761f40d7bad284af2dc199b3ac4006e656356762d753d0b3992c78f0a4155423a27de632ee5e9594398164f20bde576
 SHA512 
5a7023eb8dfddc34c8378f338335e13e4b235e6c3e8e8b0476ae4ca31db78ef8bbdc457f7de1356994ea25d6eb94bb944d725d15aee038196bf7060c934d0926

diff --git a/media-gfx/imagemagick/imagemagick-6.9.11.22.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.11.22.ebuild
new file mode 100644
index 000..02b0c9655fe
--- /dev/null
+++ b/media-gfx/imagemagick/imagemagick-6.9.11.22.ebuild
@@ -0,0 +1,255 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs 
multilib
+
+MY_PV="$(ver_rs 3 '-')"
+MY_P="ImageMagick-${MY_PV}"
+
+DESCRIPTION="A collection of tools and libraries for many image formats"
+HOMEPAGE="https://www.imagemagick.org/;
+SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
+
+LICENSE="imagemagick"
+SLOT="0/6.9.11"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
+
+REQUIRED_USE="corefonts? ( truetype )
+   test? ( corefonts )"
+
+RESTRICT="perl? ( userpriv )
+   !test? ( test )"
+
+RDEPEND="
+   dev-libs/libltdl:0
+   bzip2? ( app-arch/bzip2 )
+   corefonts? ( media-fonts/corefonts )
+   djvu? ( app-text/djvu )
+   fftw? ( sci-libs/fftw:3.0 )
+   fontconfig? ( media-libs/fontconfig )
+   fpx? ( >=media-libs/libfpx-1.3.0-r1 )
+   graphviz? ( media-gfx/graphviz )
+   heif? ( media-libs/libheif:= )
+   jbig? ( >=media-libs/jbigkit-2:= )
+   jpeg? ( virtual/jpeg:0 )
+   jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
+   lcms? ( media-libs/lcms:2= )
+   lqr? ( media-libs/liblqr )
+   opencl? ( virtual/opencl )
+   openexr? ( media-libs/openexr:0= )
+   pango? ( x11-libs/pango )
+   perl? ( >=dev-lang/perl-5.8.8:0= )
+   png? ( media-libs/libpng:0= )
+   postscript? ( app-text/ghostscript-gpl )
+   raw? ( media-libs/libraw:= )
+   svg? (
+   gnome-base/librsvg
+   media-gfx/potrace
+   )
+   tiff? ( media-libs/tiff:0= )
+   truetype? (
+   media-fonts/urw-fonts
+   >=media-libs/freetype-2
+   )
+   webp? ( media-libs/libwebp:0= )
+   wmf? ( media-libs/libwmf )
+   X? (
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libXext
+   x11-libs/libXt
+   )
+   xml? ( dev-libs/libxml2:= )
+   lzma? ( app-arch/xz-utils )
+   zlib? ( sys-libs/zlib:= )"
+DEPEND="${RDEPEND}
+   !media-gfx/graphicsmagick[imagemagick]
+   virtual/pkgconfig
+   X? ( 

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

2020-06-28 Thread Thomas Deutschmann
commit: fd9e9e2ce5361b0779fa88dd07ba68c310c074c2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 21:27:33 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 21:30:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd9e9e2c

media-gfx/imagemagick: rollover keywords

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

 media-gfx/imagemagick/imagemagick-6.9.11.19.ebuild | 2 +-
 media-gfx/imagemagick/imagemagick-7.0.10.19.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/imagemagick/imagemagick-6.9.11.19.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.11.19.ebuild
index 02b0c9655fe..f37a0010b4c 100644
--- a/media-gfx/imagemagick/imagemagick-6.9.11.19.ebuild
+++ b/media-gfx/imagemagick/imagemagick-6.9.11.19.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
 
 LICENSE="imagemagick"
 SLOT="0/6.9.11"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
 
 REQUIRED_USE="corefonts? ( truetype )

diff --git a/media-gfx/imagemagick/imagemagick-7.0.10.19.ebuild 
b/media-gfx/imagemagick/imagemagick-7.0.10.19.ebuild
index eb7593072ec..f54a5b0369e 100644
--- a/media-gfx/imagemagick/imagemagick-7.0.10.19.ebuild
+++ b/media-gfx/imagemagick/imagemagick-7.0.10.19.ebuild
@@ -13,7 +13,7 @@ else
MY_PV="$(ver_rs 3 '-')"
MY_P="ImageMagick-${MY_PV}"
SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="A collection of tools and libraries for many image formats"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/geekbench/

2020-06-28 Thread Conrad Kostecki
commit: 1df69f0607c3c28a2f1c6c6ec8fed76e8a690464
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Jun 28 21:23:50 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Jun 28 21:23:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1df69f06

app-benchmarks/geekbench: drop old version

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-benchmarks/geekbench/Manifest   |  1 -
 app-benchmarks/geekbench/geekbench-5.2.0.ebuild | 43 -
 2 files changed, 44 deletions(-)

diff --git a/app-benchmarks/geekbench/Manifest 
b/app-benchmarks/geekbench/Manifest
index 45fb0b3a540..9a7998eb5f5 100644
--- a/app-benchmarks/geekbench/Manifest
+++ b/app-benchmarks/geekbench/Manifest
@@ -3,5 +3,4 @@ DIST Geekbench-2.4.3-Linux.tar.gz 3337551 BLAKE2B 
cb660f3c08cc812cb23374032490a1
 DIST Geekbench-3.4.2-Linux.tar.gz 9986039 BLAKE2B 
63d7e768d65bc033260a0d99da17df2e518750f19882e63dbc9bbe6ff0b52a8cddb35b9143e85c01838bf5d77a04599578fc0a57a3e6fd89e7aec8c8ffdd4f5b
 SHA512 
a61a5d5481682baefdce64f6054c3373900e8cd585dcbfa2feabbf386032986b40b603619c552102401a83e0b748831d00af5b5b5278e88ef42dee176adf06e9
 DIST Geekbench-4.4.1-Linux.tar.gz 71076124 BLAKE2B 
14c2b80c971798e7d2bb256e76c7ab9c48e8c1c389e2f7547a436f706ac4f21c1e52e564cd584893071ee2f9f0a4747cd03ea72cc728ff8e4f369d5cc794d77a
 SHA512 
fa687d33a7d7a2d09c544e3d17de93f41cfa77915c708cd1ef0743f84f7f83df9d3f8df2872a8f85ed2c4c872e3cd41932685ffeb19cdb0ea047ab5116713420
 DIST Geekbench-5.1.1-Linux.tar.gz 92622793 BLAKE2B 
178b57d02de43e995f4dc39bd9514bb30fbe470d82572ba43aac08004609c07c656285beb543b3e3832df39bc2e26e41bb8c7d1f617f0846f930183e67a73436
 SHA512 
0f0a8206ced8cbaf271d964ece273a800bdd1d5b5918130aca2e31cab59f7d716c1b714b96a934e5b0fab8a9b73d1fcdc7ea9cd7ef37963b1a923cdefb542a78
-DIST Geekbench-5.2.0-Linux.tar.gz 92893837 BLAKE2B 
d081cf6e4faa8c9de494cc11ba58945a8409afd92cf4244e915349ad9ae8610c08e67cf4e4da0c10c823a785e3223fde2048849db641bc05339a4cb8d0fc4c63
 SHA512 
b587de4c3c6c144b2244e4a85fb719aa8a11a1b413316f0d60467c15cf7d4c43e82f57d45c266dd42679623441e895fbdc3ff29dc4762794d89c9cb33a46d7d9
 DIST Geekbench-5.2.1-Linux.tar.gz 92898328 BLAKE2B 
8a989b3921e8da467ffcaea1a466053ce1eae2d30991e8ad0a468cdb2c167e39729381e2f465abc9002eaa1569a4d912bdda3c1774689b35d8edb4778ab0bc90
 SHA512 
5d462cbb78b0b2a132fc5fbe0e65e9755d67232b22b6f2a541fa5aa1a90bc6768b3255759019218a94df0bb82eb9aeaad7dbb6b7cb0e8cc79a95d21fb9a8960b

diff --git a/app-benchmarks/geekbench/geekbench-5.2.0.ebuild 
b/app-benchmarks/geekbench/geekbench-5.2.0.ebuild
deleted file mode 100644
index 82d4a4a67fb..000
--- a/app-benchmarks/geekbench/geekbench-5.2.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A Cross-Platform Benchmark for Android, iOS, Linux, MacOS and 
Windows"
-HOMEPAGE="https://www.geekbench.com/;
-SRC_URI="https://cdn.geekbench.com/Geekbench-${PV}-Linux.tar.gz;
-
-KEYWORDS="-* ~amd64"
-LICENSE="geekbench"
-SLOT="5"
-
-RESTRICT="bindist mirror"
-
-S="${WORKDIR}/Geekbench-${PV}-Linux"
-
-QA_PREBUILT="
-   opt/geekbench5/geekbench5
-   opt/geekbench5/geekbench_x86_64
-"
-
-pkg_nofetch() {
-   elog "Please download ${A} from ${HOMEPAGE}/download/linux"
-   elog "and place it in your DISTDIR directory."
-}
-
-src_install() {
-   exeinto /opt/geekbench5
-   doexe geekbench5 geekbench_x86_64
-
-   insinto /opt/geekbench5
-   doins geekbench.plar
-
-   dodir /opt/bin
-   dosym ../geekbench5/geekbench5 /opt/bin/geekbench5
-}
-
-pkg_postinst() {
-   elog "If you have purchased a commercial license, you can enter"
-   elog "your email address and your license key with the following 
command:"
-   elog "geekbench5 -r  "
-}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/geekbench/

2020-06-28 Thread Conrad Kostecki
commit: f4757793500354c4b373bedbe3de0f1ead3d20e0
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Jun 28 21:22:32 2020 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Jun 28 21:22:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4757793

app-benchmarks/geekbench: bump to version 5.2.1

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-benchmarks/geekbench/Manifest   |  1 +
 app-benchmarks/geekbench/geekbench-5.2.1.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/app-benchmarks/geekbench/Manifest 
b/app-benchmarks/geekbench/Manifest
index 0e779ec6e2f..45fb0b3a540 100644
--- a/app-benchmarks/geekbench/Manifest
+++ b/app-benchmarks/geekbench/Manifest
@@ -4,3 +4,4 @@ DIST Geekbench-3.4.2-Linux.tar.gz 9986039 BLAKE2B 
63d7e768d65bc033260a0d99da17df
 DIST Geekbench-4.4.1-Linux.tar.gz 71076124 BLAKE2B 
14c2b80c971798e7d2bb256e76c7ab9c48e8c1c389e2f7547a436f706ac4f21c1e52e564cd584893071ee2f9f0a4747cd03ea72cc728ff8e4f369d5cc794d77a
 SHA512 
fa687d33a7d7a2d09c544e3d17de93f41cfa77915c708cd1ef0743f84f7f83df9d3f8df2872a8f85ed2c4c872e3cd41932685ffeb19cdb0ea047ab5116713420
 DIST Geekbench-5.1.1-Linux.tar.gz 92622793 BLAKE2B 
178b57d02de43e995f4dc39bd9514bb30fbe470d82572ba43aac08004609c07c656285beb543b3e3832df39bc2e26e41bb8c7d1f617f0846f930183e67a73436
 SHA512 
0f0a8206ced8cbaf271d964ece273a800bdd1d5b5918130aca2e31cab59f7d716c1b714b96a934e5b0fab8a9b73d1fcdc7ea9cd7ef37963b1a923cdefb542a78
 DIST Geekbench-5.2.0-Linux.tar.gz 92893837 BLAKE2B 
d081cf6e4faa8c9de494cc11ba58945a8409afd92cf4244e915349ad9ae8610c08e67cf4e4da0c10c823a785e3223fde2048849db641bc05339a4cb8d0fc4c63
 SHA512 
b587de4c3c6c144b2244e4a85fb719aa8a11a1b413316f0d60467c15cf7d4c43e82f57d45c266dd42679623441e895fbdc3ff29dc4762794d89c9cb33a46d7d9
+DIST Geekbench-5.2.1-Linux.tar.gz 92898328 BLAKE2B 
8a989b3921e8da467ffcaea1a466053ce1eae2d30991e8ad0a468cdb2c167e39729381e2f465abc9002eaa1569a4d912bdda3c1774689b35d8edb4778ab0bc90
 SHA512 
5d462cbb78b0b2a132fc5fbe0e65e9755d67232b22b6f2a541fa5aa1a90bc6768b3255759019218a94df0bb82eb9aeaad7dbb6b7cb0e8cc79a95d21fb9a8960b

diff --git a/app-benchmarks/geekbench/geekbench-5.2.1.ebuild 
b/app-benchmarks/geekbench/geekbench-5.2.1.ebuild
new file mode 100644
index 000..82d4a4a67fb
--- /dev/null
+++ b/app-benchmarks/geekbench/geekbench-5.2.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A Cross-Platform Benchmark for Android, iOS, Linux, MacOS and 
Windows"
+HOMEPAGE="https://www.geekbench.com/;
+SRC_URI="https://cdn.geekbench.com/Geekbench-${PV}-Linux.tar.gz;
+
+KEYWORDS="-* ~amd64"
+LICENSE="geekbench"
+SLOT="5"
+
+RESTRICT="bindist mirror"
+
+S="${WORKDIR}/Geekbench-${PV}-Linux"
+
+QA_PREBUILT="
+   opt/geekbench5/geekbench5
+   opt/geekbench5/geekbench_x86_64
+"
+
+pkg_nofetch() {
+   elog "Please download ${A} from ${HOMEPAGE}/download/linux"
+   elog "and place it in your DISTDIR directory."
+}
+
+src_install() {
+   exeinto /opt/geekbench5
+   doexe geekbench5 geekbench_x86_64
+
+   insinto /opt/geekbench5
+   doins geekbench.plar
+
+   dodir /opt/bin
+   dosym ../geekbench5/geekbench5 /opt/bin/geekbench5
+}
+
+pkg_postinst() {
+   elog "If you have purchased a commercial license, you can enter"
+   elog "your email address and your license key with the following 
command:"
+   elog "geekbench5 -r  "
+}



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

2020-06-28 Thread David Seifert
commit: 3cbb88736e3617bc6edcb53753bb873f98750070
Author: David Seifert  gentoo  org>
AuthorDate: Sun Jun 28 21:04:32 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Jun 28 21:04:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cbb8873

x11-libs/goffice: Remove old

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

 x11-libs/goffice/Manifest   |  1 -
 x11-libs/goffice/goffice-0.10.46.ebuild | 66 -
 2 files changed, 67 deletions(-)

diff --git a/x11-libs/goffice/Manifest b/x11-libs/goffice/Manifest
index 3d9f1708fa2..168953000cf 100644
--- a/x11-libs/goffice/Manifest
+++ b/x11-libs/goffice/Manifest
@@ -1,2 +1 @@
-DIST goffice-0.10.46.tar.xz 2397976 BLAKE2B 
a05696cde60b1cb1ee915bebd3a6e99d1f0a31dc232481615a1c6bbc05ee5433cdebfb05d96160026b260c752c2cfb11c0aecc338079cda66fd40b653fb8b0d1
 SHA512 
23714fef4dabccc76fe96b78d8eba9c9adb01cb9b3e2f1a9768598fb2a82742b2d2060a7d2548279998488c59e313d7a5863a96b2eb380f540b61fb08e0330f3
 DIST goffice-0.10.47.tar.xz 2400616 BLAKE2B 
16a92b3aa5c6e53cb0fe3f51d3ce03a9df6a18f50c0d6890da6ca2529f9e90e3ba30bef63b3c840697d229f58a723957731f985bf02ba80ec4d63bc93d6b7c1a
 SHA512 
0db26fbd049893ee9274ee492e1dc3f10ae789cf99cc0b9dda3f1c2f106423e4679cc56515eb08bbf752aaf48492212777eee08d43a9fefb0b22048e883f5a76

diff --git a/x11-libs/goffice/goffice-0.10.46.ebuild 
b/x11-libs/goffice/goffice-0.10.46.ebuild
deleted file mode 100644
index e6023df8247..000
--- a/x11-libs/goffice/goffice-0.10.46.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome.org libtool
-
-DESCRIPTION="A library of document-centric objects and utilities"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/goffice/;
-
-LICENSE="GPL-2"
-SLOT="0.10"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~x64-solaris"
-IUSE="+introspection"
-
-# FIXME: add lasem to tree
-RDEPEND="
-   >=app-text/libspectre-0.2.6:=
-   >=dev-libs/glib-2.40.0:2
-   >=dev-libs/libxml2-2.4.12:2
-   dev-libs/libxslt
-   >=gnome-base/librsvg-2.22:2
-   >=gnome-extra/libgsf-1.14.24:=[introspection?]
-   >=x11-libs/cairo-1.10:=[svg]
-   >=x11-libs/gdk-pixbuf-2.22:2
-   >=x11-libs/gtk+-3.20:3
-   >=x11-libs/pango-1.24:=
-   x11-libs/libXext:=
-   x11-libs/libXrender:=
-   introspection? (
-   >=dev-libs/gobject-introspection-1:=
-   >=gnome-extra/libgsf-1.14.23:=
-   )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   dev-lang/perl
-   dev-util/glib-utils
-   >=dev-util/gtk-doc-am-1.12
-   >=dev-util/intltool-0.35
-   virtual/perl-Compress-Raw-Zlib
-   virtual/perl-Getopt-Long
-   virtual/perl-IO-Compress
-   virtual/pkgconfig"
-
-src_prepare() {
-   default
-   elibtoolize
-}
-
-src_configure() {
-   econf \
-   --disable-gtk-doc \
-   --disable-maintainer-mode \
-   --without-lasem \
-   --with-gtk \
-   --with-config-backend=gsettings \
-   $(use_enable introspection)
-}
-
-src_install() {
-   default
-   dodoc MAINTAINERS
-
-   # no static archives
-   find "${D}" -name '*.la' -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-office/gnumeric/

2020-06-28 Thread David Seifert
commit: 26447859f053cbb9586c95d34c47cbfeaea9a650
Author: David Seifert  gentoo  org>
AuthorDate: Sun Jun 28 21:04:29 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Jun 28 21:04:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26447859

app-office/gnumeric: Remove old

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

 app-office/gnumeric/Manifest|  1 -
 app-office/gnumeric/gnumeric-1.12.46.ebuild | 93 -
 2 files changed, 94 deletions(-)

diff --git a/app-office/gnumeric/Manifest b/app-office/gnumeric/Manifest
index deebf9b0417..ab084bf6150 100644
--- a/app-office/gnumeric/Manifest
+++ b/app-office/gnumeric/Manifest
@@ -1,2 +1 @@
-DIST gnumeric-1.12.46.tar.xz 18282960 BLAKE2B 
f10fd8620dd2b865a4205b93f68ba78a07b94e72a147692bf875747cb8f128c54fad38e33162770d71422aed659f77b156679ca2f65836530c02b56cc2351ac6
 SHA512 
b3b3befe79f3ec8db6d7d9c80a1eed5293f5c0a9ca1d8dd131320eb031952b296147c51df1c775c6f9a0c466912e5523360373ee0b6e453e928929394ab517ea
 DIST gnumeric-1.12.47.tar.xz 18309764 BLAKE2B 
8b800a6749d208a445abfc7189618abb20907118f274b313cf81436ab3665d50edeab4c49b03adea505448138bd32b8d3efcd041eba54342d9fb293c574cac08
 SHA512 
f6298fee752b062672acc20e18388d7424719d69ce9586888f33be07ca92bbd7d99e46b98e9ab2a546d1954d3113b59a5105d46c4e8a13e65e1ae9acc38391ab

diff --git a/app-office/gnumeric/gnumeric-1.12.46.ebuild 
b/app-office/gnumeric/gnumeric-1.12.46.ebuild
deleted file mode 100644
index 555906ea41b..000
--- a/app-office/gnumeric/gnumeric-1.12.46.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..8} )
-
-inherit gnome.org libtool python-r1 xdg
-
-DESCRIPTION="The GNOME Spreadsheet"
-HOMEPAGE="http://www.gnumeric.org/;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="+introspection libgda perl"
-REQUIRED_USE="introspection? ( ${PYTHON_REQUIRED_USE} )"
-
-# Missing gnome-extra/libgnomedb required version in tree
-# but its upstream is dead and will be dropped soon.
-
-# lots of missing files, also fails tests due to 80-bit long story
-# upstream bug #721556
-RESTRICT="test"
-
-# Gnumeric has two python components
-# 1. The python loader for loading python-based plugins.
-#This component is pure python 2 and a port "is not currently being worked 
on".
-# 2. The python gobject-based introspection API. This component is compatible
-#with python 3.
-# Component 1. can only be re-enabled once someone has ported the upstream
-# codebase to python 3.
-# https://gitlab.gnome.org/GNOME/gnumeric/issues/419#note_618852
-RDEPEND="
-   app-arch/bzip2
-   sys-libs/zlib
-   >=dev-libs/glib-2.40.0:2
-   >=gnome-extra/libgsf-1.14.33:=
-   >=x11-libs/goffice-0.10.46:0.10
-   >=dev-libs/libxml2-2.4.12:2
-   >=x11-libs/pango-1.24.0:=
-
-   >=x11-libs/gtk+-3.8.7:3
-   x11-libs/cairo:=[svg]
-
-   introspection? (
-   ${PYTHON_DEPS}
-   >=dev-libs/gobject-introspection-1:=
-   )
-   perl? ( dev-lang/perl:= )
-   libgda? ( gnome-extra/libgda:5[gtk] )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   app-text/docbook-xml-dtd:4.5
-   app-text/yelp-tools
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.35.0
-   virtual/pkgconfig"
-
-src_prepare() {
-   default
-
-   # Manage gi overrides ourselves
-   sed '/SUBDIRS/ s/introspection//' -i Makefile.{am,in} || die
-   elibtoolize
-}
-
-src_configure() {
-   econf \
-   --disable-gtk-doc \
-   --disable-maintainer-mode \
-   --disable-schemas-compile \
-   --disable-static \
-   --without-psiconv \
-   --without-python \
-   --with-zlib \
-   $(use_with libgda gda) \
-   $(use_enable introspection) \
-   $(use_with perl)
-}
-
-src_install() {
-   default
-   dodoc HACKING MAINTAINERS
-
-   if use introspection; then
-   python_moduleinto gi.overrides
-   python_foreach_impl python_domodule 
introspection/gi/overrides/Gnm.py
-   fi
-
-   # no static archives
-   find "${D}" -name '*.la' -delete || die
-}



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

2020-06-28 Thread Aaron Bauman
commit: 4a826d9bc6c0cbde8da87ab712e276c4a8c5f211
Author: Stephan Hartmann  googlemail  com>
AuthorDate: Sun Jun 28 16:25:17 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jun 28 21:02:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a826d9b

www-client/chromium: security cleanup

Bug: https://bugs.gentoo.org/729310
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Stephan Hartmann  googlemail.com>
Closes: https://github.com/gentoo/gentoo/pull/16475
Signed-off-by: Aaron Bauman  gentoo.org>

 www-client/chromium/Manifest  |   1 -
 www-client/chromium/chromium-83.0.4103.106.ebuild | 820 --
 2 files changed, 821 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 39875559fb8..d738c1693e3 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,4 +1,3 @@
-DIST chromium-83.0.4103.106.tar.xz 802630620 BLAKE2B 
b145fd04347ef252778c99931d2e6aebc4cb9c3b4340db13ede074ac0631fef3c530b6b8c348ad33576a1da828817a590339206cf941729ee01444350bec1683
 SHA512 
37d0298ec6794f753bc280352c9ea45d57dd5050240d468fd2a7465b2021ebb598cdc6c4538050dd1d626bcd4a146af87fb837619e08766d38d21821605bd3a8
 DIST chromium-83.0.4103.116.tar.xz 802626772 BLAKE2B 
6890d8f4a4a9b12ab56a63e037129f6b77f03f95a841494505fdbbe212b0dd756e5558bddd7ee186669929c6069568c76b70b179fe4a58ccad465f2d4677d6e5
 SHA512 
dbd92fb04183ec1402401388f70b18b95040083c9ea8bf2ea6b1692fddc375b090968b13afb010ebf412b480b34747eb2c82709adbeb386cccf60b972f23254f
 DIST chromium-84-patchset-3.tar.xz 20148 BLAKE2B 
d910570b43f63bcf4ead90ca4e4005a08d7c85b5b4e7af2a70ec4bc18265cbe8b075523878710075cfee4e0631eb3374e1e6d06251f4bf03377954807b1951e9
 SHA512 
316db8b0359b10a988242a0d665475d912fa9b610a547478d8c39b337afc02780a54d7024e231eb4fd402063cf439f6e2b4bb92a4968c8e0c3e69d84a2ae1664
 DIST chromium-84.0.4147.68.tar.xz 845188784 BLAKE2B 
a0185a5aacc1297f6240e2d887e980c69ba1219267714fb82c87e2ec31e4a3bee24ea9c059fc4f56dcc5c3e576d0baf5b59ec3576fc266daac583cf2b2917b56
 SHA512 
c5304dfa76ec9bf1d7e96116b6560b77d636eaa226acf7be46798f4b161c6aba90c54bec797dfbf1e48ece46d4e52e44737ed68457f9b10bbc11658a9020bffd

diff --git a/www-client/chromium/chromium-83.0.4103.106.ebuild 
b/www-client/chromium/chromium-83.0.4103.106.ebuild
deleted file mode 100644
index 2a4c9b76532..000
--- a/www-client/chromium/chromium-83.0.4103.106.ebuild
+++ /dev/null
@@ -1,820 +0,0 @@
-# Copyright 2009-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 )
-
-CHROMIUM_LANGS="am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr gu 
he
-   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl 
sr
-   sv sw ta te th tr uk vi zh-CN zh-TW"
-
-inherit check-reqs chromium-2 desktop flag-o-matic multilib ninja-utils 
pax-utils portability python-any-r1 readme.gentoo-r1 toolchain-funcs xdg-utils
-
-DESCRIPTION="Open-source version of Google Chrome web browser"
-HOMEPAGE="https://chromium.org/;
-SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz
-   
https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="+closure-compile component-build cups cpu_flags_arm_neon +hangouts 
kerberos pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg 
+system-icu +system-libvpx +tcmalloc widevine"
-RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
-REQUIRED_USE="component-build? ( !suid )"
-
-COMMON_DEPEND="
-   >=app-accessibility/at-spi2-atk-2.26:2
-   app-arch/bzip2:=
-   cups? ( >=net-print/cups-1.3.11:= )
-   >=dev-libs/atk-2.26
-   dev-libs/expat:=
-   dev-libs/glib:2
-   >=dev-libs/libxml2-2.9.4-r3:=[icu]
-   dev-libs/nspr:=
-   >=dev-libs/nss-3.26:=
-   >=media-libs/alsa-lib-1.0.19:=
-   media-libs/fontconfig:=
-   media-libs/freetype:=
-   >=media-libs/harfbuzz-2.4.0:0=[icu(-)]
-   media-libs/libjpeg-turbo:=
-   media-libs/libpng:=
-   media-libs/mesa:=[gbm]
-   system-libvpx? ( >=media-libs/libvpx-1.8.2:=[postproc,svc] )
-   pulseaudio? ( media-sound/pulseaudio:= )
-   system-ffmpeg? (
-   >=media-video/ffmpeg-4:=
-   || (
-   media-video/ffmpeg[-samba]
-   >=net-fs/samba-4.5.10-r1[-debug(-)]
-   )
-   >=media-libs/opus-1.3.1:=
-   )
-   sys-apps/dbus:=
-   sys-apps/pciutils:=
-   virtual/udev
-   x11-libs/cairo:=
-   x11-libs/gdk-pixbuf:2
-   x11-libs/gtk+:3[X]
-   x11-libs/libX11:=
-   x11-libs/libXcomposite:=
-   x11-libs/libXcursor:=
-   x11-libs/libXdamage:=
-   x11-libs/libXext:=
-   x11-libs/libXfixes:=
-   >=x11-libs/libXi-1.6.0:=
-   

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

2020-06-28 Thread Ulrich Müller
commit: 3ea7df03f4cc995ac2135bf0c7d6ba69e62b4581
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jun 28 20:58:04 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jun 28 21:00:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ea7df03

app-emacs/org-mode: Remove old.

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/org-mode/Manifest|  1 -
 app-emacs/org-mode/org-mode-9.3.ebuild | 59 --
 2 files changed, 60 deletions(-)

diff --git a/app-emacs/org-mode/Manifest b/app-emacs/org-mode/Manifest
index 655994c1fa6..a7638fc2607 100644
--- a/app-emacs/org-mode/Manifest
+++ b/app-emacs/org-mode/Manifest
@@ -1,3 +1,2 @@
 DIST org-8.3.2.tar.gz 4442361 BLAKE2B 
f21f07578e870cd3edaa3721a53f679627c0115c320c666c2086e201e272c0ef03540bfdd90936a624cd4c4dcbac21b91346ba975b6006ada2d46184f73574f3
 SHA512 
3e1ff47c875a2db3239add8b060f555da357e465161ca62860c0ac2734c2e31c5387d2df4223ab7ea8ea60050f9a845d160b0bcb3afcf36f1d3cabcaa961e6a2
 DIST org-9.3.6.tar.gz 4669953 BLAKE2B 
1d221918f8145b789d979ee7822640dd37c5722e9f65ba36e945f7d574cfb89d48e2da1812d5dc727301ef1ad8bd2ef5628f54cbbfef5bffbab48656ed4c1e65
 SHA512 
47b5b81f47474d399cc7aada0e32f376d4c8758f6e955b7d889035610c20a4c372ea0571a510695822d2b87bd1e8002c2d0d8c73dc730144540c59b5ef25e090
-DIST org-9.3.tar.gz 5189006 BLAKE2B 
1e082988a47e2058fe248dd1f8f5f0e75291279be1a7abf75d507786f84f93e9701607d15688162ff4d3e4f590ac8391c37d1f6d047ed55d9d9bfb498b47cfa4
 SHA512 
e00f15750b76350765b6a01e5b0021fec4dcbd9dd5ca4de6745e0df6881b9d62ad496b7d579c0cc0f6dbb206bb27e5a219e0a668a6167ccc7f629d763eafa24c

diff --git a/app-emacs/org-mode/org-mode-9.3.ebuild 
b/app-emacs/org-mode/org-mode-9.3.ebuild
deleted file mode 100644
index d8248f25435..000
--- a/app-emacs/org-mode/org-mode-9.3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-NEED_EMACS=24
-
-inherit elisp readme.gentoo-r1
-
-DESCRIPTION="An Emacs mode for notes and project planning"
-HOMEPAGE="https://www.orgmode.org/;
-SRC_URI="http://orgmode.org/org-${PV}.tar.gz;
-
-LICENSE="GPL-3+ FDL-1.3+ contrib? ( GPL-2+ MIT ) odt-schema? ( OASIS-Open )"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-macos"
-IUSE="contrib doc odt-schema"
-RESTRICT="test"
-
-BDEPEND="doc? ( virtual/texi2dvi )"
-
-S="${WORKDIR}/org-${PV}"
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-   emake datadir="${EPREFIX}${SITEETC}/${PN}"
-   use doc && emake pdf card
-}
-
-src_install() {
-   emake \
-   DESTDIR="${D}" \
-   ETCDIRS="styles $(use odt-schema && echo schema)" \
-   lispdir="${EPREFIX}${SITELISP}/${PN}" \
-   datadir="${EPREFIX}${SITEETC}/${PN}" \
-   infodir="${EPREFIX}/usr/share/info" \
-   install
-
-   cp "${FILESDIR}/${SITEFILE}" "${T}/${SITEFILE}" || die
-
-   if use contrib; then
-   elisp-install ${PN}/contrib contrib/lisp/{org,ob,ox}*.el
-   ( docinto contrib; dodoc -r contrib/README contrib/scripts )
-   find "${ED}/usr/share/doc/${PF}/contrib" -type f -name '.*' \
-   -exec rm -f '{}' '+'
-   # add the contrib subdirectory to load-path
-   sed -i -e 's:\(.*@SITELISP@\)\(.*\):&\n\1/contrib\2:' \
-   "${T}/${SITEFILE}" || die
-   fi
-
-   elisp-site-file-install "${T}/${SITEFILE}"
-   dodoc README etc/ORG-NEWS
-   use doc && dodoc doc/org.pdf doc/orgcard.pdf doc/orgguide.pdf
-
-   DOC_CONTENTS="Org mode has a large variety of run-time dependencies,
-   so you may have to install one or more additional packages.
-   A non-exhaustive list of these dependencies may be found at
-   ."
-   readme.gentoo_create_doc
-}



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

2020-06-28 Thread Ulrich Müller
commit: 9a328f6ca7ada55dc84c27f08253bcc32b67ebbb
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jun 28 20:59:57 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jun 28 21:00:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a328f6c

app-emacs/xrdb-mode: Remove old.

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/xrdb-mode/xrdb-mode-3.0.ebuild | 18 --
 1 file changed, 18 deletions(-)

diff --git a/app-emacs/xrdb-mode/xrdb-mode-3.0.ebuild 
b/app-emacs/xrdb-mode/xrdb-mode-3.0.ebuild
deleted file mode 100644
index 1405fd18bf3..000
--- a/app-emacs/xrdb-mode/xrdb-mode-3.0.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit elisp
-
-DESCRIPTION="An Emacs major mode for editing X resource database files"
-HOMEPAGE="https://launchpad.net/xrdb-mode
-   https://www.emacswiki.org/emacs/ResourceFiles;
-# taken from https://launchpad.net/${PN}/trunk/3.0/+download/${PN}.el
-SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.el.xz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-SITEFILE="50${PN}-gentoo.el"



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

2020-06-28 Thread Thomas Deutschmann
commit: 6fb04f29d96a51672e67cf744fab6fc1793342f6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 20:57:37 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:59:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fb04f29

dev-python/pytest: x86 stable (bug #723996)

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

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

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



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

2020-06-28 Thread Thomas Deutschmann
commit: 601312a4b486d92338265fe34b229f654acfa1de
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 20:59:06 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:59:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=601312a4

dev-python/elementpath: x86 stable (bug #723996)

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

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

diff --git a/dev-python/elementpath/elementpath-1.4.5.ebuild 
b/dev-python/elementpath/elementpath-1.4.5.ebuild
index b472ce7b045..5cd74ecf88b 100644
--- a/dev-python/elementpath/elementpath-1.4.5.ebuild
+++ b/dev-python/elementpath/elementpath-1.4.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-06-28 Thread Thomas Deutschmann
commit: 91db3e311dcc05300fc496d0345f05b9243c4823
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 20:58:23 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:59:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91db3e31

dev-python/xmlschema: x86 stable (bug #723996)

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

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

diff --git a/dev-python/xmlschema/xmlschema-1.1.3.ebuild 
b/dev-python/xmlschema/xmlschema-1.1.3.ebuild
index fc99c030c53..970be740027 100644
--- a/dev-python/xmlschema/xmlschema-1.1.3.ebuild
+++ b/dev-python/xmlschema/xmlschema-1.1.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-06-28 Thread Aaron Bauman
commit: 800977a4e7f56b638b29c92ba437f3fca319bc93
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Fri Jun 26 07:11:26 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jun 28 20:57:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=800977a4

media-libs/openexr: https for HOMEPAGE

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/16429
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/media-libs/openexr/openexr-2.3.0.ebuild 
b/media-libs/openexr/openexr-2.3.0.ebuild
index 1fee7ea7fa6..5cb1f98b83b 100644
--- a/media-libs/openexr/openexr-2.3.0.ebuild
+++ b/media-libs/openexr/openexr-2.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools flag-o-matic toolchain-funcs multilib-minimal
 
 DESCRIPTION="ILM's OpenEXR high dynamic-range image file format libraries"
-HOMEPAGE="http://openexr.com/;
+HOMEPAGE="https://www.openexr.com/;
 
SRC_URI="https://github.com/openexr/openexr/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="BSD"



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

2020-06-28 Thread Thomas Deutschmann
commit: 6741be4bbbf03a4d2019d80b5692779140180187
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:35:04 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6741be4b

app-admin/keepass: x86 stable (bug #729574)

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

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

diff --git a/app-admin/keepass/keepass-2.45.ebuild 
b/app-admin/keepass/keepass-2.45.ebuild
index db354f61366..cc9a5d395e3 100644
--- a/app-admin/keepass/keepass-2.45.ebuild
+++ b/app-admin/keepass/keepass-2.45.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}-Source.zip"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="aot"
 
 COMMON_DEPEND="dev-lang/mono"



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

2020-06-28 Thread Thomas Deutschmann
commit: c30b37bab8470a1cfa8cb13520cf374c869ad695
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:41:28 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c30b37ba

dev-ruby/rrdtool-bindings: x86 stable (bug #685954)

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

 dev-ruby/rrdtool-bindings/rrdtool-bindings-1.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.7.2.ebuild 
b/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.7.2.ebuild
index c868c0d7746..ddafe5b470c 100644
--- a/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.7.2.ebuild
+++ b/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.7.2.ebuild
@@ -16,7 +16,7 @@ RUBY_S="$MY_P"/bindings/ruby
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
 IUSE="graph test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="test? ( graph )"



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

2020-06-28 Thread Thomas Deutschmann
commit: 4c9a8e3f0698c2b91e4a77559085f00b19eb33f2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:34:16 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9a8e3f

net-misc/bridge-utils: x86 stable (bug #703210)

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

 net-misc/bridge-utils/bridge-utils-1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/bridge-utils/bridge-utils-1.6.ebuild 
b/net-misc/bridge-utils/bridge-utils-1.6.ebuild
index f6d1fddf6e8..91fecbe3133 100644
--- a/net-misc/bridge-utils/bridge-utils-1.6.ebuild
+++ b/net-misc/bridge-utils/bridge-utils-1.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
 IUSE="selinux"
 
 DEPEND="virtual/os-headers"



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2020-06-28 Thread Thomas Deutschmann
commit: 53decd053b9d46934b4f1c1a9f5ff7c9976d7a5f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:36:07 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53decd05

media-tv/kodi: x86 stable (bug #725486)

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

 media-tv/kodi/kodi-18.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-tv/kodi/kodi-18.7.ebuild b/media-tv/kodi/kodi-18.7.ebuild
index 5ce29e2d19c..b73cbf49d2d 100644
--- a/media-tv/kodi/kodi-18.7.ebuild
+++ b/media-tv/kodi/kodi-18.7.ebuild
@@ -31,7 +31,7 @@ else
MY_PV=${MY_PV/_rc/rc}
MY_P="${PN}-${MY_PV}"
SRC_URI+=" 
https://github.com/xbmc/xbmc/archive/${MY_PV}-${CODENAME}.tar.gz -> 
${MY_P}.tar.gz"
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 x86"
S=${WORKDIR}/xbmc-${MY_PV}-${CODENAME}
 fi
 



[gentoo-commits] repo/gentoo:master commit in: virtual/os-headers/

2020-06-28 Thread Thomas Deutschmann
commit: 4970383a30578b89caab75fd3d8fc5d71f96531c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:40:27 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4970383a

virtual/os-headers: x86 stable (bug #729050)

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

 virtual/os-headers/os-headers-0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/os-headers/os-headers-0-r2.ebuild 
b/virtual/os-headers/os-headers-0-r2.ebuild
index 41dad4d8797..0b752af11a5 100644
--- a/virtual/os-headers/os-headers-0-r2.ebuild
+++ b/virtual/os-headers/os-headers-0-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for operating system headers"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # depend on SLOT 0 of linux-headers, because kernel-2.eclass
 # sets a different SLOT for cross-building



[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-servlet-api/

2020-06-28 Thread Thomas Deutschmann
commit: 9072d046540a7246ddc0bfafa3ddbc24b9d70fee
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:44:19 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9072d046

dev-java/tomcat-servlet-api: x86 stable (bug #729668)

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

 dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.56.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.56.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.56.ebuild
index 2fb70f36de1..4d0bf5c4de6 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.56.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.56.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://apache/tomcat/tomcat-8/v${PV}/src/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="3.1"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/jdk-1.8"



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

2020-06-28 Thread Thomas Deutschmann
commit: bb9e0ae3745909215b9d096d7ae58e91d40a3a0d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:37:35 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9e0ae3

net-misc/geoipupdate: x86 stable (bug #714692)

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

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

diff --git a/net-misc/geoipupdate/geoipupdate-4.3.0.ebuild 
b/net-misc/geoipupdate/geoipupdate-4.3.0.ebuild
index 462be06b846..337691eda77 100644
--- a/net-misc/geoipupdate/geoipupdate-4.3.0.ebuild
+++ b/net-misc/geoipupdate/geoipupdate-4.3.0.ebuild
@@ -53,7 +53,7 @@ SRC_URI="
 
 LICENSE="ISC BSD BSD-2 MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DOCS=( README.md CHANGELOG.md doc/GeoIP.conf.md doc/geoipupdate.md )
 



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/enigmail/

2020-06-28 Thread Thomas Deutschmann
commit: 5d4896e2aba4082aeb753b6a5775d3e3d0107c14
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:34:51 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d4896e2

x11-plugins/enigmail: x86 stable (bug #729952)

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

 x11-plugins/enigmail/enigmail-2.1.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/enigmail/enigmail-2.1.7.ebuild 
b/x11-plugins/enigmail/enigmail-2.1.7.ebuild
index 5bd7655b679..53f90a93be8 100644
--- a/x11-plugins/enigmail/enigmail-2.1.7.ebuild
+++ b/x11-plugins/enigmail/enigmail-2.1.7.ebuild
@@ -21,7 +21,7 @@ else
SRC_URI="https://www.enigmail.net/download/beta/${P/_/-}.tar.gz;
else
SRC_URI="https://www.enigmail.net/download/source/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ppc ppc64 ~x86 ~amd64-linux 
~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ppc ppc64 x86 ~amd64-linux 
~x86-linux"
fi
S="${WORKDIR}/${PN}"
 fi



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

2020-06-28 Thread Thomas Deutschmann
commit: 93908e4da637fa49f0e3cbdbb83282898323d471
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:38:43 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93908e4d

sys-process/lsof: x86 stable (bug #705600)

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

 sys-process/lsof/lsof-4.93.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/lsof/lsof-4.93.2-r1.ebuild 
b/sys-process/lsof/lsof-4.93.2-r1.ebuild
index b1ea3a47694..e7b81f284c5 100644
--- a/sys-process/lsof/lsof-4.93.2-r1.ebuild
+++ b/sys-process/lsof/lsof-4.93.2-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/lsof-org/lsof/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="lsof"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
s390 sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="examples ipv6 rpc selinux"
 
 RDEPEND="rpc? ( net-libs/libtirpc )



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

2020-06-28 Thread Thomas Deutschmann
commit: 8f6ffe804ef4ff86f5a28d66c8d008f53e7d87c3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:42:28 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f6ffe80

net-analyzer/rrdtool: x86 stable (bug #685954)

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

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

diff --git a/net-analyzer/rrdtool/rrdtool-1.7.2.ebuild 
b/net-analyzer/rrdtool/rrdtool-1.7.2.ebuild
index 94ea0b6aabc..84df9b0b661 100644
--- a/net-analyzer/rrdtool/rrdtool-1.7.2.ebuild
+++ b/net-analyzer/rrdtool/rrdtool-1.7.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://oss.oetiker.ch/rrdtool/pub/${MY_P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0/8.0.0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
 IUSE="dbi doc graph lua perl python rados rrdcgi ruby static-libs tcl tcpd"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2020-06-28 Thread Thomas Deutschmann
commit: a7cc9cac8bb4588e2b3cfa81205e7637641aaef0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:38:12 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7cc9cac

dev-libs/libressl: x86 stable (bug #727030)

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

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

diff --git a/dev-libs/libressl/libressl-3.1.3.ebuild 
b/dev-libs/libressl/libressl-3.1.3.ebuild
index ab31f204168..1df45e25a73 100644
--- a/dev-libs/libressl/libressl-3.1.3.ebuild
+++ b/dev-libs/libressl/libressl-3.1.3.ebuild
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either. However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/48"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="+asm static-libs test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="test? ( static-libs )"



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

2020-06-28 Thread Thomas Deutschmann
commit: 75f390d873822d193fa36898a943362bb9ac326d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:36:38 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75f390d8

virtual/libc: x86 stable (bug #729052)

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

 virtual/libc/libc-1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/libc/libc-1-r1.ebuild b/virtual/libc/libc-1-r1.ebuild
index 4f01ec9b5c1..1f322cb18b5 100644
--- a/virtual/libc/libc-1-r1.ebuild
+++ b/virtual/libc/libc-1-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for the C library"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # explicitly depend on SLOT 2.2 of glibc, because it sets
 # a different SLOT for cross-compiling



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

2020-06-28 Thread Thomas Deutschmann
commit: c814bf37434a389ec6f58d1d204d8cb394d3c7a7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jun 28 19:40:51 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jun 28 20:55:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c814bf37

net-misc/remmina: x86 stable (bug #724638)

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

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

diff --git a/net-misc/remmina/remmina-1.4.5.ebuild 
b/net-misc/remmina/remmina-1.4.5.ebuild
index 04a7d55f4b7..f10b2bdec82 100644
--- a/net-misc/remmina/remmina-1.4.5.ebuild
+++ b/net-misc/remmina/remmina-1.4.5.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls 
spice ssh rdp telepathy vnc webkit zeroconf"
 
 DEPEND="



  1   2   3   4   >