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

2019-12-12 Thread Joonas Niilola
commit: b7b0b24dae7d9a0f8b5a8447a3901560d6184040
Author: Felix Neumärker  posteo  de>
AuthorDate: Sat Dec  7 17:41:51 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Dec 12 17:53:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7b0b24d

www-apps/gitea: bump to 1.10.1

Closes: https://bugs.gentoo.org/689748
Closes: https://bugs.gentoo.org/702192

Package-Manager: Portage-2.3.80, Repoman-2.3.20
Signed-off-by: Felix Neumärker  posteo.de>
Signed-off-by: Joonas Niilola  gentoo.org>

 www-apps/gitea/Manifest|  2 +-
 .../{gitea-1.10.0.ebuild => gitea-1.10.1.ebuild}   | 25 ++
 www-apps/gitea/gitea-.ebuild   | 25 ++
 3 files changed, 33 insertions(+), 19 deletions(-)

diff --git a/www-apps/gitea/Manifest b/www-apps/gitea/Manifest
index cbef985343f..6a880b10aac 100644
--- a/www-apps/gitea/Manifest
+++ b/www-apps/gitea/Manifest
@@ -1,3 +1,3 @@
-DIST gitea-1.10.0.tar.gz 28905929 BLAKE2B 
ddf45483784ebf2d300d7f957e355f20c56e0e31825b3a290935ef9d8b7a2b0b154769b44eb270c9bb3165b8297cc1d8b51e9e660828eb95ab019b4857f8c37a
 SHA512 
3bd99ee7289b6a0035d0a6da868562692fa9941a4f14d7555044c06efc7165615dc95547713e352d5cfcd7817596a9f4b24c5fa28c90066f4586ccb44a637d08
+DIST gitea-1.10.1.tar.gz 30146802 BLAKE2B 
d566e58bc8031c6ff2741861c93deb1cc0bbe2236cfa8d1f054e1453d39b294ae55bd3bae46373efa39cd0b5bc9dfc248ecc0c64642eb4df68fb01042ef1c692
 SHA512 
d7baea6ac9aca3a3226d36325000c71c886d560eeecb2fdbed924b4924db34882cdd82d07120e3c7175a6d87140a1f63cc575c3be44513e08f8e557856b39acd
 DIST gitea-1.8.3.tar.gz 24320679 BLAKE2B 
9ef901ef7e1cb6ffa9a2aa082798b7a18ac2a6fdb4379082df3f942d767a27fd3915c7a4d2cb1af6f502a8cde3c1c98557c42d4c0ef60be7bdad78d8931035e0
 SHA512 
f6019fbfc056e4c7176222ccaca1cf638bd1f52323de54fcddc618129aeb778674f6e305de60e7d17b69505ad65439445ee6b5e368afdf0a6fbace7407acb495
 DIST gitea-1.9.5.tar.gz 25355286 BLAKE2B 
8b733651de64fcafa7b41a6fc812fcad8ac7311a7e7acc679ec7dab759175ec13a096902aece209a3fef31eefd3a99493e13f7c9792e1e41b5a1c3376680d3ca
 SHA512 
f7a04d3bb37a33da15290355f3f02ff4c1b737e8458cf65f731c870ac9e452243b1fdacc5f74accf963fb00cdd200dd31191058eb1d6dda8b1033846a961c7d3

diff --git a/www-apps/gitea/gitea-1.10.0.ebuild 
b/www-apps/gitea/gitea-1.10.1.ebuild
similarity index 80%
rename from www-apps/gitea/gitea-1.10.0.ebuild
rename to www-apps/gitea/gitea-1.10.1.ebuild
index ef0e2c0351e..ebc72d5057b 100644
--- a/www-apps/gitea/gitea-1.10.0.ebuild
+++ b/www-apps/gitea/gitea-1.10.1.ebuild
@@ -45,17 +45,24 @@ S="${WORKDIR}/${P}/src/${EGO_PN}"
 PATCHES=( "${FILESDIR}/gitea-logflags.patch" )
 
 gitea_make() {
-   local my_tags=(
+   local gitea_tags=(
bindata
$(usev pam)
$(usex sqlite 'sqlite sqlite_unlock_notify' '')
)
-   local my_makeopt=(
-   TAGS="${my_tags[@]}"
-   LDFLAGS="-extldflags \"${LDFLAGS}\""
+   local gitea_settings=(
+   "-X 
code.gitea.io/gitea/modules/setting.CustomConf=${EPREFIX}/etc/gitea/app.ini"
+   "-X 
code.gitea.io/gitea/modules/setting.CustomPath=${EPREFIX}/var/lib/gitea/custom"
+   "-X 
code.gitea.io/gitea/modules/setting.AppWorkPath=${EPREFIX}/var/lib/gitea"
)
-   [[ ${PV} != * ]] && my_makeopt+=("DRONE_TAG=${PV}")
-   GOPATH=${WORKDIR}/${P}:$(get_golibdir_gopath) emake "${my_makeopt[@]}" 
"$@"
+   local makeenv=(
+   TAGS="${gitea_tags[@]}"
+   LDFLAGS="-extldflags \"${LDFLAGS}\" ${gitea_settings[@]}"
+   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)"
+   )
+   [[ ${PV} != * ]] && makeenv+=("DRONE_TAG=${PV}")
+
+   env "${makeenv[@]}" emake "$@"
 }
 
 src_prepare() {
@@ -90,13 +97,13 @@ src_compile() {
 src_test() {
if has network-sandbox ${FEATURES}; then
einfo "Remove tests which are known to fail with 
network-sandbox enabled."
-   rm -rf ./modules/migrations/github_test.go
+   rm ./modules/migrations/github_test.go || die
fi
 
if [[ ${PV} != * ]] ; then
einfo "Remove tests which depend on gitea git-repo."
-   rm -rf ./modules/git/blob_test.go
-   rm -rf ./modules/git/repo_test.go
+   rm ./modules/git/blob_test.go || die
+   rm ./modules/git/repo_test.go || die
fi
 
default

diff --git a/www-apps/gitea/gitea-.ebuild b/www-apps/gitea/gitea-.ebuild
index 1fd7feaaff4..9e8bcf9c605 100644
--- a/www-apps/gitea/gitea-.ebuild
+++ b/www-apps/gitea/gitea-.ebuild
@@ -43,17 +43,24 @@ DOCS=( custom/conf/app.ini.sample CONTRIBUTING.md README.md 
)
 S="${WORKDIR}/${P}/src/${EGO_PN}"
 
 gitea_make() {
-   local my_tags=(
+   local gitea_tags=(
bindata
$(usev pam)
$(usex sqlite 'sqlite sqlite_unlock_notify' '')
)
-   local my_makeopt=(
-

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

2019-12-12 Thread Joonas Niilola
commit: 0d8a7c3498b64c4a681acbbc89a539457ce55aea
Author: Felix Neumärker  posteo  de>
AuthorDate: Sat Dec  7 17:42:20 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Dec 12 17:53:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d8a7c34

www-apps/gitea: remove 1.8.3

Package-Manager: Portage-2.3.80, Repoman-2.3.20
Signed-off-by: Felix Neumärker  posteo.de>
Closes: https://github.com/gentoo/gentoo/pull/13906
Signed-off-by: Joonas Niilola  gentoo.org>

 www-apps/gitea/Manifest   |   1 -
 www-apps/gitea/gitea-1.8.3.ebuild | 104 --
 2 files changed, 105 deletions(-)

diff --git a/www-apps/gitea/Manifest b/www-apps/gitea/Manifest
index 6a880b10aac..d33756c4087 100644
--- a/www-apps/gitea/Manifest
+++ b/www-apps/gitea/Manifest
@@ -1,3 +1,2 @@
 DIST gitea-1.10.1.tar.gz 30146802 BLAKE2B 
d566e58bc8031c6ff2741861c93deb1cc0bbe2236cfa8d1f054e1453d39b294ae55bd3bae46373efa39cd0b5bc9dfc248ecc0c64642eb4df68fb01042ef1c692
 SHA512 
d7baea6ac9aca3a3226d36325000c71c886d560eeecb2fdbed924b4924db34882cdd82d07120e3c7175a6d87140a1f63cc575c3be44513e08f8e557856b39acd
-DIST gitea-1.8.3.tar.gz 24320679 BLAKE2B 
9ef901ef7e1cb6ffa9a2aa082798b7a18ac2a6fdb4379082df3f942d767a27fd3915c7a4d2cb1af6f502a8cde3c1c98557c42d4c0ef60be7bdad78d8931035e0
 SHA512 
f6019fbfc056e4c7176222ccaca1cf638bd1f52323de54fcddc618129aeb778674f6e305de60e7d17b69505ad65439445ee6b5e368afdf0a6fbace7407acb495
 DIST gitea-1.9.5.tar.gz 25355286 BLAKE2B 
8b733651de64fcafa7b41a6fc812fcad8ac7311a7e7acc679ec7dab759175ec13a096902aece209a3fef31eefd3a99493e13f7c9792e1e41b5a1c3376680d3ca
 SHA512 
f7a04d3bb37a33da15290355f3f02ff4c1b737e8458cf65f731c870ac9e452243b1fdacc5f74accf963fb00cdd200dd31191058eb1d6dda8b1033846a961c7d3

diff --git a/www-apps/gitea/gitea-1.8.3.ebuild 
b/www-apps/gitea/gitea-1.8.3.ebuild
deleted file mode 100644
index bdefa9b6352..000
--- a/www-apps/gitea/gitea-1.8.3.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit golang-vcs-snapshot systemd user
-
-EGO_PN="code.gitea.io/gitea"
-
-DESCRIPTION="A painless self-hosted Git service"
-HOMEPAGE="https://gitea.io";
-SRC_URI="https://github.com/go-gitea/gitea/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64"
-IUSE="pam sqlite"
-
-COMMON_DEPEND="pam? ( sys-libs/pam )"
-DEPEND="${COMMON_DEPEND}
-   dev-go/go-bindata"
-RDEPEND="${COMMON_DEPEND}
-   dev-vcs/git"
-
-DOCS=( custom/conf/app.ini.sample CONTRIBUTING.md README.md )
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-pkg_setup() {
-   enewgroup git
-   enewuser git -1 /bin/bash /var/lib/gitea git
-}
-
-gitea_make() {
-   local my_tags=(
-   bindata
-   $(usev pam)
-   $(usex sqlite 'sqlite sqlite_unlock_notify' '')
-   )
-   local my_makeopt=(
-   DRONE_TAG=${PV}
-   TAGS="${my_tags[@]}"
-   )
-   GOPATH=${WORKDIR}/${P}:$(get_golibdir_gopath) emake "${my_makeopt[@]}" 
"$@"
-}
-
-src_prepare() {
-   default
-   sed -i \
-   -e "s#^RUN_MODE = dev#RUN_MODE = prod#" 
\
-   -e "s#^ROOT =#ROOT = 
${EPREFIX}/var/lib/gitea/gitea-repositories#"  \
-   -e "s#^ROOT_PATH =#ROOT_PATH = ${EPREFIX}/var/log/gitea#"   
\
-   -e "s#^APP_DATA_PATH = data#APP_DATA_PATH = 
${EPREFIX}/var/lib/gitea/data#" \
-   -e "s#^HTTP_ADDR = 0.0.0.0#HTTP_ADDR = 127.0.0.1#"  
\
-   -e "s#^MODE = console#MODE = file#" 
\
-   -e "s#^LEVEL = Trace#LEVEL = Info#" 
\
-   -e "s#^LOG_SQL = true#LOG_SQL = false#" 
\
-   -e "s#^DISABLE_ROUTER_LOG = false#DISABLE_ROUTER_LOG = true#"   
\
-   -e "s#^APP_ID =#;APP_ID =#" 
\
-   -e "s#^TRUSTED_FACETS =#;TRUSTED_FACETS =#" 
\
-   custom/conf/app.ini.sample || die
-   if use sqlite ; then
-   sed -i -e "s#^DB_TYPE = .*#DB_TYPE = sqlite3#" 
custom/conf/app.ini.sample || die
-   fi
-
-   gitea_make generate
-}
-
-src_compile() {
-   gitea_make build
-}
-
-src_test() {
-   gitea_make test
-}
-
-src_install() {
-   dobin gitea
-
-   einstalldocs
-
-   newconfd "${FILESDIR}"/gitea.confd-r1 gitea
-   newinitd "${FILESDIR}"/gitea.initd-r3 gitea
-   systemd_newunit "${FILESDIR}"/gitea.service-r2 gitea.service
-
-   insinto /etc/gitea
-   newins custom/conf/app.ini.sample app.ini
-   fowners root:git /etc/gitea/{,app.ini}
-   fperms g+w,o-rwx /etc/gitea/{,app.ini}
-
-   diropts -m0750 -o git -g git
-   keepdir /v

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

2019-12-12 Thread Joonas Niilola
commit: 06820a4cd37751383540d88bb802d8523dbe69ab
Author: Randy Barlow  electronsweatshop  com>
AuthorDate: Wed Dec 11 20:23:00 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Dec 12 17:53:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06820a4c

app-misc/rpick: Update to 0.5.0

https://gitlab.com/bowlofeggs/rpick/blob/0.5.0/CHANGELOG.md

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Randy Barlow  electronsweatshop.com>
Closes: https://github.com/gentoo/gentoo/pull/13950
Signed-off-by: Joonas Niilola  gentoo.org>

 app-misc/rpick/Manifest   | 26 +++
 app-misc/rpick/rpick-0.5.0.ebuild | 97 +++
 2 files changed, 123 insertions(+)

diff --git a/app-misc/rpick/Manifest b/app-misc/rpick/Manifest
index 47573410834..65088024787 100644
--- a/app-misc/rpick/Manifest
+++ b/app-misc/rpick/Manifest
@@ -1,6 +1,7 @@
 DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST arrayref-0.3.5.crate 7644 BLAKE2B 
d1dae7b54208b842155dc77c226236bfa3fd671fad39a101246f4b1496d28608e657fcb96fc8447ba5b0835260484b46ff35e2fdac8e092a0b5b79646ff39d18
 SHA512 
6417e092a896e118a69e219f4e40f94756748986769e24ac233ea33a3a0a6e15fbebec5f4d6dc3592da7eb5b2e572cb28ad330838875323c6e925275b5a3f5b8
 DIST arrayvec-0.4.12.crate 26551 BLAKE2B 
45514f09f0fd1fae7afb7dc812142ac8d88d1f4b81901db405c79dbeba2d29fea13ec22cb08a43433321931295a9f14456a300e814431b8fb14037d2f47529e9
 SHA512 
c03972056ab8fa30fc53fdc2bfc5e501f7644223998eccb73fdc2e737f7e25f4bb0e531f3eec38f7f3514760fb385fafd06c3d38531d13d92faf841820d4ed2b
+DIST arrayvec-0.5.1.crate 26816 BLAKE2B 
172dab8f0129134dfc89c6032c5fc15e2f86a5cd1e5be18b87fe2108d18a1bdb0f597a6ed4cd214dc663fbfb27b05c66846fba4543b5e068b5c75d075bdc5bff
 SHA512 
53db2fafea1f60ac1af9ecc0bc9b69010e9f8573048481d55969ecdc9f3d19832fe05824acf10a0186b0464f0fbfe898d73500fba39ed63650c64dac2c2e8043
 DIST atty-0.2.13.crate 4764 BLAKE2B 
673eea1d377fc3aca792a3a8bd2a5c058f3041abc76a8760dd6acab7f19fa610f812c57d81a4dbf773675cad3df483904c66e66b45d83393402f747c6db60d89
 SHA512 
4554ca7dedb4c2e8693e5847ef1fe66161ed4cb2c19156bb03f41ce7e7ea21838369dabaf447a60d1468de8bfbb7087438c12934c4569dde63df074f168569ad
 DIST autocfg-0.1.7.crate 12158 BLAKE2B 
4120306f0f7c1cc0cf8d1d994c080cbf42e4b107cb51af910504c8c8d264289654dad23a0c6b9eb28d888157e5a68ef2460c3d38537ae9d5e9bf73b66ffc3015
 SHA512 
667ca520f2b46140d2f3519b43e5155426a6e7a2130879860eb10b974f84465600077f53abed4c0e6bf2612471f01786bfb3531ea8773d0f50f29d48e05f7925
 DIST backtrace-0.3.40.crate 68183 BLAKE2B 
e1c01acc706617c66558dcd3ed1ebc33bf3fe56d03ecd5ec00eb78df3d5fa745cd899108a779894396636da461ad7a2775f6d77cd35fa96f97181f3e80694a5e
 SHA512 
8b9da3d6c515ef7bc5b04cf4abd53221cc114c912eb5033558b1c45eb6d85e56c0fc39579711fcd26f69fa364a823945901e4c2e5560436013b7523adf267d27
@@ -8,58 +9,83 @@ DIST backtrace-sys-0.1.32.crate 518920 BLAKE2B 
fbbd3b59533830400a788fd117ced4746
 DIST base64-0.10.1.crate 41988 BLAKE2B 
6e28a70cc0d5e426d9a3944825952851928ec2e32fa2543a8e1d1b886ad306f38fd6e673da62e96581e56613f133265feeff5b0d2f1e2e34593e58c0424eee9e
 SHA512 
674a8cbee95a41f755499a4e3bb93ebd3f80140c3e8e2d44a0b73890ee423754e7ba8abcd92132683cd54501ff5d14438d023a202eaf12776aecbe36df9e5535
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
 DIST blake2b_simd-0.5.8.crate 33581 BLAKE2B 
491545f71cd215f6fe92b172c25ac3773dc1dadb87b16d764d91b30630251f6132981be7779756b2a1fec00d4afc83ae9d042cd6a1e6e6a7822efd303a3f1d6d
 SHA512 
6c92941e411f957b5f2c02f1905380f55ed0f0313e22dd9d29fbbc85ba18accd06e2a8e7de01809e5fa7258a960f9545d3410613836b1dd3a26f0719d01d3bd2
+DIST blake2b_simd-0.5.9.crate 33575 BLAKE2B 
f5bd6efad39b7727bdf033bea9796eb0eb24ffdcccf9d9682c22942a5acfac6c566377f635e3030d2ec9cea05129632627c1906031a1c395744c787354e4948c
 SHA512 
cb7ea3db1911976e48fbf64df4c9dd071d26f54b95d4f14adae2767bd18e5b7948a4f908bf9e5fbecc6e17d4849b878262cd8144d07c04e2d0745fa644ecd19e
 DIST byteorder-1.3.2.crate 21596 BLAKE2B 
2ac70cff46af36e96b8b41c3adf9e09134af4d3d5b17c14233047fc3b70c829bffe6c129def84f529c1017ab2882c1bb66e86eab7b749a0d40daf2650da85d0a
 SHA512 
2ef6b986926a4671dd945583730b0bfd4bd5e75b62a8a70c2875328157ba95f2c1b17c534d905e9b287457bd34363c1a33fd3dee9217c371032393ebbe206a8f
+DIST c2-chacha-0.2.3.crate 13336 BLAKE2B 
0b548907ce4c9ee502ec96307ca003d168e8bcf9007ec667661d158f33de36fc2e832cb3c36cadc2523f6ba8b9aeff4dcb16e7f95a9a34ae02e8bd5d00f65cf2
 SHA512 
302498f75d1befdb8bf8b61d0eff2762f0e86000c3909d819a377be2fec72e

[gentoo-commits] repo/gentoo:master commit in: www-apps/davical/files/, www-apps/davical/

2019-12-12 Thread Joonas Niilola
commit: 1bdaf4d2d4310bb4ff3455d9f3c0c062437252a0
Author: Till Schäfer  uni-dortmund  de>
AuthorDate: Thu Dec 12 15:44:34 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Dec 12 17:53:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bdaf4d2

www-apps/davical: remove vulnerable versions

Bug: https://bugs.gentoo.org/702514
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Till Schäfer  uni-dortmund.de>
Closes: https://github.com/gentoo/gentoo/pull/13956
Signed-off-by: Joonas Niilola  gentoo.org>

 www-apps/davical/Manifest  |  2 -
 www-apps/davical/davical-1.1.7-r2.ebuild   | 72 --
 www-apps/davical/davical-1.1.8.ebuild  | 70 -
 ...davical-1.1.7-fix_php4_style_constructors.patch | 39 
 4 files changed, 183 deletions(-)

diff --git a/www-apps/davical/Manifest b/www-apps/davical/Manifest
index afcd675cdd1..e1b7f493235 100644
--- a/www-apps/davical/Manifest
+++ b/www-apps/davical/Manifest
@@ -1,3 +1 @@
-DIST davical-1.1.7.tar.xz 1347368 BLAKE2B 
74418e99190db94dbb95fe9bdbed8f468cf98070a6ef86cb5af1f6460a97eb8c2faede7858a38b9728c5b3e400c6340f1abf3f00ae757847d8996b22e709f70e
 SHA512 
d66388479259a8369f3a648a9d81f1e2f5488f6a3c4415360c133b21b6c6d4b4d433d5f94a635cffdaa0385a56c24176fa660ee8653d75246604655ccdd1a455
-DIST davical-1.1.8.tar.xz 1358060 BLAKE2B 
9b38081981e876bfdb025bfb5cbd57843645e399df0816658c395ab8c2447809930596a4adcc7bb30f357435735a435c75b03431505eec24fd5adb270845fc39
 SHA512 
e4a81a80086cdb67af47202865ad1652e83f276d2b82fc80b8bff60682027c911f252b1f32008269c77147462ec21886eae78fb3b5d4247b747fb9c4d1e6
 DIST davical-1.1.9.2.tar.xz 1359636 BLAKE2B 
6161e98dc4683310ec51ca1272f4869dd56711f6bd2f3aadf4481c847056c060a7d2811368587aea42377ff27ccdbaf0095d4fd915aec7c5b766fd7e073d25ef
 SHA512 
025f6600fde809ef95708197e62523b400e06a187461221a4fa86326ebef2452857b1d433c25b0b50ee56df89040aec733fc597d8f966ab22720a8ce38a0f5b2

diff --git a/www-apps/davical/davical-1.1.7-r2.ebuild 
b/www-apps/davical/davical-1.1.7-r2.ebuild
deleted file mode 100644
index 9d2ef12cb2f..000
--- a/www-apps/davical/davical-1.1.7-r2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit webapp
-
-DESCRIPTION="A CalDAV and CardDAV Server"
-HOMEPAGE="https://www.davical.org/";
-SRC_URI="https://www.davical.org/downloads/${PN}_${PV}.orig.tar.xz -> 
${P}.tar.xz"
-
-LICENSE="GPL-2 GPL-2+ GPL-3+ LGPL-2.1+ LGPL-3+"
-KEYWORDS="~amd64 ~x86"
-IUSE="ldap"
-
-BDEPEND="sys-devel/gettext"
-
-RDEPEND="app-admin/pwgen
-   dev-lang/php:*[calendar,curl,iconv,imap,ldap?,nls,pdo,postgres,xml]
-   dev-perl/DBD-Pg
-   dev-perl/DBI
-   dev-perl/YAML
-   >=dev-php/awl-0.59
-   virtual/httpd-php"
-
-need_httpd
-
-PATCHES=( "${FILESDIR}/${P}-fix_php4_style_constructors.patch" )
-
-S="${WORKDIR}"
-
-src_compile() {
-   emake built-locale
-}
-
-src_install() {
-   webapp_src_preinst
-
-   einstalldocs
-
-   einfo "Installing web files"
-   insinto "${MY_HTDOCSDIR}"
-   doins -r htdocs/. htdocs/.htaccess
-
-   einfo "Installing main files and i18n"
-   insinto "${MY_HOSTROOTDIR}/${PN}"
-   doins -r inc locale
-   rm "${ED}/${MY_HOSTROOTDIR}/${PN}/inc/always.php.in" || die
-
-   einfo "Installing sql files"
-   insinto "${MY_SQLSCRIPTSDIR}"
-   doins -r dba/.
-
-   insinto /etc/${PN}
-   doins -r config/. "${FILESDIR}/vhost-example"
-
-   webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"
-   webapp_postupgrade_txt en "${FILESDIR}/postupgrade-en.txt"
-   webapp_src_install
-
-   fperms +x "${MY_SQLSCRIPTSDIR}/create-database.sh"
-   fperms +x "${MY_SQLSCRIPTSDIR}/update-davical-database"
-}
-
-pkg_postinst() {
-   elog "If you are upgrading from a previous version of davical, don't 
forget to"
-   elog "upgrade the database structure with"
-   elog "   cd /usr/share/webapps/davical/${PVR}/sqlscripts/"
-   elog "   ./update-davical-database -dbuser xxx -appuser xx"
-
-   webapp_pkg_postinst
-}

diff --git a/www-apps/davical/davical-1.1.8.ebuild 
b/www-apps/davical/davical-1.1.8.ebuild
deleted file mode 100644
index b7cc044e06d..000
--- a/www-apps/davical/davical-1.1.8.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit webapp
-
-DESCRIPTION="A CalDAV and CardDAV Server"
-HOMEPAGE="https://www.davical.org/";
-SRC_URI="https://www.davical.org/downloads/${PN}_${PV}.orig.tar.xz -> 
${P}.tar.xz"
-
-LICENSE="GPL-2 GPL-2+ GPL-3+ LGPL-2.1+ LGPL-3+"
-KEYWORDS="~amd64 ~x86"
-IUSE="ldap"
-
-BDEPEND="sys-devel/gettext"
-
-RDEPEND="app-admin/pwgen
-   dev-lang/php:*[calendar,curl,iconv,imap,ldap?,nls,pdo,postgres,xml]
-   dev-perl/DBD-P

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

2019-12-12 Thread Joonas Niilola
commit: aea06c8894b23d176eb59456cc31f28376d507af
Author: Till Schäfer  uni-dortmund  de>
AuthorDate: Thu Dec 12 15:38:44 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Dec 12 17:53:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aea06c88

www-apps/davical: bump to 1.1.9.2

Bug: https://bugs.gentoo.org/702514
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Till Schäfer  uni-dortmund.de>
Signed-off-by: Joonas Niilola  gentoo.org>

 www-apps/davical/Manifest   |  1 +
 www-apps/davical/davical-1.1.9.2.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/www-apps/davical/Manifest b/www-apps/davical/Manifest
index b6ad08ca438..afcd675cdd1 100644
--- a/www-apps/davical/Manifest
+++ b/www-apps/davical/Manifest
@@ -1,2 +1,3 @@
 DIST davical-1.1.7.tar.xz 1347368 BLAKE2B 
74418e99190db94dbb95fe9bdbed8f468cf98070a6ef86cb5af1f6460a97eb8c2faede7858a38b9728c5b3e400c6340f1abf3f00ae757847d8996b22e709f70e
 SHA512 
d66388479259a8369f3a648a9d81f1e2f5488f6a3c4415360c133b21b6c6d4b4d433d5f94a635cffdaa0385a56c24176fa660ee8653d75246604655ccdd1a455
 DIST davical-1.1.8.tar.xz 1358060 BLAKE2B 
9b38081981e876bfdb025bfb5cbd57843645e399df0816658c395ab8c2447809930596a4adcc7bb30f357435735a435c75b03431505eec24fd5adb270845fc39
 SHA512 
e4a81a80086cdb67af47202865ad1652e83f276d2b82fc80b8bff60682027c911f252b1f32008269c77147462ec21886eae78fb3b5d4247b747fb9c4d1e6
+DIST davical-1.1.9.2.tar.xz 1359636 BLAKE2B 
6161e98dc4683310ec51ca1272f4869dd56711f6bd2f3aadf4481c847056c060a7d2811368587aea42377ff27ccdbaf0095d4fd915aec7c5b766fd7e073d25ef
 SHA512 
025f6600fde809ef95708197e62523b400e06a187461221a4fa86326ebef2452857b1d433c25b0b50ee56df89040aec733fc597d8f966ab22720a8ce38a0f5b2

diff --git a/www-apps/davical/davical-1.1.9.2.ebuild 
b/www-apps/davical/davical-1.1.9.2.ebuild
new file mode 100644
index 000..b7cc044e06d
--- /dev/null
+++ b/www-apps/davical/davical-1.1.9.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit webapp
+
+DESCRIPTION="A CalDAV and CardDAV Server"
+HOMEPAGE="https://www.davical.org/";
+SRC_URI="https://www.davical.org/downloads/${PN}_${PV}.orig.tar.xz -> 
${P}.tar.xz"
+
+LICENSE="GPL-2 GPL-2+ GPL-3+ LGPL-2.1+ LGPL-3+"
+KEYWORDS="~amd64 ~x86"
+IUSE="ldap"
+
+BDEPEND="sys-devel/gettext"
+
+RDEPEND="app-admin/pwgen
+   dev-lang/php:*[calendar,curl,iconv,imap,ldap?,nls,pdo,postgres,xml]
+   dev-perl/DBD-Pg
+   dev-perl/DBI
+   dev-perl/YAML
+   >=dev-php/awl-0.60
+   virtual/httpd-php"
+
+need_httpd
+
+S="${WORKDIR}"
+
+src_compile() {
+   emake built-locale
+}
+
+src_install() {
+   webapp_src_preinst
+
+   einstalldocs
+
+   einfo "Installing web files"
+   insinto "${MY_HTDOCSDIR}"
+   doins -r htdocs/. htdocs/.htaccess
+
+   einfo "Installing main files and i18n"
+   insinto "${MY_HOSTROOTDIR}/${PN}"
+   doins -r inc locale
+   rm "${ED}/${MY_HOSTROOTDIR}/${PN}/inc/always.php.in" || die
+
+   einfo "Installing sql files"
+   insinto "${MY_SQLSCRIPTSDIR}"
+   doins -r dba/.
+
+   insinto /etc/${PN}
+   doins -r config/. "${FILESDIR}/vhost-example"
+
+   webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"
+   webapp_postupgrade_txt en "${FILESDIR}/postupgrade-en.txt"
+   webapp_src_install
+
+   fperms +x "${MY_SQLSCRIPTSDIR}/create-database.sh"
+   fperms +x "${MY_SQLSCRIPTSDIR}/update-davical-database"
+}
+
+pkg_postinst() {
+   elog "If you are upgrading from a previous version of davical, don't 
forget to"
+   elog "upgrade the database structure with"
+   elog "   cd /usr/share/webapps/davical/${PVR}/sqlscripts/"
+   elog "   ./update-davical-database -dbuser xxx -appuser xx"
+
+   webapp_pkg_postinst
+}



[gentoo-commits] proj/kde:master commit in: kde-apps/akonadi/

2019-12-12 Thread Andreas Sturmlechner
commit: 08ce1d718d494f6daf046cee6e1f747722fb1a4e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Dec 11 19:10:23 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 18:13:07 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=08ce1d71

kde-apps/akonadi: Drop unused DEPEND

Upstream commit 254f2ec442f156ee2a34fa63cdcde4a016595449

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

 kde-apps/akonadi/akonadi-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-apps/akonadi/akonadi-.ebuild 
b/kde-apps/akonadi/akonadi-.ebuild
index 67819868e3..353eafc9b5 100644
--- a/kde-apps/akonadi/akonadi-.ebuild
+++ b/kde-apps/akonadi/akonadi-.ebuild
@@ -29,7 +29,6 @@ COMMON_DEPEND="
>=dev-qt/qtsql-${QTMIN}:5[mysql?,postgres?]
>=dev-qt/qtwidgets-${QTMIN}:5
>=dev-qt/qtxml-${QTMIN}:5
-   >=kde-frameworks/kcompletion-${KFMIN}:5
>=kde-frameworks/kconfig-${KFMIN}:5
>=kde-frameworks/kconfigwidgets-${KFMIN}:5
>=kde-frameworks/kcoreaddons-${KFMIN}:5



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

2019-12-12 Thread Andreas Sturmlechner
commit: 733a30a415017e0712139b546537ee3a40874875
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 18:22:58 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 18:22:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=733a30a4

net-libs/accounts-qml: Add missing dependency

Closes: https://bugs.gentoo.org/702380
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../accounts-qml/{accounts-qml-0.7.ebuild => accounts-qml-0.7-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-libs/accounts-qml/accounts-qml-0.7.ebuild 
b/net-libs/accounts-qml/accounts-qml-0.7-r1.ebuild
similarity index 98%
rename from net-libs/accounts-qml/accounts-qml-0.7.ebuild
rename to net-libs/accounts-qml/accounts-qml-0.7-r1.ebuild
index b5307447aaa..7bdabd41a8e 100644
--- a/net-libs/accounts-qml/accounts-qml-0.7.ebuild
+++ b/net-libs/accounts-qml/accounts-qml-0.7-r1.ebuild
@@ -21,6 +21,7 @@ RDEPEND="
dev-qt/qtcore:5
dev-qt/qtdeclarative:5
net-libs/accounts-qt
+   net-libs/signond
 "
 DEPEND="${RDEPEND}
test? (



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

2019-12-12 Thread Andreas Sturmlechner
commit: 29107749fb6fd7f713985cc7d4f551c5b478ca74
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 18:41:18 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 18:41:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29107749

profiles: Drop obsolete dev-python/pycdio package.mask

Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 0392c5646bb..9eb6f6d0417 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -216,7 +216,6 @@ dev-python/python-cdb
 dev-python/foolscap
 net-fs/tahoe-lafs
 dev-python/pyvtk
-

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

2019-12-12 Thread Andreas Sturmlechner
commit: 424df8c915d834ad80db97b6f3434063ccd6fd57
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 18:41:03 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 18:41:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=424df8c9

dev-python/pycdio: Drop 0.20-r1 and 2.0.0

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

 dev-python/pycdio/Manifest  |  2 --
 dev-python/pycdio/pycdio-0.20-r1.ebuild | 43 ---
 dev-python/pycdio/pycdio-2.0.0.ebuild   | 45 -
 3 files changed, 90 deletions(-)

diff --git a/dev-python/pycdio/Manifest b/dev-python/pycdio/Manifest
index 6cfe1b0d236..2a11f3cf007 100644
--- a/dev-python/pycdio/Manifest
+++ b/dev-python/pycdio/Manifest
@@ -1,3 +1 @@
-DIST pycdio-0.20.tar.gz 197736 BLAKE2B 
98ca603dba80a13dc3d1805869e190b9defa1a5c50b398ac4c7122629101df92ca8ad0071101bd8d53cbf48f41211017350a89944944028052899911b32d54e8
 SHA512 
b53a535440008dc637b31fd2cda22845c91b98e78c30f90c866af3b9bf7cb3faad39f0784b5063a39bd97bb18fc58c75ad0833d53421182d408c2889c491846b
-DIST pycdio-2.0.0.tar.gz 242131 BLAKE2B 
cbe014ea42ecf2b84f736d4b714f0fa76c94b10e0b16da148334521ac4a141db606793be541ee532b7542e58256377bbc6139945232942ef2ef0beeda4b66ef5
 SHA512 
b73d49e143e4b5ebf5e8514d526a57f71d004b9ce4298743bb109902ee9551fa586384a236b26da9cd86284b2aa8c31fb02a324a1cebc03f2071d06fbd3e3285
 DIST pycdio-2.1.0.tar.gz 241434 BLAKE2B 
eb981fdf52b205e14c6dd353ac4aca9a9e82dba6967a53b9059f8a265ef80832fe7236d68b2af7a6e408665fce0f5ed3541289e0b7d282834c4feb8e6b428fc4
 SHA512 
dc18fbd212f7040b8b06efaf263b17568e9c2d089cff7dfc4dda50a7225059e44c9c86e2d81ade92cf09c823f7189b5723fb601cb12f0884dc04e9f5418c5927

diff --git a/dev-python/pycdio/pycdio-0.20-r1.ebuild 
b/dev-python/pycdio/pycdio-0.20-r1.ebuild
deleted file mode 100644
index 3e7c2067889..000
--- a/dev-python/pycdio/pycdio-0.20-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 flag-o-matic
-
-DESCRIPTION="Python OO interface to libcdio (CD Input and Control library)"
-HOMEPAGE="https://savannah.gnu.org/projects/libcdio/ 
https://pypi.org/project/pycdio/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-RDEPEND=">=dev-libs/libcdio-0.90"
-DEPEND="${RDEPEND}
-   dev-lang/swig
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-
-RESTRICT="test"  # currently tests fail
-
-python_prepare_all() {
-   append-cflags -fno-strict-aliasing
-   # Remove obsolete sys.path and adjust 'data' paths in examples.
-   sed -i \
-   -e "s:^sys.path.insert.*::" \
-   -e "s:\.\./data:./data:g" \
-   example/*.py || die
-
-   # Disable failing tests.
-   sed -i -e "s/test_get_set/_&/" test/test-cdtext.py || die
-   sed -i -e "s/test_fs/_&/" test/test-isocopy.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_install_all(){
-   use examples && local EXAMPLES=( example/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/pycdio/pycdio-2.0.0.ebuild 
b/dev-python/pycdio/pycdio-2.0.0.ebuild
deleted file mode 100644
index dbde3585e0e..000
--- a/dev-python/pycdio/pycdio-2.0.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 flag-o-matic
-
-DESCRIPTION="Python OO interface to libcdio (CD Input and Control library)"
-HOMEPAGE="https://savannah.gnu.org/projects/libcdio/ 
https://pypi.org/project/pycdio/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-RDEPEND=">=dev-libs/libcdio-2.0.0"
-
-DEPEND="
-   ${RDEPEND}
-   dev-lang/swig
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-
-RESTRICT="test"  # currently tests fail
-
-python_prepare_all() {
-   append-cflags -fno-strict-aliasing
-   # Remove obsolete sys.path and adjust 'data' paths in examples.
-   sed -i \
-   -e "s:^sys.path.insert.*::" \
-   -e "s:\.\./data:./data:g" \
-   example/*.py || die
-
-   # Disable failing tests.
-   sed -i -e "s/test_get_set/_&/" test/test-cdtext.py || die
-   sed -i -e "s/test_fs/_&/" test/test-isocopy.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_install_all(){
-   use examples && local EXAMPLES=( example/. )
-   distutils-r1_python_install_all
-}



[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/

2019-12-12 Thread Matthias Maier
commit: 8f02a3af6e54794f67c8ca97e76484ab36e97a7d
Author: Matthias Maier  gentoo  org>
AuthorDate: Thu Dec 12 19:22:48 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Dec 12 19:22:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f02a3af

app-doc/doxygen: fix git build dep; synchronize live ebuild

Closes: https://bugs.gentoo.org/698870
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Matthias Maier  gentoo.org>

 app-doc/doxygen/doxygen-1.8.16.ebuild | 2 ++
 app-doc/doxygen/doxygen-.ebuild   | 8 
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/app-doc/doxygen/doxygen-1.8.16.ebuild 
b/app-doc/doxygen/doxygen-1.8.16.ebuild
index 7b7f2f933b7..98f6fa74904 100644
--- a/app-doc/doxygen/doxygen-1.8.16.ebuild
+++ b/app-doc/doxygen/doxygen-1.8.16.ebuild
@@ -11,6 +11,7 @@ if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/doxygen/doxygen.git";
SRC_URI=""
+   KEYWORDS=""
 else
SRC_URI="http://doxygen.nl/files/${P}.src.tar.gz";
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
@@ -108,6 +109,7 @@ src_configure() {
-Dbuild_search=$(usex doxysearch)
-Dbuild_wizard=$(usex qt5)
-Duse_sqlite3=$(usex sqlite)
+   -DGIT_EXECUTABLE="false"
)
use doc && mycmakeargs+=(
-DDOC_INSTALL_DIR="share/doc/${P}"

diff --git a/app-doc/doxygen/doxygen-.ebuild 
b/app-doc/doxygen/doxygen-.ebuild
index ba29bb09a4a..776ebc3469f 100644
--- a/app-doc/doxygen/doxygen-.ebuild
+++ b/app-doc/doxygen/doxygen-.ebuild
@@ -13,9 +13,8 @@ if [[ ${PV} = ** ]]; then
SRC_URI=""
KEYWORDS=""
 else
-   
SRC_URI="https://github.com/doxygen/doxygen/archive/Release_${PV//\./_}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x86-solaris"
-   S="${WORKDIR}/${PN}-Release_${PV//\./_}"
+   SRC_URI="http://doxygen.nl/files/${P}.src.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="Documentation system for most programming languages"
@@ -34,7 +33,7 @@ RDEPEND="app-text/ghostscript-gpl
media-gfx/graphviz
media-libs/freetype
)
-   doxysearch? ( dev-libs/xapian )
+   doxysearch? ( dev-libs/xapian:= )
latex? (
dev-texlive/texlive-bibtexextra
dev-texlive/texlive-fontsextra
@@ -104,6 +103,7 @@ src_configure() {
-Dbuild_search=$(usex doxysearch)
-Dbuild_wizard=$(usex qt5)
-Duse_sqlite3=$(usex sqlite)
+   -DGIT_EXECUTABLE="false"
)
use doc && mycmakeargs+=(
-DDOC_INSTALL_DIR="share/doc/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/files/, app-doc/doxygen/

2019-12-12 Thread Matthias Maier
commit: 7e46810c2d4eaeaba6e7ce1d2d888e0b2e9fae68
Author: Matthias Maier  gentoo  org>
AuthorDate: Thu Dec 12 19:05:15 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Dec 12 19:13:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e46810c

app-doc/doxygen: try to fix ghostscript compatibility

Bug: https://bugs.gentoo.org/695710
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Matthias Maier  gentoo.org>

 app-doc/doxygen/doxygen-1.8.16.ebuild  |  1 +
 ...oxygen-1.8.16-ghostscript-compatilibility.patch | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/app-doc/doxygen/doxygen-1.8.16.ebuild 
b/app-doc/doxygen/doxygen-1.8.16.ebuild
index 33dcae69729..7b7f2f933b7 100644
--- a/app-doc/doxygen/doxygen-1.8.16.ebuild
+++ b/app-doc/doxygen/doxygen-1.8.16.ebuild
@@ -62,6 +62,7 @@ PATCHES=(
"${FILESDIR}/${PN}-1.8.9.1-empty-line-sigsegv.patch" #454348
"${FILESDIR}/${PN}-1.8.16-link_with_pthread.patch"
"${FILESDIR}/${PN}-1.8.15-llvm7.patch" #92
+   "${FILESDIR}/${PN}-1.8.16-ghostscript-compatilibility.patch" #695710
 )
 
 DOCS=( LANGUAGE.HOWTO README.md )

diff --git 
a/app-doc/doxygen/files/doxygen-1.8.16-ghostscript-compatilibility.patch 
b/app-doc/doxygen/files/doxygen-1.8.16-ghostscript-compatilibility.patch
new file mode 100644
index 000..55445fa19dc
--- /dev/null
+++ b/app-doc/doxygen/files/doxygen-1.8.16-ghostscript-compatilibility.patch
@@ -0,0 +1,39 @@
+From f08e87623368134c6541af12995b811ef9aff069 Mon Sep 17 00:00:00 2001
+From: albert-github 
+Date: Tue, 12 Nov 2019 11:42:22 +0100
+Subject: [PATCH] issue #7290 error: Problem running ghostscript gs -q -g562x56
+ -r384x384x -sDEVICE=ppmraw -sOutputFile=_form0.pnm -dNOPAUSE -dBATCH --
+ _form0.ps. Check your installation!
+
+@maehr had a talk with Robin Watts and Ken Sharp at IRC and there seem to be 
basically 3 different problems:
+* `-r%dx%d` (the dimension for `r` shouldn't be `-r384x384x`, but `-r384x384`),
+* misuse / unnecessary use of `--` and
+* since 9.50 the command needs more control access (that might be worked 
around by either whitelisting the file via `--permit-file-read=_form0.eps` 
(only works from 9.50 and upwards) or generally accepting any file with 
`-dNOSAFER` (works since quite some time). The second option is considered to 
be unsafe if we would process any file, but in this case we process self 
produced / controlled files. I don't know if doxygen has any threat model that 
it assumes. ).
+
+> Ken Sharp: Yeah the %dx is wrong, as Robin says its sheer luck that works
+the -- isn't needed and is what's causing the first problem
+and file control is the new bugbear
+
+The suggestions have been implemented and test / docs works now with old and 
new version.
+---
+ src/formula.cpp | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/formula.cpp b/src/formula.cpp
+index 534f56ac..3d8e6ce1 100644
+--- a/src/formula.cpp
 b/src/formula.cpp
+@@ -193,8 +193,8 @@ void FormulaList::generateBitmaps(const char *path)
+   // used.  
+ 
+   char gsArgs[4096];
+-  sprintf(gsArgs,"-q -g%dx%d -r%dx%dx -sDEVICE=ppmraw "
+-"-sOutputFile=%s.pnm -dNOPAUSE -dBATCH -- %s.ps",
++  sprintf(gsArgs,"-q -g%dx%d -r%dx%d -sDEVICE=ppmraw "
++"-sOutputFile=%s.pnm -dNOPAUSE -dBATCH -dNOSAFER %s.ps",
+ gx,gy,(int)(scaleFactor*72),(int)(scaleFactor*72),
+ formBase.data(),formBase.data()
+  );
+-- 
+2.24.1
+



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

2019-12-12 Thread Aaron Bauman
commit: 03a078339ad3dfe586c668d8d7596634eb68847c
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Dec 12 19:24:33 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 19:24:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03a07833

dev-python/pysvg: drop old Py2 only version

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

 dev-python/pysvg/Manifest   |  1 -
 dev-python/pysvg/pysvg-0.2.2.ebuild | 17 -
 2 files changed, 18 deletions(-)

diff --git a/dev-python/pysvg/Manifest b/dev-python/pysvg/Manifest
index 502f3a2bb29..87c3ca7af8a 100644
--- a/dev-python/pysvg/Manifest
+++ b/dev-python/pysvg/Manifest
@@ -1,2 +1 @@
-DIST pysvg-0.2.2.zip 623804 BLAKE2B 
c3fbbc6b62e80087059331f5af84b4da57a71aced8ee23764b5eb4d43e3c38dbba9b5df14294ff6b6c4af4f679dec5307295d1887fcfa64730d1979d1b4fcf48
 SHA512 
f0e39903f4290a0615ca7531ccc242b27086b639b2940b53ae185ff354843e56b184c1d1dbf63f0df4f9f9700c4224e878810354a0f0c77bcbb9efd1b4ac2f17
 DIST pysvg-py3-0.2.2.post3.tar.gz 23436 BLAKE2B 
a1f0ff710b73dd2e82811d322aa6365583febe8c9e7d690221690d285f94b3d0ae3f74e47b0e0ef236e389f0621ce5ad61ba00329a306c30a81cab0e77ee29db
 SHA512 
3b0e30401ff9481df3fa5fde5b1e338bbabb86cdb846a11c08e8138563268311e20a4ce5317e5a31c337f2b8c5a3debb7abf8e0188e798e455378a363b31c95d

diff --git a/dev-python/pysvg/pysvg-0.2.2.ebuild 
b/dev-python/pysvg/pysvg-0.2.2.ebuild
deleted file mode 100644
index afbdeb656ca..000
--- a/dev-python/pysvg/pysvg-0.2.2.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python SVG document creation library"
-HOMEPAGE="https://codeboje.de/pysvg/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="app-arch/unzip"



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

2019-12-12 Thread Aaron Bauman
commit: be55cb56bf3a702a20cfe45113e0ef961eddab70
Author: Poncho  spahan  ch>
AuthorDate: Wed Dec 11 07:48:50 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 19:24:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be55cb56

dev-python/pysvg: version bump, add python3 support

Closes: https://bugs.gentoo.org/702518
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Daniel Brandt  spahan.ch>
Closes: https://github.com/gentoo/gentoo/pull/13943
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-python/pysvg/Manifest  |  1 +
 dev-python/pysvg/metadata.xml  |  2 +-
 dev-python/pysvg/pysvg-0.2.2_p3.ebuild | 21 +
 3 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/dev-python/pysvg/Manifest b/dev-python/pysvg/Manifest
index 9dabbf0950b..502f3a2bb29 100644
--- a/dev-python/pysvg/Manifest
+++ b/dev-python/pysvg/Manifest
@@ -1 +1,2 @@
 DIST pysvg-0.2.2.zip 623804 BLAKE2B 
c3fbbc6b62e80087059331f5af84b4da57a71aced8ee23764b5eb4d43e3c38dbba9b5df14294ff6b6c4af4f679dec5307295d1887fcfa64730d1979d1b4fcf48
 SHA512 
f0e39903f4290a0615ca7531ccc242b27086b639b2940b53ae185ff354843e56b184c1d1dbf63f0df4f9f9700c4224e878810354a0f0c77bcbb9efd1b4ac2f17
+DIST pysvg-py3-0.2.2.post3.tar.gz 23436 BLAKE2B 
a1f0ff710b73dd2e82811d322aa6365583febe8c9e7d690221690d285f94b3d0ae3f74e47b0e0ef236e389f0621ce5ad61ba00329a306c30a81cab0e77ee29db
 SHA512 
3b0e30401ff9481df3fa5fde5b1e338bbabb86cdb846a11c08e8138563268311e20a4ce5317e5a31c337f2b8c5a3debb7abf8e0188e798e455378a363b31c95d

diff --git a/dev-python/pysvg/metadata.xml b/dev-python/pysvg/metadata.xml
index a041c65e205..82592044ff1 100644
--- a/dev-python/pysvg/metadata.xml
+++ b/dev-python/pysvg/metadata.xml
@@ -6,6 +6,6 @@
Python


-   pysvg
+   pysvg-py3

 

diff --git a/dev-python/pysvg/pysvg-0.2.2_p3.ebuild 
b/dev-python/pysvg/pysvg-0.2.2_p3.ebuild
new file mode 100644
index 000..31a5ef344da
--- /dev/null
+++ b/dev-python/pysvg/pysvg-0.2.2_p3.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+MY_PN="${PN}-py3"
+MY_PV="${PV/_p/.post}"
+
+DESCRIPTION="Python SVG document creation library"
+HOMEPAGE="https://github.com/alorence/pysvg-py3";
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${MY_PV}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/${MY_PN}-${MY_PV}"



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

2019-12-12 Thread Aaron Bauman
commit: c88f70bbbc88c487ad5659d1db72e7074dd052c5
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Dec 12 19:23:56 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 19:24:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c88f70bb

profiles/package.mask: drop mask on dev-python/pysvg

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 9eb6f6d0417..daf27c0b968 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -181,7 +181,6 @@ net-wireless/ndiswrapper
 dev-python/inotifyx
 dev-python/disqus-python
 dev-python/figleaf
-dev-python/pysvg
 dev-python/sphinxcontrib-ditaa
 dev-python/pyrax
 dev-python/tgmochikit



[gentoo-commits] proj/qt:master commit in: dev-qt/qt-docs/

2019-12-12 Thread Andreas Sturmlechner
commit: 4c5a7042ba4538f7b26cd0953af264f1dd6d95d0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 19:39:54 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 19:39:54 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=4c5a7042

dev-qt/qt-docs: 5.14.0_p201912110715 version bump

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

 dev-qt/qt-docs/Manifest| 54 +
 dev-qt/qt-docs/qt-docs-5.14.0_p201912110715.ebuild | 89 ++
 2 files changed, 143 insertions(+)

diff --git a/dev-qt/qt-docs/Manifest b/dev-qt/qt-docs/Manifest
index 8ee55705..5777a885 100644
--- a/dev-qt/qt-docs/Manifest
+++ b/dev-qt/qt-docs/Manifest
@@ -52,3 +52,57 @@ DIST 5.14.0-0-201912031207qtwidgets-documentation.7z 
26823552 BLAKE2B caa60828b1
 DIST 5.14.0-0-201912031207qtx11extras-documentation.7z 37106 BLAKE2B 
9d1201ae365679a7d052eef9740fe837394e29c9c9b7d46c5a63c154ad3752729c84adef44dbe5d5a7f94f0539ef1a4a2c7a7a03a7dcb45902717d689bc5a704
 SHA512 
925c29b347a3ed5979a307fab57e9906b9aa920cb146b01339395a7b4278a12c9027e029f40d6608fbcde37f3171cf1e9b8f7c1f10db6837435fbf4f18389f63
 DIST 5.14.0-0-201912031207qtxml-documentation.7z 504379 BLAKE2B 
a4fc2aef395a193e6118da01883732dcacb70471e31b574f6da81336feeb529103bc87975790a1244371f8be8cce56d02e98ef93c5a466e64ac8cefaba8b75d4
 SHA512 
f20bd57ebc8a61573099cd4019d74d8e80d0d586f2f49e917deb31c07b05eff5abbec983afef2123e086f7ffdd9d0c9481621926e35faada21a7db1c4cfc
 DIST 5.14.0-0-201912031207qtxmlpatterns-documentation.7z 1197123 BLAKE2B 
408156714d4edf655f28fca109647b119e10997a5403cc8cbad6c9d4403e1153f7f25c2c7f279d0a6ac992d6007e3d916336cc11523ff19677dee7e95281683c
 SHA512 
9c65c0ebb103d5d4a58bf68066d54b626466567b6336caef91b5c58f6afa66ca72cf052199de82b644d1f44aa3e001d7700dfdc4f0d8be6d31851f3ec2587528
+DIST 5.14.0-0-201912110715qdoc-documentation.7z 549227 BLAKE2B 
20830060d21b1a95d5063edfd009388abad8639a03b2abc50a0b70f8a1d07f1d7e2a267e864c9482e97784b1210f2dea93c69f09872290e4e0f83fcc83943adc
 SHA512 
e22875cff20697ac9d3667f797f4e3b14f19b0cad4e74651a20cf01ed65cfae2d859ebed8f4eba53f708fe1c15c716c0abb817aac3a1aee228450bb1c327429e
+DIST 5.14.0-0-201912110715qmake-documentation.7z 338375 BLAKE2B 
fed2bcce68eef354b476c583e888abd22806273e9fb173dbc00c5000a53494ff5e3e6f69b0567f986b4c5b36779d714950f272c7d4671e1c30d24371ad2494e4
 SHA512 
61b81020cc373e2c09ff3891762d22152b52c8ca08cd87b9f7aa9aaea966ae9fb60548820729678b21199ebc47f422eb1e0ac5f2a3bccc44cfc12c3301633cde
+DIST 5.14.0-0-201912110715qt3d-documentation.7z 5860397 BLAKE2B 
a6d990f80223a6760cee0222e63b51b67e2434356437d01ef812ca2e66ba1f8bdc6c4ceb1434aa1d93c2dfe409710a9a06512a89c09c4186453293e8bd863738
 SHA512 
d62658e7346c810986a8bbac932f6debfb8e91ae6183b486199dcca482853d4339b9933a5fcde6e017d8238d43cab589afe8023f94ed2c5e17175e5fa0a49298
+DIST 5.14.0-0-201912110715qtassistant-documentation.7z 452681 BLAKE2B 
89f57cbbee8c1cf1400f0adad3b46c3d8a5b1c01667479b21704de06e25fc7d7754c0a653838f700d8e573493daa1351a95b948f087cdf5a97cb84f3f67b4189
 SHA512 
d20700cd292631e48bdb08ee896693f31ae40fe87f6699be909f9799f3e9d93e9bf10843d4a35afc465fd227651c44a6eea5130b7f65f87d2dc55f0a2c84a1b1
+DIST 5.14.0-0-201912110715qtbluetooth-documentation.7z 2143578 BLAKE2B 
0fb881f022d7c7281fe778ea3ae620b6dbcd034ea9832a9dc9cc98a7fc26bb7d353ed7edfc6975293696a0f584ecb40c77a70eb692b5650dc825daeadf6b515b
 SHA512 
60d6abaf7ca15a83e09b1b18972e5632c53e59df5566ff9515df37045932a87371f15879d616320b98bc2cdd79f95a80fae0d34b1827e4a5ccfbced6f70ea49c
+DIST 5.14.0-0-201912110715qtcharts-documentation.7z 8737417 BLAKE2B 
20b624ce325703846daa4dcc3c44cd1c60be8869f9e182c7308fd3db784434700d84cd72787076541562ba196d1a3776ae273aed030ffc04925b64dd35910d5c
 SHA512 
f3d9bdf57d089fb37cc52aa9c612b4674038831820c2e4df5383675812e729189dd9cab91a00d38d8c288f502200dda3af442ec9c4515f27a9662cbd2bbf83fc
+DIST 5.14.0-0-201912110715qtconcurrent-documentation.7z 123161 BLAKE2B 
12da39fe729784c2c9375136f18f5a7c5a0d340c626df59dfe66b9c50dff5f2604beea9faa04d9b467f328fa59b7a7bb86ca02b6b18b84a4cc848810371f8660
 SHA512 
0f6dc01f4d736a21314f1a9c1213d27bda8f2422634b4a127f7e4387ae799f46d2a479fc45cee44ab2f74106a55536403215a05d0f45c433ce1828a6df9c7b30
+DIST 5.14.0-0-201912110715qtcore-documentation.7z 6511161 BLAKE2B 
38bb432e8234dad8bd7d05cdf7e2d07a095f08ae9aa8f9e8d056f85e38b0e804745980b972c0abc669004955759d14fa6d03bbc384646495ff876057106d0fec
 SHA512 
f855e323e752910cda1f07a325f0d270df0c4e02639748b4fff14456bdb73e7146f3892e0d41c6501c6c1fb0fd2c017170620340caf6b559f14e35113132f152
+DIST 5.14.0-0-201912110715qtdatavisualization-documentation.7z 6115083 BLAKE2B 
edf62573e6d87fedc066a67a636acaae6908ff26a98ad79fa8bf5e50b28eedb3675b4ea361a0e733a898a744c178efe0dd48a8b13dba07a32a66e8f62703c3a0
 SHA512 
0566b48fb9b51e1966dc236028f5b92f228bcd978deadc7f80760961797624121d16ad89f43c3142c56f5156ec06d2f9deb38704ee05f4c2a42fc8cdd918a14a
+DIST 5.14.0-0-201912110715qtdbus-documentation.7z 3

[gentoo-commits] proj/qt:master commit in: dev-qt/qt-docs/

2019-12-12 Thread Andreas Sturmlechner
commit: 96f5fbce68c2b08dfa0e83787caf5025b2bf7f56
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 19:40:21 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 19:40:21 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=96f5fbce

dev-qt/qt-docs: Drop 5.14.0_p201912031207

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

 dev-qt/qt-docs/Manifest| 54 -
 dev-qt/qt-docs/qt-docs-5.14.0_p201912031207.ebuild | 89 --
 2 files changed, 143 deletions(-)

diff --git a/dev-qt/qt-docs/Manifest b/dev-qt/qt-docs/Manifest
index 5777a885..fc28405d 100644
--- a/dev-qt/qt-docs/Manifest
+++ b/dev-qt/qt-docs/Manifest
@@ -1,57 +1,3 @@
-DIST 5.14.0-0-201912031207qdoc-documentation.7z 549088 BLAKE2B 
d7dc9045fa7114a923f1afccd283c2ff50d6503e5b707ce0fee743801ac9011b037d0ea192d57ac1d79e09bf6c4f36c1fd69555a235eb116a4474b039eacc331
 SHA512 
19d9566f594b9dce8d3c53d0034e54525862d8053357b57e5290c79dd70f7cfe4e5c39b5f4308551da2f603a13889a8c3faae5474a7f07f0c5e2aa5da4bfdda8
-DIST 5.14.0-0-201912031207qmake-documentation.7z 338410 BLAKE2B 
0ad3fc03b4c7380f0897e4a7475c717e78ae8bf1a6f44196f29e85717075b76deffc13579154195ff1383a5d2b56e7b0b24aac7dce957db85873d18d9c756ff9
 SHA512 
2c99897a1358ae1c4e73882f43fca495979cdfeff1a274d919dae8fc01503d37a31ff0c028e0691e3eabf8dd3eb8db5681e49859cc765a1f1ba77a8c1c500430
-DIST 5.14.0-0-201912031207qt3d-documentation.7z 5860251 BLAKE2B 
1c160862877d9a2b8d5a70a0743c8bfe96c8eb920b9a6e2ee193e6a38ade04f5df14eb9436b49f4f81ef1a5100fcd1f2018a8bbebdecf59c6ab359caca7eb02e
 SHA512 
b1dc89252c97c79d4e00827e93191dc518da3fb166c80f1d9922414bcb52d183fa5c5bad689adbaf6b3ffc9b375dd6e81e602080538973a28e3d9fb52dabf7a1
-DIST 5.14.0-0-201912031207qtassistant-documentation.7z 452743 BLAKE2B 
fe5834a91ab1494a95ddbac89e98ad49eadaacd327c247720682a50d31246144540b5356da4872643e4d1c7996dcdf915c6ec32bea3d81bbf1a3cf48a0f8591f
 SHA512 
70d3faaee6486b6ecc6a96e8aab0ad7170aebb682204dbf9ca9cb7d64f5d84b04be4bce7f69c1d1eed6542f336205681ffb9fbab4ee4b5c44174a0b5251adfc4
-DIST 5.14.0-0-201912031207qtbluetooth-documentation.7z 2143209 BLAKE2B 
cde9a7cedfcb578bd0d89c49da0e2cdff63991464f09ea00d4bf70a381db5588b73e49c34ef525a1930346c347c8a847e813b9bfdad4ba2cf8f04e15800b6cba
 SHA512 
181660ad48f902f55fee7aed8b5429d94d9972f148d068609cf5a7908cfc61333cab349daf6b35fc5c22f1d31da33abff6fa2cf34a0af498fc1c05925aa28da6
-DIST 5.14.0-0-201912031207qtcharts-documentation.7z 8737501 BLAKE2B 
dfc26615929fbc24961855fbfb8b8ef19c7aef67f6f633152733f14768c1a5bc6c47fc5a7e85bf31e4698bab8816f1eccdd63e62c801b6e7f0f6ae0c69d2aa37
 SHA512 
86cdf12d9c539217cfff9f8a045f1c1f5c2cfc532eecca154882d9574049fb20f4a676064a280d3fe1199dee3e37b69015c7d07cb8fea9ed8d55123b1cb4d887
-DIST 5.14.0-0-201912031207qtconcurrent-documentation.7z 123180 BLAKE2B 
d97eb64eaf487a56a6635b430c3d0327f218351fb99bdcca5274ebc0fabb218464d5d16bd0dc361d08036da20bb7f453cb2d834d3757d59ee34a7d0234645b30
 SHA512 
6555493a5b21859101b7592f0f4a946bd9ea07886677675b3ac8f8ee48b4197487c7c2d91f9295d8b7382e300a6d3850326a160e9384b0d8071206614ca3ae82
-DIST 5.14.0-0-201912031207qtcore-documentation.7z 6510750 BLAKE2B 
3554b3e339942b5155d4bfa676989b69a65082c51b6fddd8ba6ad24679b75941683ddd61d50a3bac1807ef2b2e2e0f4294bfe8b750459b3949d090ad32089e12
 SHA512 
d85f39f774d3bb483cbec8a1e4b5fe93ce6d03bd892fb9c70565996a432ac991bee8a8927c7efdc0182267b1acac41a4453923a6976a84e9a37ec029a5a6d06a
-DIST 5.14.0-0-201912031207qtdatavisualization-documentation.7z 6115143 BLAKE2B 
130e3b2f4baf3dede668d486d3d16e55449ce4070ae10799bbfabf2011217415717f8d528d4f46ae473df648c88e18e026f48e7afe4a13196587f13164c5
 SHA512 
8bc9c92ed1ccc0abc0aebab18a8d960e7537f44ef788c5c9f15322a1a5bc09285d9f03d4c2e265b859d90402f94b215c97fd8800c943a01a09a5eaed4947f3cd
-DIST 5.14.0-0-201912031207qtdbus-documentation.7z 397151 BLAKE2B 
7bed1ac99015d8742933ef7cf2d26e3aa5385516c386cbb10e820805ed2e0e8a815c497d8700b7780c7bf97ceda614ffd8ef3c474cd438b3993ee0aacb6c62f0
 SHA512 
81796372070da31cfc4f75836dc44b7d82c569a353db09c087d6ad48d6e4371a04ee6ea7d4f5271352204d5d1ee5f56e98e37dc5bde7d6810eef7669f94f6211
-DIST 5.14.0-0-201912031207qtdesigner-documentation.7z 3534719 BLAKE2B 
0e0a01bd75819ba4cf5d023ad217505425a7b8207255b6f0d070035889166d9e9aec149d4617881fe92787363019d5147b120010f828ffe8074e0794f6f1b40e
 SHA512 
aad884a94bef87fc3bd920ba69e46abf7fab4227f74fc810ec3c51557597cf644cd0892e73d5a6dce11a6a5e48f899350859f637b3cac7d96101d4b103548d04
-DIST 5.14.0-0-201912031207qtdoc-documentation.7z 10124207 BLAKE2B 
0a64afe545d476ec6192a281e4b2a830c97e93fd43d7ac1af145a5c700e2cb56af39ac6699cfb59272ce32fbb89a6371f77ad3bf688a72904e8bcb9a1ca12258
 SHA512 
5e2315907f8c96cad59a5e502529abe5775938acbe8f3b94ff3c3b58ad90f1f3ea97a5689cf20af18d7c679eaa106a9710022b4541896a333000cb25c6134064
-DIST 5.14.0-0-201912031207qtgamepad-documentation.7z 240004 BLAKE2B 
1e223fddfc56b06348baeed3aaa8f1d4d00fb1ffd8f824e6239e93bc346ca3112fed54a9989212e5

[gentoo-commits] proj/qt:master commit in: dev-qt/qtsensors/, dev-qt/qtopengl/, dev-qt/qtdiag/, dev-qt/qtlocation/, ...

2019-12-12 Thread Andreas Sturmlechner
commit: b6816e2fe918ebee4e45f7cdf1b2346447791b02
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 19:33:32 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 19:33:32 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=b6816e2f

dev-qt: 5.14.0 version bump

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

 dev-qt/assistant/Manifest  |   1 +
 dev-qt/assistant/assistant-5.14.0.ebuild   |  55 +++
 dev-qt/designer/Manifest   |   1 +
 dev-qt/designer/designer-5.14.0.ebuild |  57 +++
 dev-qt/linguist-tools/Manifest |   1 +
 dev-qt/linguist-tools/linguist-tools-5.14.0.ebuild |  35 
 dev-qt/linguist/Manifest   |   1 +
 dev-qt/linguist/linguist-5.14.0.ebuild |  48 ++
 dev-qt/pixeltool/Manifest  |   1 +
 dev-qt/pixeltool/pixeltool-5.14.0.ebuild   |  25 +++
 dev-qt/qdbus/Manifest  |   1 +
 dev-qt/qdbus/qdbus-5.14.0.ebuild   |  25 +++
 dev-qt/qdbusviewer/Manifest|   1 +
 dev-qt/qdbusviewer/qdbusviewer-5.14.0.ebuild   |  45 ++
 dev-qt/qdoc/Manifest   |   1 +
 dev-qt/qdoc/qdoc-5.14.0.ebuild |  40 +
 dev-qt/qt3d/Manifest   |   1 +
 dev-qt/qt3d/qt3d-5.14.0.ebuild |  34 
 dev-qt/qtbluetooth/Manifest|   1 +
 dev-qt/qtbluetooth/qtbluetooth-5.14.0.ebuild   |  33 
 dev-qt/qtcharts/Manifest   |   1 +
 dev-qt/qtcharts/qtcharts-5.14.0.ebuild |  29 
 dev-qt/qtconcurrent/Manifest   |   1 +
 dev-qt/qtconcurrent/qtconcurrent-5.14.0.ebuild |  23 +++
 dev-qt/qtcore/Manifest |   1 +
 dev-qt/qtcore/qtcore-5.14.0.ebuild |  83 ++
 dev-qt/qtdatavis3d/Manifest|   1 +
 dev-qt/qtdatavis3d/qtdatavis3d-5.14.0.ebuild   |  31 
 dev-qt/qtdbus/Manifest |   1 +
 dev-qt/qtdbus/qtdbus-5.14.0.ebuild |  43 +
 dev-qt/qtdeclarative/Manifest  |   1 +
 dev-qt/qtdeclarative/qtdeclarative-5.14.0.ebuild   |  53 +++
 dev-qt/qtdiag/Manifest |   1 +
 dev-qt/qtdiag/qtdiag-5.14.0.ebuild |  36 +
 dev-qt/qtgamepad/Manifest  |   1 +
 dev-qt/qtgamepad/qtgamepad-5.14.0.ebuild   |  35 
 dev-qt/qtgraphicaleffects/Manifest |   1 +
 .../qtgraphicaleffects-5.14.0.ebuild   |  21 +++
 dev-qt/qtgui/Manifest  |   1 +
 dev-qt/qtgui/qtgui-5.14.0.ebuild   | 176 +
 dev-qt/qthelp/Manifest |   1 +
 dev-qt/qthelp/qthelp-5.14.0.ebuild |  29 
 dev-qt/qtimageformats/Manifest |   1 +
 dev-qt/qtimageformats/qtimageformats-5.14.0.ebuild |  30 
 dev-qt/qtlocation/Manifest |   1 +
 dev-qt/qtlocation/qtlocation-5.14.0.ebuild |  45 ++
 dev-qt/qtmultimedia/Manifest   |   1 +
 dev-qt/qtmultimedia/qtmultimedia-5.14.0.ebuild |  68 
 dev-qt/qtnetwork/Manifest  |   1 +
 dev-qt/qtnetwork/qtnetwork-5.14.0.ebuild   |  60 +++
 dev-qt/qtnetworkauth/Manifest  |   1 +
 dev-qt/qtnetworkauth/qtnetworkauth-5.14.0.ebuild   |  20 +++
 dev-qt/qtopengl/Manifest   |   1 +
 dev-qt/qtopengl/qtopengl-5.14.0.ebuild |  34 
 dev-qt/qtpaths/Manifest|   1 +
 dev-qt/qtpaths/qtpaths-5.14.0.ebuild   |  23 +++
 dev-qt/qtplugininfo/Manifest   |   1 +
 dev-qt/qtplugininfo/qtplugininfo-5.14.0.ebuild |  23 +++
 dev-qt/qtpositioning/Manifest  |   1 +
 dev-qt/qtpositioning/qtpositioning-5.14.0.ebuild   |  40 +
 dev-qt/qtprintsupport/Manifest |   1 +
 dev-qt/qtprintsupport/qtprintsupport-5.14.0.ebuild |  42 +
 dev-qt/qtquickcontrols/Manifest|   1 +
 .../qtquickcontrols/qtquickcontrols-5.14.0.ebuild  |  32 
 dev-qt/qtquickcontrols2/Manifest   |   1 +
 .../qtquickcontrols2-5.14.0.ebuild |  30 
 dev-qt/qtscript/Manifest   |   1 +
 dev-qt/qtscript/qtscript-5.14.0.ebuild |  36 +
 dev-qt/qtscxml/Manifest|   1 +
 dev-qt/qtscxml/qtscxml-5.14.0.ebuild   |  19 +++
 dev-qt/qtsensors/Manifest  |   1 +
 dev-qt/qtsensors/qtsensors-5.14.0.ebuild   |  28 
 dev-qt/qtserialbus/Manifest|   1 +
 dev-qt/qtserialbus/qtserialbus-5.14.

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

2019-12-12 Thread Aaron Bauman
commit: a6d6ad821c22ace82fd728e30bd9916195ba62ff
Author: Gabriel Linder  gmail  com>
AuthorDate: Sun Dec  8 12:37:21 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 19:31:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d6ad82

dev-python/prompt_toolkit: bump to version 2.0.10.

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Gabriel Linder  gmail.com>
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-python/prompt_toolkit/Manifest |  1 +
 dev-python/prompt_toolkit/metadata.xml |  2 +-
 .../prompt_toolkit/prompt_toolkit-2.0.10.ebuild| 23 ++
 3 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/dev-python/prompt_toolkit/Manifest 
b/dev-python/prompt_toolkit/Manifest
index a04359be984..606c710da9f 100644
--- a/dev-python/prompt_toolkit/Manifest
+++ b/dev-python/prompt_toolkit/Manifest
@@ -1,3 +1,4 @@
 DIST prompt_toolkit-1.0.15.tar.gz 243734 BLAKE2B 
b27e61bb444360abe95714e2014fcacf2355da0540b21af35cc40cb0f0115d0a3b027236235a89a95c1ec1fa947bf5b88b236b737fab5de78e7bd5fc798aa764
 SHA512 
10981be2ed8b71d0cd9f663c4de047cec9664d9276968c6eec40dc45b388d1acf8eba07d534369254f178931079bf39b04eb2ceac06aa63a2021ebf62387b2f5
+DIST prompt_toolkit-2.0.10.tar.gz 347981 BLAKE2B 
b95cf000d5249da3710f9b51f72d41c3d552f1d3a35dea5493f565f0f62998d890bf2b81b3376140a4d16a19f2c5fd60eb0cb5f2f58180c176ef1543c6fc4ec2
 SHA512 
b91292cf43607b3a7018ca29827f0aa9bc90efc064c68faffe02ad28e4bb60f45fc2d25bbfd9a40a383a815cb08596975f08237a498f94a5c088d56d3a0a9803
 DIST prompt_toolkit-2.0.6.tar.gz 339714 BLAKE2B 
f969edef98d25930e4d61c1500bb9c8d731dea29e8d154e6baa2ab4045ceaf9d577d46024734a255cc15a4c13685582309e9d2fe7ae3320257f6fd1f9981ada6
 SHA512 
37082011ee5b8d6fd9febef95c92494ed6108b9ad8c64ac580b69c3464781a2f0dcef5b1c4d06fe309a3036932f7c622042e6b2293acf2ab6f9f2aa3c48d9322
 DIST prompt_toolkit-2.0.7.tar.gz 343267 BLAKE2B 
eed36fb951bcf8b0663a87eb4e77267246bbc7a6b773ed76d730c04b4dd012434fd0e71e5f558c231fd5ba1e8b3403878106bf3c60f44b7aa3e492a99a622b65
 SHA512 
4ea8102a50290878248ccc2119eb2b5ae50ad58f466510f8328bc172942f5417abde24393958c910ae0ab2ea4a8caff049b6e7acd8d94e9dbeb97b36c6e2191e

diff --git a/dev-python/prompt_toolkit/metadata.xml 
b/dev-python/prompt_toolkit/metadata.xml
index 29e9faaf3f1..3ff66414d0a 100644
--- a/dev-python/prompt_toolkit/metadata.xml
+++ b/dev-python/prompt_toolkit/metadata.xml
@@ -7,6 +7,6 @@
   
   
 prompt_toolkit
-jonathanslenders/python-prompt-toolkit
+prompt-toolkit/python-prompt-toolkit
   
 

diff --git a/dev-python/prompt_toolkit/prompt_toolkit-2.0.10.ebuild 
b/dev-python/prompt_toolkit/prompt_toolkit-2.0.10.ebuild
new file mode 100644
index 000..d119b248c58
--- /dev/null
+++ b/dev-python/prompt_toolkit/prompt_toolkit-2.0.10.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+inherit distutils-r1
+
+DESCRIPTION="Building powerful interactive command lines in Python"
+HOMEPAGE="https://pypi.org/project/prompt_toolkit/ 
https://github.com/prompt-toolkit/python-prompt-toolkit";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+   dev-python/wcwidth[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2019-12-12 Thread Aaron Bauman
commit: 32007856ee9832ae1dee5c8bb7c4a66a39fba09f
Author: Gabriel Linder  gmail  com>
AuthorDate: Sun Dec  8 12:43:59 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 19:31:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32007856

dev-python/ptpython: bump to version 2.0.6.

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Gabriel Linder  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13917
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-python/ptpython/Manifest  |  1 +
 dev-python/ptpython/metadata.xml  |  2 +-
 dev-python/ptpython/ptpython-2.0.6.ebuild | 24 
 3 files changed, 26 insertions(+), 1 deletion(-)

diff --git a/dev-python/ptpython/Manifest b/dev-python/ptpython/Manifest
index 8bd053531b2..eb75f5f741e 100644
--- a/dev-python/ptpython/Manifest
+++ b/dev-python/ptpython/Manifest
@@ -1 +1,2 @@
 DIST ptpython-0.33.tar.gz 43295 BLAKE2B 
96df547c3a231124e2e34e5dd6d6a2fe661883d8c8f88a25d955c46b250b86319e343adc0a2265841ca69f115e9b0787a431c49db9de2de362cd5d0c4334ae1f
 SHA512 
fce9379e4522b2b644e6159c73e3eff2d0ced8de65462d4ad622f91feb46fa80a9e01a2c7aef1832b4fcf69de5c0c7d229c731149af7029eec46f88a0506ad71
+DIST ptpython-2.0.6.tar.gz 46980 BLAKE2B 
b78013d898bb01106315a7aea88f40c0a8ba70571ae8fb5376dcf7d67636f4e3d4d329c5c58dc4c2cdca80ec92313938250224c2560f91eda40bff6c5f59736c
 SHA512 
2d0a84e6515ad2e6523774b1136fdc822aed95e27e6a2d857952b703ea5def86de44166c2cffd8d2151cdf246088959d0a41279cb66b1249a865bff3ad02f4cc

diff --git a/dev-python/ptpython/metadata.xml b/dev-python/ptpython/metadata.xml
index f08e580eb25..ec02a39c699 100644
--- a/dev-python/ptpython/metadata.xml
+++ b/dev-python/ptpython/metadata.xml
@@ -7,6 +7,6 @@
   
   
 ptpython
-jonathanslenders/ptpython
+prompt-toolkit/ptpython
   
 

diff --git a/dev-python/ptpython/ptpython-2.0.6.ebuild 
b/dev-python/ptpython/ptpython-2.0.6.ebuild
new file mode 100644
index 000..0b3ce70fa4b
--- /dev/null
+++ b/dev-python/ptpython/ptpython-2.0.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+inherit distutils-r1
+
+DESCRIPTION="Python REPL build on top of prompt_toolkit"
+HOMEPAGE="https://pypi.org/project/ptpython/ 
https://github.com/prompt-toolkit/ptpython";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-python/docopt[${PYTHON_USEDEP}]
+   >=dev-python/jedi-0.9.0[${PYTHON_USEDEP}]
+   >=dev-python/prompt_toolkit-2.0.8[${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/, app-doc/doxygen/files/

2019-12-12 Thread Matthias Maier
commit: 800629cda982acb00750586ba4eb769c37b6a81c
Author: Matthias Maier  gentoo  org>
AuthorDate: Thu Dec 12 19:37:36 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Dec 12 19:46:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=800629cd

app-doc/doxygen: 1.8.16: fix external tag file issue

Closes: https://bugs.gentoo.org/701930
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Matthias Maier  gentoo.org>

 app-doc/doxygen/doxygen-1.8.16.ebuild  |  1 +
 ...en-1.8.16-fix-external-tag-files-with-TOC.patch | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/app-doc/doxygen/doxygen-1.8.16.ebuild 
b/app-doc/doxygen/doxygen-1.8.16.ebuild
index 98f6fa74904..e37985247ca 100644
--- a/app-doc/doxygen/doxygen-1.8.16.ebuild
+++ b/app-doc/doxygen/doxygen-1.8.16.ebuild
@@ -64,6 +64,7 @@ PATCHES=(
"${FILESDIR}/${PN}-1.8.16-link_with_pthread.patch"
"${FILESDIR}/${PN}-1.8.15-llvm7.patch" #92
"${FILESDIR}/${PN}-1.8.16-ghostscript-compatilibility.patch" #695710
+   "${FILESDIR}/${PN}-1.8.16-fix-external-tag-files-with-TOC.patch" #701930
 )
 
 DOCS=( LANGUAGE.HOWTO README.md )

diff --git 
a/app-doc/doxygen/files/doxygen-1.8.16-fix-external-tag-files-with-TOC.patch 
b/app-doc/doxygen/files/doxygen-1.8.16-fix-external-tag-files-with-TOC.patch
new file mode 100644
index 000..cc0704b440f
--- /dev/null
+++ b/app-doc/doxygen/files/doxygen-1.8.16-fix-external-tag-files-with-TOC.patch
@@ -0,0 +1,50 @@
+From 4a72a9b07e805b4ba27560e8e921bcee0002ef4c Mon Sep 17 00:00:00 2001
+From: albert-github 
+Date: Mon, 9 Sep 2019 13:28:28 +0200
+Subject: [PATCH] issue #7248: Including external tag files with TOC produces a
+ broken index.qhp
+
+Ignore automatically generated anchor names when importing a tag file.
+
+Upstream: https://github.com/doxygen/doxygen/pull/7250
+---
+ src/tagreader.cpp | 19 ++-
+ 1 file changed, 18 insertions(+), 1 deletion(-)
+
+diff --git a/src/tagreader.cpp b/src/tagreader.cpp
+index 56dbe7df9..d79d9b5c5 100644
+--- a/src/tagreader.cpp
 b/src/tagreader.cpp
+@@ -494,6 +494,23 @@ class TagFileParser : public QXmlDefaultHandler
+ 
+ void endDocAnchor()
+ {
++  // Check whether or not the tag is automatically generate, in that case 
ignore the tag.
++  switch(m_state)
++  {
++case InClass:
++case InFile:
++case InNamespace:
++case InGroup:
++case InPage:
++case InMember:
++case InPackage:
++case InDir:
++  if (QString(m_curString).startsWith("autotoc_md")) return;
++  break;
++default:
++  warn("Unexpected tag 'docanchor' found");
++  return;
++  }
+   switch(m_state)
+   {
+ case InClass: m_curClass->docAnchors.append(new 
TagAnchorInfo(m_fileName,m_curString,m_title)); break;
+@@ -504,7 +521,7 @@ class TagFileParser : public QXmlDefaultHandler
+ case InMember:m_curMember->docAnchors.append(new 
TagAnchorInfo(m_fileName,m_curString,m_title)); break;
+ case InPackage:   m_curPackage->docAnchors.append(new 
TagAnchorInfo(m_fileName,m_curString,m_title)); break;
+ case InDir:   m_curDir->docAnchors.append(new 
TagAnchorInfo(m_fileName,m_curString,m_title)); break;
+-default:   warn("Unexpected tag 'docanchor' found"); break; 
++default:   warn("Unexpected tag 'docanchor' found"); break;  // Not 
really necessary anymore
+   }
+ }
+ 



[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/files/, app-doc/doxygen/

2019-12-12 Thread Matthias Maier
commit: 3f549b1fb85e0973964b99245fbe4fc5d0d32cd1
Author: Matthias Maier  gentoo  org>
AuthorDate: Thu Dec 12 19:25:52 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Dec 12 19:46:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f549b1f

app-doc/doxygen: drop old versions

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Matthias Maier  gentoo.org>

 app-doc/doxygen/Manifest |   1 -
 app-doc/doxygen/doxygen-1.8.14-r1.ebuild | 135 --
 app-doc/doxygen/doxygen-1.8.14-r2.ebuild | 136 ---
 app-doc/doxygen/files/doxygen-1.8.14-llvm7.patch |  25 -
 4 files changed, 297 deletions(-)

diff --git a/app-doc/doxygen/Manifest b/app-doc/doxygen/Manifest
index 40932be8260..0467e383742 100644
--- a/app-doc/doxygen/Manifest
+++ b/app-doc/doxygen/Manifest
@@ -1,3 +1,2 @@
-DIST doxygen-1.8.14.src.tar.gz 4877980 BLAKE2B 
9886e5165188548e0c8a3760a53709615385ab175795d07156584f3878996c8c5f18e439b6e45352a32ba5cd40e9b7fdb29cdf86511e1be70b18315069e33377
 SHA512 
5fac7e457a51b1f8e39fb65de5e0c07633e573f74e876580e7bcad5693540d6970fde1b2cb799a4df6ab9dfca951ece15b76b3010134d7658db3500183bea85c
 DIST doxygen-1.8.15.src.tar.gz 5097791 BLAKE2B 
08903bf0911df0810ea0a7b86066e7682833b03ae5660094112c5c6506f072c5818185ce8166d09328e62092461acdb4516b58fe9369119f5f6bdd64331a
 SHA512 
a5512e78be66c1591d8ec7e284d5d25c92a97218c79e6fed3c538c723a8dfef4ff7085970bf271a6b639e907157cd4df9fb55d3c975f8d3302fb1012a4d92079
 DIST doxygen-1.8.16.src.tar.gz 5497317 BLAKE2B 
ec1ba4242bd3ef669f92101044049f10a6e5c2d69f5a7c8eb47915fdc0846ce4758eb8c1ab28ec61635bf36f83049f603f3b70033f7e22be18685cb1d9826462
 SHA512 
46a0189aa82d5a687bdd99a904f0c061fccca407d15867d14c8c4d13e8b21a8989e7ccd6af30840803b589ed20dd86084a4db880fba0d3bfa1fdcdd8d23e12de

diff --git a/app-doc/doxygen/doxygen-1.8.14-r1.ebuild 
b/app-doc/doxygen/doxygen-1.8.14-r1.ebuild
deleted file mode 100644
index de853a4a2b3..000
--- a/app-doc/doxygen/doxygen-1.8.14-r1.ebuild
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-CMAKE_MAKEFILE_GENERATOR="emake"
-
-inherit cmake-utils eutils python-any-r1
-if [[ ${PV} = ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/doxygen/doxygen.git";
-   SRC_URI=""
-else
-   SRC_URI="https://ftp.stack.nl/pub/users/dimitri/${P}.src.tar.gz";
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-fi
-
-DESCRIPTION="Documentation system for most programming languages"
-HOMEPAGE="https://www.stack.nl/~dimitri/doxygen/";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="clang debug doc dot doxysearch latex qt5 sqlite userland_GNU"
-
-RDEPEND="app-text/ghostscript-gpl
-   dev-lang/perl
-   media-libs/libpng:0=
-   virtual/libiconv
-   clang? ( >=sys-devel/clang-4.0.0:= )
-   dot? (
-   media-gfx/graphviz
-   media-libs/freetype
-   )
-   doxysearch? ( dev-libs/xapian:= )
-   latex? (
-   dev-texlive/texlive-bibtexextra
-   dev-texlive/texlive-fontsextra
-   dev-texlive/texlive-fontutils
-   dev-texlive/texlive-latex
-   dev-texlive/texlive-latexextra
-   )
-   qt5? (
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   )
-   sqlite? ( dev-db/sqlite:3 )
-   "
-
-REQUIRED_USE="doc? ( latex )"
-
-DEPEND="sys-devel/flex
-   sys-devel/bison
-   doc? ( ${PYTHON_DEPS} )
-   ${RDEPEND}"
-
-# src_test() defaults to make -C testing but there is no such directory (bug 
#504448)
-RESTRICT="test"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.8.9.1-empty-line-sigsegv.patch" #454348
-   "${FILESDIR}/${PN}-1.8.12-link_with_pthread.patch"
-   "${FILESDIR}/${PN}-1.8.14-llvm7.patch" #92
-)
-
-DOCS=( LANGUAGE.HOWTO README.md )
-
-pkg_setup() {
-   use doc && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   # Ensure we link to -liconv
-   if use elibc_FreeBSD && has_version dev-libs/libiconv || use 
elibc_uclibc; then
-   local pro
-   for pro in */*.pro.in */*/*.pro.in; do
-   echo "unix:LIBS += -liconv" >> "${pro}" || die
-   done
-   fi
-
-   # Call dot with -Teps instead of -Tps for EPS generation - bug #282150
-   sed -i -e '/addJob("ps"/ s/"ps"/"eps"/g' src/dot.cpp || die
-
-   # fix pdf doc
-   sed -i.orig -e "s:g_kowal:g kowal:" \
-   doc/maintainers.txt || die
-
-   if is-flagq "-O3" ; then
-   ewarn
-   ewarn "Compiling with -O3 is known to produce incorrectly"
-

[gentoo-commits] proj/pms: New branch: eapi-8

2019-12-12 Thread Ulrich Müller
commit: 
Commit: Ulrich Müller  gentoo  org>
CommitDate: Thu Dec 12 19:54:10 2019 +

New branch: eapi-8




[gentoo-commits] repo/gentoo:master commit in: media-fonts/glass-tty-vt220/

2019-12-12 Thread Conrad Kostecki
commit: f81e93809e9f2f7948ea32887828e3604c8abb16
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec 12 19:53:21 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Thu Dec 12 19:53:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f81e9380

media-fonts/glass-tty-vt220: use correct license

Closes: https://bugs.gentoo.org/702600
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Conrad Kostecki  gentoo.org>

 media-fonts/glass-tty-vt220/glass-tty-vt220-001.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/glass-tty-vt220/glass-tty-vt220-001.3.ebuild 
b/media-fonts/glass-tty-vt220/glass-tty-vt220-001.3.ebuild
index 2cc36d005d8..32ca56359a3 100644
--- a/media-fonts/glass-tty-vt220/glass-tty-vt220-001.3.ebuild
+++ b/media-fonts/glass-tty-vt220/glass-tty-vt220-001.3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://sensi.org/~svo/glasstty/";
 SRC_URI="http://sensi.org/~svo/glasstty/Glass_TTY_VT220.ttf -> 
Glass_TTY_VT220-${PV}.ttf"
 
 KEYWORDS="amd64 arm arm64 x86"
-LICENSE="freedist"
+LICENSE="Unlicense"
 SLOT="0"
 
 RESTRICT="mirror"



[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/

2019-12-12 Thread Matthias Maier
commit: 81d164102339fe96dbb3d2090bfe0312b98f3840
Author: Matthias Maier  gentoo  org>
AuthorDate: Thu Dec 12 20:03:56 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Dec 12 20:05:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81d16410

app-doc/doxygen: revision bump for latest change to take effect

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Matthias Maier  gentoo.org>

 app-doc/doxygen/{doxygen-1.8.16.ebuild => doxygen-1.8.16-r1.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/app-doc/doxygen/doxygen-1.8.16.ebuild 
b/app-doc/doxygen/doxygen-1.8.16-r1.ebuild
similarity index 100%
rename from app-doc/doxygen/doxygen-1.8.16.ebuild
rename to app-doc/doxygen/doxygen-1.8.16-r1.ebuild



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

2019-12-12 Thread Mike Gilbert
commit: 08f2438131f86e39251efb3620668c776f9f4243
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Dec 12 20:14:23 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Dec 12 20:15:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08f24381

net-misc/freerdp: remove old

Bug: https://bugs.gentoo.org/672010
Bug: https://bugs.gentoo.org/679416
Package-Manager: Portage-2.3.80_p5, Repoman-2.3.19_p4
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/freerdp/Manifest |   1 -
 net-misc/freerdp/files/2.0.0-rc2-primitives.patch |  41 
 net-misc/freerdp/freerdp-2.0.0_rc2-r1.ebuild  | 120 --
 3 files changed, 162 deletions(-)

diff --git a/net-misc/freerdp/Manifest b/net-misc/freerdp/Manifest
index ad3f3a0ba7b..fd0ee55a133 100644
--- a/net-misc/freerdp/Manifest
+++ b/net-misc/freerdp/Manifest
@@ -1,3 +1,2 @@
-DIST freerdp-2.0.0-rc2.tar.gz 6611081 BLAKE2B 
564abd6289f0c9d3947b9074111ade8c2e7b6e6dce9af8a06ef1772d0e76822c5df80932a5cbac2f23c4d2a76d4796c12bd4fa067c6ef21ea84a1b8423be1ce3
 SHA512 
cb765b3b9559c4877be4c10e5df9e95d11a0184ce34e89564097c3234f859de8e82b6de6217396628e5f70c85c40c65ccd75f9b0f7f89daaed7e0e971a833589
 DIST freerdp-2.0.0-rc4-fix-NTLM-AvPair-lists.patch 20553 BLAKE2B 
17ba83ba2dc05f2179df3aa8805877e15b353d4c6bbe88fa0553f7412baf85849a834032143ebd22ff3d27dd12ffdfddfc802868e10ca2718145a58378940ec4
 SHA512 
b3b548e98422362f63aedfefca399e4008a4b571e6cd786603418c5a3d1c4d832d5148ddee2f62d6bc1259c66020ee01ced6357d72333f49fc34a1059f4f804e
 DIST freerdp-2.0.0-rc4.tar.gz 6662044 BLAKE2B 
50bc72336841e421b8fd89ce4f2be6a0b1a9f052933c4cd5bad33261689e6a6b54bc5563fb1ace8cc7a2271990c0ff4c7fe239243f5d75140af497ee6ff9bcd6
 SHA512 
63cf89aecc6d7ac55db8c7aca60f4ba29cfa54ad70d0fa87fdab011cd16500a3d184659119cd08b7596b7236346db3b61b46282c5325d7f0ca6da09b42d0df20

diff --git a/net-misc/freerdp/files/2.0.0-rc2-primitives.patch 
b/net-misc/freerdp/files/2.0.0-rc2-primitives.patch
deleted file mode 100644
index a82dec1ad0f..000
--- a/net-misc/freerdp/files/2.0.0-rc2-primitives.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 9460f4292b130fcca58519a1c52b9aaef3265042 Mon Sep 17 00:00:00 2001
-From: Mike Gilbert 
-Date: Wed, 16 May 2018 16:15:50 -0400
-Subject: [PATCH] primitives: ensure primitives_get() returns a populated
- struct
-
-Fixes: https://github.com/FreeRDP/FreeRDP/issues/4658

- libfreerdp/primitives/primitives.c | 8 ++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/libfreerdp/primitives/primitives.c 
b/libfreerdp/primitives/primitives.c
-index fd236df6e7..d25c5b41dc 100644
 a/libfreerdp/primitives/primitives.c
-+++ b/libfreerdp/primitives/primitives.c
-@@ -28,10 +28,12 @@
- #include "prim_internal.h"
- 
- /* Singleton pointer used throughout the program when requested. */
--static primitives_t pPrimitives = { 0 };
- static primitives_t pPrimitivesGeneric = { 0 };
- static INIT_ONCE generic_primitives_InitOnce = INIT_ONCE_STATIC_INIT;
-+#if defined(HAVE_OPTIMIZED_PRIMITIVES)
-+static primitives_t pPrimitives = { 0 };
- static INIT_ONCE primitives_InitOnce = INIT_ONCE_STATIC_INIT;
-+#endif
- 
- 
- /* - 
*/
-@@ -74,8 +76,10 @@ primitives_t* primitives_get(void)
-   InitOnceExecuteOnce(&generic_primitives_InitOnce, 
primitives_init_generic, NULL, NULL);
- #if defined(HAVE_OPTIMIZED_PRIMITIVES)
-   InitOnceExecuteOnce(&primitives_InitOnce, primitives_init, NULL, NULL);
--#endif
-   return &pPrimitives;
-+#else
-+  return &pPrimitivesGeneric;
-+#endif
- }
- 
- primitives_t* primitives_get_generic(void)

diff --git a/net-misc/freerdp/freerdp-2.0.0_rc2-r1.ebuild 
b/net-misc/freerdp/freerdp-2.0.0_rc2-r1.ebuild
deleted file mode 100644
index fdbeb49fd21..000
--- a/net-misc/freerdp/freerdp-2.0.0_rc2-r1.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 2011-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit cmake-utils
-
-if [[ ${PV} !=  ]]; then
-   MY_P=${P/_/-}
-   S="${WORKDIR}/${MY_P}"
-   SRC_URI="https://pub.freerdp.com/releases/${MY_P}.tar.gz";
-   KEYWORDS="alpha amd64 arm ppc ppc64 x86"
-else
-   inherit git-r3
-   SRC_URI=""
-   EGIT_REPO_URI="https://github.com/FreeRDP/FreeRDP.git";
-fi
-
-DESCRIPTION="Free implementation of the Remote Desktop Protocol"
-HOMEPAGE="http://www.freerdp.com/";
-
-LICENSE="Apache-2.0"
-SLOT="0/2"
-IUSE="alsa +client cpu_flags_arm_neon cups debug doc ffmpeg gstreamer jpeg 
libav libressl openh264 pulseaudio server smartcard systemd test usb wayland X 
xinerama xv"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   sys-libs/zlib:0
-   alsa? ( media-libs/alsa-lib )
-   cups? ( net-print/cups )
-   client? (
-   usb? (
-   virtual/libudev:0=
-

[gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-burn/files/, media-plugins/vdr-burn/

2019-12-12 Thread Joerg Bornkessel
commit: 41fbe37f5fb14ec9509fbeb4fd1d2f3b37354de0
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Thu Dec 12 20:20:25 2019 +
Commit: Joerg Bornkessel  gentoo  org>
CommitDate: Thu Dec 12 20:21:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41fbe37f

media-plugins/vdr-burn: fixed patch -p1 failed

fixed patch -p1 failed for
vdr-burn-0.2.2-missing-include-for-function-setpriority.patch
fixed fuzz in vdr-burn-0.2.2_makefile.diff

Bug: https://bugs.gentoo.org/702618
Closes: https://bugs.gentoo.org/702618
Package-Manager: Portage-2.3.81, Repoman-2.3.18
Signed-off-by: Joerg Bornkessel  gentoo.org>

 media-plugins/vdr-burn/files/vdr-burn-0.2.2_makefile.diff | 13 +++--
 media-plugins/vdr-burn/vdr-burn-0.2.2-r1.ebuild   |  4 ++--
 2 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/media-plugins/vdr-burn/files/vdr-burn-0.2.2_makefile.diff 
b/media-plugins/vdr-burn/files/vdr-burn-0.2.2_makefile.diff
index 837321ef687..0612ec9292a 100644
--- a/media-plugins/vdr-burn/files/vdr-burn-0.2.2_makefile.diff
+++ b/media-plugins/vdr-burn/files/vdr-burn-0.2.2_makefile.diff
@@ -1,10 +1,11 @@
-Signed-of-by: Joerg Bornkessel  (12 Feb 2012)
+support for DMH_ARCHIVE in makefile
 
-diff -Naur burn-0.2.0.orig/Makefile burn-0.2.0/Makefile
 burn-0.2.0.orig/Makefile   2012-02-12 20:21:08.0 +0100
-+++ burn-0.2.0/Makefile2012-02-12 20:24:33.0 +0100
-@@ -9,6 +9,9 @@
- #
+Signed-off-by: Joerg Bornkessel  (12 Dec 2019)
+diff -Naur burn-0.2.2.orig/Makefile burn-0.2.2/Makefile
+--- burn-0.2.2.orig/Makefile   2019-12-12 21:01:38.0 +0100
 burn-0.2.2/Makefile2019-12-12 21:02:43.0 +0100
+@@ -12,6 +12,9 @@
+ 
  PLUGIN = burn
  
 +# Enable DMH Archive

diff --git a/media-plugins/vdr-burn/vdr-burn-0.2.2-r1.ebuild 
b/media-plugins/vdr-burn/vdr-burn-0.2.2-r1.ebuild
index c8b7b420037..603aa97fc3d 100644
--- a/media-plugins/vdr-burn/vdr-burn-0.2.2-r1.ebuild
+++ b/media-plugins/vdr-burn/vdr-burn-0.2.2-r1.ebuild
@@ -43,8 +43,8 @@ src_prepare() {
eapply \
"${FILESDIR}"/${P}-r1_gentoo-path.diff \
"${FILESDIR}"/${P}_setdefaults.diff \
-   "${FILESDIR}"/${P}_makefile.diff \
-   
"${FILESDIR}"/${P}-missing-include-for-function-setpriority.patch
+   "${FILESDIR}"/${P}_makefile.diff
+   eapply -p0 
"${FILESDIR}"/${P}-missing-include-for-function-setpriority.patch
 
use dvdarchive && sed -i Makefile \
-e "s:#ENABLE_DMH_ARCHIVE:ENABLE_DMH_ARCHIVE:"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-freecell/files/, media-plugins/vdr-freecell/

2019-12-12 Thread Joerg Bornkessel
commit: 23b0d21a500c1b36d9df88ff30d3bc1491af208b
Author: Joerg Bornkessel  gentoo  org>
AuthorDate: Thu Dec 12 20:41:54 2019 +
Commit: Joerg Bornkessel  gentoo  org>
CommitDate: Thu Dec 12 20:41:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23b0d21a

media-plugins/vdr-freecell: fixed time_ms was not declared in this scope

Bug: https://bugs.gentoo.org/702612
Closes: https://bugs.gentoo.org/702612
Package-Manager: Portage-2.3.81, Repoman-2.3.18
Signed-off-by: Joerg Bornkessel  gentoo.org>

 .../files/vdr-freecell-0.0.2_compilefix.patch   | 17 +
 media-plugins/vdr-freecell/vdr-freecell-0.0.2-r4.ebuild |  1 +
 2 files changed, 18 insertions(+)

diff --git 
a/media-plugins/vdr-freecell/files/vdr-freecell-0.0.2_compilefix.patch 
b/media-plugins/vdr-freecell/files/vdr-freecell-0.0.2_compilefix.patch
new file mode 100644
index 000..fb97d1850ff
--- /dev/null
+++ b/media-plugins/vdr-freecell/files/vdr-freecell-0.0.2_compilefix.patch
@@ -0,0 +1,17 @@
+https://bugs.gentoo.org/702612
+compile fix for: time_ms was not declared in this scope
+
+Signed-off-by: Joerg Bornkessel  (12 Dec 2019) 
+
+diff -Naur freecell-0.0.2.orig/cards.c freecell-0.0.2/cards.c
+--- freecell-0.0.2.orig/cards.c2019-12-12 21:25:43.0 +0100
 freecell-0.0.2/cards.c 2019-12-12 21:27:38.0 +0100
+@@ -52,7 +52,7 @@
+   mX = X;
+   mY = Y;
+   mStacked = Stacked;
+-  mSeed = time_ms();
++  mSeed = cTimeMs::Now();
+ }
+ 
+ cCardStack::~cCardStack() {

diff --git a/media-plugins/vdr-freecell/vdr-freecell-0.0.2-r4.ebuild 
b/media-plugins/vdr-freecell/vdr-freecell-0.0.2-r4.ebuild
index 3d10e2af527..a8442bf991d 100644
--- a/media-plugins/vdr-freecell/vdr-freecell-0.0.2-r4.ebuild
+++ b/media-plugins/vdr-freecell/vdr-freecell-0.0.2-r4.ebuild
@@ -24,6 +24,7 @@ src_prepare() {
eapply -p2 "${FILESDIR}/gcc-3.4.patch"
eapply "${FILESDIR}/${P}-gentoo.diff"
eapply "${FILESDIR}/${P}_vdr-1.5.4-compile.diff"
+   eapply "${FILESDIR}/${P}_compilefix.patch"
 }
 
 src_install() {



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

2019-12-12 Thread Johannes Huber
commit: 65b67cbf9b6deb015ea0d84e560f3718ee4741a5
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Dec 12 20:47:50 2019 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Dec 12 20:48:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b67cbf

net-vpn/openfortivpn: Version bump 1.11.0

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Johannes Huber  gentoo.org>

 net-vpn/openfortivpn/Manifest   |  1 +
 net-vpn/openfortivpn/openfortivpn-1.11.0.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/net-vpn/openfortivpn/Manifest b/net-vpn/openfortivpn/Manifest
index cf24e2acb8a..d9251ae21bf 100644
--- a/net-vpn/openfortivpn/Manifest
+++ b/net-vpn/openfortivpn/Manifest
@@ -1,2 +1,3 @@
 DIST openfortivpn-1.10.0.tar.gz 74872 BLAKE2B 
98b6840aedb72592d95f12c011823119f1622154f1ebe20da867e6e0b8b2da666928a74d8712564d743d37b9c1ef24d9e1764cd11e86b53d4969594f549e68d6
 SHA512 
504cc489c298a59b958afe8278e3d7089fa2f5c21b0ce4c1c6e8bd99ccc670f86ba48812b844dffae04930d3398ac38e7a27768022e972f45b81f19e8400801e
+DIST openfortivpn-1.11.0.tar.gz 77325 BLAKE2B 
af899a0e096f439fd85bf65d5a6bf620fd970177ab2afbf4b4bcfec6fdd34179ec7e239ceadcf0fe326c8eb9d281e7c19756e2ea444e96c58a203f0c32795163
 SHA512 
09a1d2deea932be80306a2a394aae8553e23389668844dd16d69626bdf1e6c28f58c0d45483fbb994b046e4e4cce4bf6e1e79fcd3ebc2c4d93870f431a8553f4
 DIST openfortivpn-1.9.0.tar.gz 71903 BLAKE2B 
0f37b782944e96ba043b82bb172cdd90badf501a31f4ef253cdfc2ea59f4d478ccb4de15514df279059ad41ff3d872e2521ebc64af56844e5d3dd719e8965e18
 SHA512 
bea07d173f84562e37bbd925fc9ca1ffc4b91442792d29dd5f78849a44df7f4f677f306bb9020ca3ebdc4da1d5635bb4e746455c4ccf9ef1598c8100dcb2df7a

diff --git a/net-vpn/openfortivpn/openfortivpn-1.11.0.ebuild 
b/net-vpn/openfortivpn/openfortivpn-1.11.0.ebuild
new file mode 100644
index 000..ceec9d12a8e
--- /dev/null
+++ b/net-vpn/openfortivpn/openfortivpn-1.11.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools linux-info
+
+DESCRIPTION="Fortinet compatible VPN client"
+HOMEPAGE="https://github.com/adrienverge/openfortivpn";
+SRC_URI="https://github.com/adrienverge/openfortivpn/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3-with-openssl-exception openssl"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="libressl"
+
+DEPEND="
+   net-dialup/ppp
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+"
+RDEPEND="${DEPEND}"
+
+CONFIG_CHECK="~PPP ~PPP_ASYNC"
+
+src_prepare() {
+   default
+
+   sed -i 's/-Werror//g' Makefile.am || die "Failed to remove -Werror from 
Makefile.am"
+
+   eautoreconf
+}
+
+src_install() {
+   default
+
+   keepdir /etc/openfortivpn
+}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/tap-plugins/files/

2019-12-12 Thread Aaron Bauman
commit: b1f370c2b1d45f096f526a0ecca9cde81f737421
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu Dec 12 20:49:06 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 20:52:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f370c2

media-plugins/tap-plugins: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13961
Signed-off-by: Aaron Bauman  gentoo.org>

 .../files/tap-plugins-0.7.0-cflags-ldflags.patch   | 118 -
 1 file changed, 118 deletions(-)

diff --git 
a/media-plugins/tap-plugins/files/tap-plugins-0.7.0-cflags-ldflags.patch 
b/media-plugins/tap-plugins/files/tap-plugins-0.7.0-cflags-ldflags.patch
deleted file mode 100644
index 088d624dc3d..000
--- a/media-plugins/tap-plugins/files/tap-plugins-0.7.0-cflags-ldflags.patch
+++ /dev/null
@@ -1,118 +0,0 @@
-Index: tap-plugins-0.7.0/Makefile
-===
 tap-plugins-0.7.0.orig/Makefile
-+++ tap-plugins-0.7.0/Makefile
-@@ -34,9 +34,12 @@ INSTALL_LRDF_DIR=   /usr/local/share/lads
- 
- # GENERAL
- 
-+OPT_CFLAGS=   -O3 -fomit-frame-pointer -fstrength-reduce 
-funroll-loops -ffast-math
- CC=   gcc
--CFLAGS=   -I. -O3 -Wall -fomit-frame-pointer 
-fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC
--LDFLAGS   =   -nostartfiles -shared -Wl,-Bsymbolic -lc -lm 
-lrt
-+CFLAGS=   -I. -Wall $(OPT_CFLAGS) -c -fPIC -DPIC
-+EXTRA_LDFLAGS =   
-+LDFLAGS   =   -nostartfiles -shared -Wl,-Bsymbolic 
$(EXTRA_LDFLAGS)
-+LIBADD=   -lc -lm -lrt
- 
- PLUGINS   =   tap_autopan.so \
-   tap_chorusflanger.so \
-@@ -65,79 +68,79 @@ all: $(PLUGINS)
- 
- tap_tremolo.so: tap_tremolo.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_tremolo.c -o tap_tremolo.o
--  $(CC) $(LDFLAGS) -o tap_tremolo.so tap_tremolo.o
-+  $(CC) $(LDFLAGS) -o tap_tremolo.so tap_tremolo.o $(LIBADD)
- 
- tap_eq.so: tap_eq.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_eq.c -o tap_eq.o
--  $(CC) $(LDFLAGS) -o tap_eq.so tap_eq.o
-+  $(CC) $(LDFLAGS) -o tap_eq.so tap_eq.o $(LIBADD)
- 
- tap_eqbw.so: tap_eqbw.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_eqbw.c -o tap_eqbw.o
--  $(CC) $(LDFLAGS) -o tap_eqbw.so tap_eqbw.o
-+  $(CC) $(LDFLAGS) -o tap_eqbw.so tap_eqbw.o $(LIBADD)
- 
- tap_echo.so: tap_echo.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_echo.c -o tap_echo.o
--  $(CC) $(LDFLAGS) -o tap_echo.so tap_echo.o
-+  $(CC) $(LDFLAGS) -o tap_echo.so tap_echo.o $(LIBADD)
- 
- tap_reverb.so: tap_reverb.c tap_reverb.h tap_reverb_presets.h tap_utils.h 
ladspa.h
-   $(CC) $(CFLAGS) tap_reverb.c -o tap_reverb.o
--  $(CC) $(LDFLAGS) -o tap_reverb.so tap_reverb.o
-+  $(CC) $(LDFLAGS) -o tap_reverb.so tap_reverb.o $(LIBADD)
- 
- tap_limiter.so: tap_limiter.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_limiter.c -o tap_limiter.o
--  $(CC) $(LDFLAGS) -o tap_limiter.so tap_limiter.o
-+  $(CC) $(LDFLAGS) -o tap_limiter.so tap_limiter.o $(LIBADD)
- 
- tap_autopan.so: tap_autopan.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_autopan.c -o tap_autopan.o
--  $(CC) $(LDFLAGS) -o tap_autopan.so tap_autopan.o
-+  $(CC) $(LDFLAGS) -o tap_autopan.so tap_autopan.o $(LIBADD)
- 
- tap_deesser.so: tap_deesser.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_deesser.c -o tap_deesser.o
--  $(CC) $(LDFLAGS) -o tap_deesser.so tap_deesser.o
-+  $(CC) $(LDFLAGS) -o tap_deesser.so tap_deesser.o $(LIBADD)
- 
- tap_vibrato.so: tap_vibrato.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_vibrato.c -o tap_vibrato.o
--  $(CC) $(LDFLAGS) -o tap_vibrato.so tap_vibrato.o
-+  $(CC) $(LDFLAGS) -o tap_vibrato.so tap_vibrato.o $(LIBADD)
- 
- tap_rotspeak.so: tap_rotspeak.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_rotspeak.c -o tap_rotspeak.o
--  $(CC) $(LDFLAGS) -o tap_rotspeak.so tap_rotspeak.o
-+  $(CC) $(LDFLAGS) -o tap_rotspeak.so tap_rotspeak.o $(LIBADD)
- 
- tap_pitch.so: tap_pitch.c tap_utils.h ladspa.h
-   $(CC) $(CFLAGS) tap_pitch.c -o tap_pitch.o
--  $(CC) $(LDFLAGS) -o tap_pitch.so tap_pitch.o
-+  $(CC) $(LDFLAGS) -o tap_pitch.so tap_pitch.o $(LIBADD)
- 
- tap_dynamics_m.so: tap_dynamics_m.c tap_dynamics_presets.h tap_utils.h 
ladspa.h
-   $(CC) $(CFLAGS) tap_dynamics_m.c -o tap_dynamics_m.o
--  $(CC) $(LDFLAGS) -o tap_dynamics_m.so tap_dynamics_m.o
-+  $(CC) $(LDFLAGS) -o tap_dynamics_m.so tap_dynamics_m.o $(LIBADD)
- 
- tap_dynamics_st.so: tap_dynamics_st.c tap_dynamics_presets.h tap_utils.h 
ladspa.h
-   $(CC) $(CFLAGS) tap_dynamics_st.c -o tap_dynamics_st.o
--  $(CC) $(LDFLAGS) -o tap_dynamics_st.so tap_dynamics_st.o
-+  $(CC) $(LDFLAGS) -o tap_dynamics_st.so tap_dynamics_st.o $(LIBADD)
- 
- tap_reflect

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

2019-12-12 Thread Aaron Bauman
commit: 749baee0da82080e32434b53b92a1c4db5afc4dc
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu Dec 12 20:47:17 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 20:52:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749baee0

sci-mathematics/z3: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13960
Signed-off-by: Aaron Bauman  gentoo.org>

 sci-mathematics/z3/files/z3-4.4.1-gcc-6.patch | 18 --
 1 file changed, 18 deletions(-)

diff --git a/sci-mathematics/z3/files/z3-4.4.1-gcc-6.patch 
b/sci-mathematics/z3/files/z3-4.4.1-gcc-6.patch
deleted file mode 100644
index 2dc0ddd12f2..000
--- a/sci-mathematics/z3/files/z3-4.4.1-gcc-6.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/src/util/debug.cpp b/src/util/debug.cpp
-index 54c67fe..66676c6 100644
 a/src/util/debug.cpp
-+++ b/src/util/debug.cpp
-@@ -78,3 +78,3 @@ void invoke_gdb() {
- char result;
--bool ok = (std::cin >> result);
-+bool ok = bool(std::cin >> result);
- if (!ok) exit(ERR_INTERNAL_FATAL); // happens if std::cin is eof or 
unattached.
-diff --git a/src/util/mpz.cpp b/src/util/mpz.cpp
-index 8559279..7dca14b 100644
 a/src/util/mpz.cpp
-+++ b/src/util/mpz.cpp
-@@ -136,3 +136,3 @@ mpz_manager::mpz_manager():
- mpz one(1);
--set(m_two64, UINT64_MAX);
-+set(m_two64, (uint64)UINT64_MAX);
- add(m_two64, one, m_two64);



[gentoo-commits] repo/gentoo:master commit in: media-sound/jack-rack/files/

2019-12-12 Thread Aaron Bauman
commit: c1543e8ec5c3689d2228897ab75bb52eee916c7f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu Dec 12 20:49:47 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 20:52:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1543e8e

media-sound/jack-rack: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13962
Signed-off-by: Aaron Bauman  gentoo.org>

 media-sound/jack-rack/files/jack-rack-1.4.5-asneeded.patch | 13 -
 1 file changed, 13 deletions(-)

diff --git a/media-sound/jack-rack/files/jack-rack-1.4.5-asneeded.patch 
b/media-sound/jack-rack/files/jack-rack-1.4.5-asneeded.patch
deleted file mode 100644
index 4a07049f060..000
--- a/media-sound/jack-rack/files/jack-rack-1.4.5-asneeded.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: jack-rack-1.4.5/src/Makefile.am
-===
 jack-rack-1.4.5.orig/src/Makefile.am
-+++ jack-rack-1.4.5/src/Makefile.am
-@@ -60,7 +60,7 @@ jack_rack_CFLAGS = \
-   -DGNOME_DISABLE_DEPRECATED=1
- 
- 
--jack_rack_LDFLAGS = \
-+jack_rack_LDADD = \
-   $(JACK_LIBS) \
-   $(GTK_LIBS) \
-   $(GNOMEUI_LIBS) \



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

2019-12-12 Thread Aaron Bauman
commit: 51bed4fe21ed5f166206ac7ab51fd937ed75d42c
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu Dec 12 20:48:03 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 20:52:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51bed4fe

sys-libs/libunwind: remove unused patches

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13959
Signed-off-by: Aaron Bauman  gentoo.org>

 .../files/libunwind-1.1-fix-CVE-2015-3239.patch| 15 --
 sys-libs/libunwind/files/libunwind-1.1-lzma.patch  | 63 --
 2 files changed, 78 deletions(-)

diff --git a/sys-libs/libunwind/files/libunwind-1.1-fix-CVE-2015-3239.patch 
b/sys-libs/libunwind/files/libunwind-1.1-fix-CVE-2015-3239.patch
deleted file mode 100644
index 153108bbb15..000
--- a/sys-libs/libunwind/files/libunwind-1.1-fix-CVE-2015-3239.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-taken from Fedora
-
-https://bugs.gentoo.org/585830
-
 libunwind-1.1/include/dwarf_i.h.CVE20153239
-+++ libunwind-1.1/include/dwarf_i.h
-@@ -20,7 +20,7 @@
- extern const uint8_t dwarf_to_unw_regnum_map[DWARF_REGNUM_MAP_LENGTH];
- /* REG is evaluated multiple times; it better be side-effects free!  */
- # define dwarf_to_unw_regnum(reg)   \
--  (((reg) <= DWARF_REGNUM_MAP_LENGTH) ? dwarf_to_unw_regnum_map[reg] : 0)
-+  (((reg) < DWARF_REGNUM_MAP_LENGTH) ? dwarf_to_unw_regnum_map[reg] : 0)
- #endif
- 
- #ifdef UNW_LOCAL_ONLY

diff --git a/sys-libs/libunwind/files/libunwind-1.1-lzma.patch 
b/sys-libs/libunwind/files/libunwind-1.1-lzma.patch
deleted file mode 100644
index 09cefa02853..000
--- a/sys-libs/libunwind/files/libunwind-1.1-lzma.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-From 38c349bb000b427c376e756e3ecdb764a2b4d297 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger 
-Date: Sat, 15 Feb 2014 21:00:59 -0500
-Subject: [PATCH] link sublibs against liblzma as needed
-
-The coredump/elf32/elf64/elfxx libs use lzma funcs but don't link against
-it.  This produces sub-shared libs that don't link against lzma and can
-make the linker angry due to underlinking like so:
-
-libtool: link: x86_64-pc-linux-gnu-gcc -O2 -march=amdfam10 -pipe -g \
-   -frecord-gcc-switches -Wimplicit-function-declaration -fexceptions \
-   -Wall -Wsign-compare -Wl,-O1 -Wl,--hash-style=gnu \
-   -o .libs/test-coredump-unwind test-coredump-unwind.o  \
-   ../src/.libs/libunwind-coredump.so ../src/.libs/libunwind-x86_64.so
-../src/.libs/libunwind-coredump.so: error: undefined reference to 
'lzma_stream_footer_decode'
-../src/.libs/libunwind-coredump.so: error: undefined reference to 
'lzma_index_buffer_decode'
-../src/.libs/libunwind-coredump.so: error: undefined reference to 
'lzma_index_size'
-../src/.libs/libunwind-coredump.so: error: undefined reference to 
'lzma_index_end'
-../src/.libs/libunwind-coredump.so: error: undefined reference to 
'lzma_index_uncompressed_size'
-../src/.libs/libunwind-coredump.so: error: undefined reference to 
'lzma_stream_buffer_decode'
-collect2: error: ld returned 1 exit status
-
-So add LIBLZMA to the right LIBADD for each of these libraries.
-
-URL: https://bugs.gentoo.org/444050
-Signed-off-by: Mike Frysinger 

- src/Makefile.am | 4 
- 1 file changed, 4 insertions(+)
-
 a/src/Makefile.in
-+++ b/src/Makefile.in
-@@ -169,7 +169,7 @@ libunwind_arm_la_LINK = $(LIBTOOL) --tag=CC 
$(AM_LIBTOOLFLAGS) \
-   $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-   $(libunwind_arm_la_LDFLAGS) $(LDFLAGS) -o $@
- @ARCH_ARM_TRUE@am_libunwind_arm_la_rpath = -rpath $(libdir)
--libunwind_coredump_la_LIBADD =
-+libunwind_coredump_la_LIBADD = $(LIBLZMA)
- am__libunwind_coredump_la_SOURCES_DIST = coredump/_UCD_accessors.c \
-   coredump/_UCD_create.c coredump/_UCD_destroy.c \
-   coredump/_UCD_access_mem.c coredump/_UCD_elf_map_image.c \
-@@ -214,15 +214,15 @@ am_libunwind_dwarf_local_la_OBJECTS = dwarf/Lexpr.lo 
dwarf/Lfde.lo \
- libunwind_dwarf_local_la_OBJECTS =  \
-   $(am_libunwind_dwarf_local_la_OBJECTS)
- @REMOTE_ONLY_FALSE@@USE_DWARF_TRUE@am_libunwind_dwarf_local_la_rpath =
--libunwind_elf32_la_LIBADD =
-+libunwind_elf32_la_LIBADD = $(LIBLZMA)
- am_libunwind_elf32_la_OBJECTS = elf32.lo
- libunwind_elf32_la_OBJECTS = $(am_libunwind_elf32_la_OBJECTS)
- @USE_ELF32_TRUE@am_libunwind_elf32_la_rpath =
--libunwind_elf64_la_LIBADD =
-+libunwind_elf64_la_LIBADD = $(LIBLZMA)
- am_libunwind_elf64_la_OBJECTS = elf64.lo
- libunwind_elf64_la_OBJECTS = $(am_libunwind_elf64_la_OBJECTS)
- @USE_ELF64_TRUE@am_libunwind_elf64_la_rpath =
--libunwind_elfxx_la_LIBADD =
-+libunwind_elfxx_la_LIBADD = $(LIBLZMA)
- am_libunwind_elfxx_la_OBJECTS = elfxx.lo
- libunwind_elfxx_la_OBJECTS = $(am_libunwind_elfxx_la_OBJECTS)
- @USE_ELFXX_TRUE@am_libunwind_elfxx_la_rpath =
--- 
-1.8.5.5
-



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

2019-12-12 Thread Alexey Shvetsov
commit: ee71f2fc246b2ab4fc6220c8fddbf3a4ae347172
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Thu Dec 12 21:28:19 2019 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Thu Dec 12 21:28:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee71f2fc

dev-embedded/platformio: version bump

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Alexey Shvetsov  gentoo.org>

 dev-embedded/platformio/Manifest  | 2 +-
 .../platformio/{platformio-4.0.3.ebuild => platformio-4.1.0.ebuild}   | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-embedded/platformio/Manifest b/dev-embedded/platformio/Manifest
index be81035ad60..3f393f7cbe1 100644
--- a/dev-embedded/platformio/Manifest
+++ b/dev-embedded/platformio/Manifest
@@ -1 +1 @@
-DIST platformio-4.0.3.tar.gz 140824 BLAKE2B 
e8148496a5e445da463d8862ee1021b21864789100dbd0b84d188d96f27148a843794cf7dc4ab3c4ca607a63055300675ff0da93b841d3682fc4fc2c629ab9c6
 SHA512 
6db6dc18f21145fd597ac5977f33fed8854e9d9f8994a1b517891305a3e936b64c1693be7fff9b44d67f50253ba0a3210d30499b76538ca86ce8af2e8e6fd7d6
+DIST platformio-4.1.0.tar.gz 157907 BLAKE2B 
e90d2b155121cd2be0b0d77a7a196e7fe03580083444056d06a86a343166c920cd1ac6252a0003acee4de5d3933fead939b8be8d67233e93c05537511344e27b
 SHA512 
e4d6c29ebb8fb1b2b556affbc1a50ec84d12e878bb7e6cfb253861eb5429236d8226d1a29f1a3812c0aa2c5b4895f0354184a9cb28c300db2e2e5a2ededb82fe

diff --git a/dev-embedded/platformio/platformio-4.0.3.ebuild 
b/dev-embedded/platformio/platformio-4.1.0.ebuild
similarity index 88%
rename from dev-embedded/platformio/platformio-4.0.3.ebuild
rename to dev-embedded/platformio/platformio-4.1.0.ebuild
index 4c24782d2e4..1f8f4115e0f 100644
--- a/dev-embedded/platformio/platformio-4.0.3.ebuild
+++ b/dev-embedded/platformio/platformio-4.1.0.ebuild
@@ -33,4 +33,6 @@ RDEPEND="${DEPEND}
>=dev-python/tabulate-0.8.3[${PYTHON_USEDEP}]
=dev-python/pyelftools-0.25[${PYTHON_USEDEP}]
-   =dev-python/marshmallow-2.20.5[${PYTHON_USEDEP}]
+   

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

2019-12-12 Thread Alexey Shvetsov
commit: 297e8936d7f36a6d0f478ded996f24ae747821a7
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Thu Dec 12 21:27:28 2019 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Thu Dec 12 21:27:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=297e8936

dev-python/marshmallow: Add 2.20.5 as dep for platformio

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Alexey Shvetsov  gentoo.org>

 dev-python/marshmallow/Manifest  |  1 +
 dev-python/marshmallow/marshmallow-2.20.5.ebuild | 38 
 2 files changed, 39 insertions(+)

diff --git a/dev-python/marshmallow/Manifest b/dev-python/marshmallow/Manifest
index aa40c00867c..c30618831c6 100644
--- a/dev-python/marshmallow/Manifest
+++ b/dev-python/marshmallow/Manifest
@@ -1,2 +1,3 @@
 DIST marshmallow-2.20.2.tar.gz 152437 BLAKE2B 
0d31537051c45bad52d922439d1cb9d69fc4a4bc2767d6a13bfe32a9edc978cadf9b1c508ae51532f5661291f32ed4b7c5e54f5fcd092eb4ebd7d3045521e9b8
 SHA512 
05511aafa978377152ea8ea1b70dd5558782bf634df5ae52453bfa65c7ec9270a12cd7a32e11872808a3289cfab2ef0380e129e84878511872e7cc95b0792453
+DIST marshmallow-2.20.5.tar.gz 152733 BLAKE2B 
ba509624e3715ace53eeb1a835f533172d676b3645ae3226c6da3727dafef7084bde896f3a66459112d599e3e422d600d150934313b813fea9d819658ce3b4bf
 SHA512 
a02b6a3341d2cd08174937112eba2f69a07de59054a088eef64ac12703699e2b6f561ce76ebc0cb43334056f02f3898098bb0d3501ae8a1b6350f9a168eb3355
 DIST marshmallow-3.0.1.tar.gz 168186 BLAKE2B 
6c89fed45c144a855c692bee39390e1c80b2977274acb704095e76567e6ed00643704473f95abac7fabb4c1d1d96b90cb9a6fe3a127a09a0d2a4c72c02358baf
 SHA512 
085a7e9b265bb8623e4decb32fa172d62bca3ba3c5303f12715be1b0ab6553b1978e28db520a6a7a25778915c770ac83c607bdebf5e4d26746cd69f2d555

diff --git a/dev-python/marshmallow/marshmallow-2.20.5.ebuild 
b/dev-python/marshmallow/marshmallow-2.20.5.ebuild
new file mode 100644
index 000..a9acebf6251
--- /dev/null
+++ b/dev-python/marshmallow/marshmallow-2.20.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="A lightweight library for converting complex datatypes to and 
from native Python datatypes."
+HOMEPAGE="https://github.com/marshmallow-code/marshmallow/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/simplejson[${PYTHON_USEDEP}]
+   )"
+
+src_prepare() {
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   if [[ ${EPYTHON} == python2.7 ]]; then
+   rm -rf tests/test_py3 || die
+   fi
+   py.test -v || die "tests failed under ${EPYTHON}"
+}



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

2019-12-12 Thread Aaron Bauman
commit: f1a0831532bcade670a4c3f6fa35691648fa66a0
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Dec 12 21:30:17 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 21:32:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a08315

profiles/package.mask: mask dev-util/cmt

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index daf27c0b968..a1c9c1fadfd 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2019-12-12)
+# Multiple QA issues and docs no longer build
+# Removal in 30 days
+dev-util/cmt
+
 # Ulrich Müller  (2019-12-11)
 # No license. HOMEPAGE and SRC_URI are dead.
 # Last visible upstream activity in 2000.



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

2019-12-12 Thread Mike Gilbert
commit: 8a0b6b3983dcea3845214ecd7d4f9ef420d9da1e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Dec 12 21:39:17 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Dec 12 21:40:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a0b6b39

net-misc/freerdp: add logic for libswscale / cairo

Closes: https://bugs.gentoo.org/698392
Package-Manager: Portage-2.3.80_p5, Repoman-2.3.19_p4
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/freerdp/freerdp-.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/net-misc/freerdp/freerdp-.ebuild 
b/net-misc/freerdp/freerdp-.ebuild
index 7c33bd96354..e76413183e5 100644
--- a/net-misc/freerdp/freerdp-.ebuild
+++ b/net-misc/freerdp/freerdp-.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="http://www.freerdp.com/";
 
 LICENSE="Apache-2.0"
 SLOT="0/2"
-IUSE="alsa +client cpu_flags_arm_neon cups debug doc ffmpeg gstreamer jpeg 
libav libressl openh264 pulseaudio server smartcard systemd test usb wayland X 
xinerama xv"
+IUSE="alsa +client cpu_flags_arm_neon cups debug doc +ffmpeg gstreamer jpeg 
libav libressl openh264 pulseaudio server smartcard systemd test usb wayland X 
xinerama xv"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
@@ -49,6 +49,9 @@ RDEPEND="
libav? ( media-video/libav:0= )
!libav? ( media-video/ffmpeg:0= )
)
+   !ffmpeg? (
+   x11-libs/cairo:0=
+   )
gstreamer? (
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
@@ -103,6 +106,8 @@ src_configure() {
-DWITH_DEBUG_ALL=$(usex-on-off debug)
-DWITH_MANPAGES=$(usex-on-off doc)
-DWITH_FFMPEG=$(usex-on-off ffmpeg)
+   -DWITH_SWSCALE=$(usex-on-off ffmpeg)
+   -DWITH_CAIRO=$(usex ffmpeg OFF ON)
-DWITH_DSP_FFMPEG=$(usex-on-off ffmpeg)
-DWITH_GSTREAMER_1_0=$(usex-on-off gstreamer)
-DWITH_JPEG=$(usex-on-off jpeg)



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

2019-12-12 Thread Sergei Trofimovich
commit: 737696f8a80c9815365b1c426c161597cdae83ea
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Dec 12 21:45:21 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec 12 21:46:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=737696f8

profiles/default/linux/m68k: delete most 17.0 profiles

This change deletes the following profiles:
default/linux/m68k/17.0/desktop (exp)
default/linux/m68k/17.0/desktop/gnome (exp)
default/linux/m68k/17.0/developer (exp)

Use plain 'default/linux/m68k/17.0' instead.

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

 profiles/default/linux/m68k/17.0/desktop/deprecated   | 1 -
 profiles/default/linux/m68k/17.0/desktop/eapi | 1 -
 profiles/default/linux/m68k/17.0/desktop/gnome/deprecated | 1 -
 profiles/default/linux/m68k/17.0/desktop/gnome/eapi   | 1 -
 profiles/default/linux/m68k/17.0/desktop/gnome/parent | 2 --
 profiles/default/linux/m68k/17.0/desktop/parent   | 2 --
 profiles/default/linux/m68k/17.0/developer/deprecated | 1 -
 profiles/default/linux/m68k/17.0/developer/eapi   | 1 -
 profiles/default/linux/m68k/17.0/developer/parent | 2 --
 profiles/profiles.desc| 3 ---
 10 files changed, 15 deletions(-)

diff --git a/profiles/default/linux/m68k/17.0/desktop/deprecated 
b/profiles/default/linux/m68k/17.0/desktop/deprecated
deleted file mode 100644
index f89fa8f95f0..000
--- a/profiles/default/linux/m68k/17.0/desktop/deprecated
+++ /dev/null
@@ -1 +0,0 @@
-default/linux/m68k/17.0

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

diff --git a/profiles/default/linux/m68k/17.0/desktop/gnome/deprecated 
b/profiles/default/linux/m68k/17.0/desktop/gnome/deprecated
deleted file mode 100644
index f89fa8f95f0..000
--- a/profiles/default/linux/m68k/17.0/desktop/gnome/deprecated
+++ /dev/null
@@ -1 +0,0 @@
-default/linux/m68k/17.0

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

diff --git a/profiles/default/linux/m68k/17.0/desktop/gnome/parent 
b/profiles/default/linux/m68k/17.0/desktop/gnome/parent
deleted file mode 100644
index 6589a0e0147..000
--- a/profiles/default/linux/m68k/17.0/desktop/gnome/parent
+++ /dev/null
@@ -1,2 +0,0 @@
-..
-../../../../../../targets/desktop/gnome

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

diff --git a/profiles/default/linux/m68k/17.0/developer/deprecated 
b/profiles/default/linux/m68k/17.0/developer/deprecated
deleted file mode 100644
index f89fa8f95f0..000
--- a/profiles/default/linux/m68k/17.0/developer/deprecated
+++ /dev/null
@@ -1 +0,0 @@
-default/linux/m68k/17.0

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

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

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index 9d14fc0487b..ec014ab7f3c 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -120,9 +120,6 @@ ia64default/linux/ia64/17.0/developer   
stable
 # M68K Profiles
 # @MAINTAINER: m...@gentoo.org
 m68kdefault/linux/m68k/17.0 exp
-m68kdefault/linux/m68k/17.0/desktop exp
-m68kdefault/linux/m68k/17.0/desktop/gnome   exp
-m68kdefault/linux/m68k/17.0/developer   exp
 
 # MIPS Profiles
 # @MAINTAINER: m...@gentoo.org



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

2019-12-12 Thread Mike Gilbert
commit: e550030e2b1cc4638484661ddd46df350d091be9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Dec 12 21:46:54 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Dec 12 21:47:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e550030e

net-misc/freerdp: inline usex-on-off again

Package-Manager: Portage-2.3.80_p5, Repoman-2.3.19_p4
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/freerdp/freerdp-.ebuild | 48 +---
 1 file changed, 22 insertions(+), 26 deletions(-)

diff --git a/net-misc/freerdp/freerdp-.ebuild 
b/net-misc/freerdp/freerdp-.ebuild
index e76413183e5..0bc7c2735df 100644
--- a/net-misc/freerdp/freerdp-.ebuild
+++ b/net-misc/freerdp/freerdp-.ebuild
@@ -91,36 +91,32 @@ BDEPEND="
) ) )
 "
 
-usex-on-off() {
-   usex "$1" ON OFF
-}
-
 src_configure() {
local mycmakeargs=(
-   -DBUILD_TESTING=$(usex-on-off test)
-   -DCHANNEL_URBDRC=$(usex-on-off usb)
-   -DWITH_ALSA=$(usex-on-off alsa)
+   -DBUILD_TESTING=$(usex test ON OFF)
+   -DCHANNEL_URBDRC=$(usex usb ON OFF)
+   -DWITH_ALSA=$(usex alsa ON OFF)
-DWITH_CCACHE=OFF
-   -DWITH_CLIENT=$(usex-on-off client)
-   -DWITH_CUPS=$(usex-on-off cups)
-   -DWITH_DEBUG_ALL=$(usex-on-off debug)
-   -DWITH_MANPAGES=$(usex-on-off doc)
-   -DWITH_FFMPEG=$(usex-on-off ffmpeg)
-   -DWITH_SWSCALE=$(usex-on-off ffmpeg)
+   -DWITH_CLIENT=$(usex client ON OFF)
+   -DWITH_CUPS=$(usex cups ON OFF)
+   -DWITH_DEBUG_ALL=$(usex debug ON OFF)
+   -DWITH_MANPAGES=$(usex doc ON OFF)
+   -DWITH_FFMPEG=$(usex ffmpeg ON OFF)
+   -DWITH_SWSCALE=$(usex ffmpeg ON OFF)
-DWITH_CAIRO=$(usex ffmpeg OFF ON)
-   -DWITH_DSP_FFMPEG=$(usex-on-off ffmpeg)
-   -DWITH_GSTREAMER_1_0=$(usex-on-off gstreamer)
-   -DWITH_JPEG=$(usex-on-off jpeg)
-   -DWITH_NEON=$(usex-on-off cpu_flags_arm_neon)
-   -DWITH_OPENH264=$(usex-on-off openh264)
-   -DWITH_PULSE=$(usex-on-off pulseaudio)
-   -DWITH_SERVER=$(usex-on-off server)
-   -DWITH_PCSC=$(usex-on-off smartcard)
-   -DWITH_LIBSYSTEMD=$(usex-on-off systemd)
-   -DWITH_X11=$(usex-on-off X)
-   -DWITH_XINERAMA=$(usex-on-off xinerama)
-   -DWITH_XV=$(usex-on-off xv)
-   -DWITH_WAYLAND=$(usex-on-off wayland)
+   -DWITH_DSP_FFMPEG=$(usex ffmpeg ON OFF)
+   -DWITH_GSTREAMER_1_0=$(usex gstreamer ON OFF)
+   -DWITH_JPEG=$(usex jpeg ON OFF)
+   -DWITH_NEON=$(usex cpu_flags_arm_neon ON OFF)
+   -DWITH_OPENH264=$(usex openh264 ON OFF)
+   -DWITH_PULSE=$(usex pulseaudio ON OFF)
+   -DWITH_SERVER=$(usex server ON OFF)
+   -DWITH_PCSC=$(usex smartcard ON OFF)
+   -DWITH_LIBSYSTEMD=$(usex systemd ON OFF)
+   -DWITH_X11=$(usex X ON OFF)
+   -DWITH_XINERAMA=$(usex xinerama ON OFF)
+   -DWITH_XV=$(usex xv ON OFF)
+   -DWITH_WAYLAND=$(usex wayland ON OFF)
)
cmake-utils_src_configure
 }



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

2019-12-12 Thread David Seifert
commit: e88764ba6a2f9d049cf5bdd4824c9721e1f2a807
Author: David Seifert  gentoo  org>
AuthorDate: Thu Dec 12 21:48:06 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Dec 12 21:48:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88764ba

media-libs/libquvi: Remove old

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

 media-libs/libquvi/Manifest|  2 --
 media-libs/libquvi/libquvi-0.4.1-r2.ebuild | 43 -
 media-libs/libquvi/libquvi-0.4.1.ebuild| 41 
 media-libs/libquvi/libquvi-0.9.3.ebuild| 44 --
 media-libs/libquvi/libquvi-0.9.4.ebuild| 44 --
 5 files changed, 174 deletions(-)

diff --git a/media-libs/libquvi/Manifest b/media-libs/libquvi/Manifest
index e340456d721..6fd3798cd6f 100644
--- a/media-libs/libquvi/Manifest
+++ b/media-libs/libquvi/Manifest
@@ -1,3 +1 @@
-DIST libquvi-0.4.1.tar.xz 262740 BLAKE2B 
9479f894ddeec020a73d86d8899fd507c04827ee1a08fbf2456639afb209655a6359d94f6cd08549f447617db9be1f38f294a2088e2f010c478a5fb7dce3b8f7
 SHA512 
a16b144651a3c7d7cf0a6b8d111fe9822e3d37531f82a2406b9ae5c32fd401301e7a281081be81857c9146d0af2fb4b53026248b2cb49929b36480596a6724dd
-DIST libquvi-0.9.3.tar.xz 372012 BLAKE2B 
f97251a94338054ef8a40318b488912309663da6537fc7cba42f29c0d97c3c82fb52a53628fc2a47ae4ff1fc24e780b7fb29332621c5a0ea59ecd28abc2c6c2a
 SHA512 
3d80ad117a1698dbef49bd510a0d5686fb7562a895f0ba1897a28dbad4237f0249d3db65f3a497f297ba3f4c6084dde71a95b4eb65990e7a063df9d51c34bf26
 DIST libquvi-0.9.4.tar.xz 373172 BLAKE2B 
ab351a74d7cb3a19d3ddad615a476f139f76d1e8bfe4b6b049384bb6833f36cc5c0d1e87044f1d408241a90a898a55d7747eb5eb9daa009af512c281bc15cb94
 SHA512 
287015e370e7b7f98f0f4c3717f5b044c8fcfb8b823c7988cd248e56b5fbbfa1a1aa421fbdafb38d727b79495267ccd4dead71587052117db53f29236268b651

diff --git a/media-libs/libquvi/libquvi-0.4.1-r2.ebuild 
b/media-libs/libquvi/libquvi-0.4.1-r2.ebuild
deleted file mode 100644
index 09c9c35ba3e..000
--- a/media-libs/libquvi/libquvi-0.4.1-r2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils multilib-minimal
-
-DESCRIPTION="Library for parsing video download links"
-HOMEPAGE="http://quvi.sourceforge.net/";
-SRC_URI="mirror://sourceforge/quvi/${PV:0:3}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0.4"
-KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
-IUSE="examples static-libs"
-
-RDEPEND=">=net-misc/curl-7.36.0[${MULTILIB_USEDEP}]
-   !=media-libs/libquvi-scripts-0.4.21-r1:0.4[${MULTILIB_USEDEP}]
-   >=dev-lang/lua-5.1.5-r3[deprecated,${MULTILIB_USEDEP}]
-   !=media-libs/libquvi-0.4*:0"
-DEPEND="${RDEPEND}
-   app-arch/xz-utils
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-multilib_src_configure() {
-   local myeconfargs=(
-   --without-manual
-   )
-   autotools-utils_src_configure
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   prune_libtool_files
-
-   if use examples ; then
-   docinto examples
-   dodoc examples/*.{c,h}
-   fi
-}

diff --git a/media-libs/libquvi/libquvi-0.4.1.ebuild 
b/media-libs/libquvi/libquvi-0.4.1.ebuild
deleted file mode 100644
index bee14917443..000
--- a/media-libs/libquvi/libquvi-0.4.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils
-
-DESCRIPTION="Library for parsing video download links"
-HOMEPAGE="http://quvi.sourceforge.net/";
-SRC_URI="mirror://sourceforge/quvi/${PV:0:3}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE="examples static-libs"
-
-RDEPEND=">=net-misc/curl-7.18.2
-   !=media-libs/libquvi-scripts-0.4.0
-   >=dev-lang/lua-5.1[deprecated]"
-DEPEND="${RDEPEND}
-   app-arch/xz-utils
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-src_configure() {
-   local myeconfargs=(
-   --with-manual
-   )
-   autotools-utils_src_configure
-}
-
-src_install() {
-   autotools-utils_src_install
-
-   if use examples ; then
-   docinto examples
-   dodoc examples/*.{c,h}
-   fi
-}

diff --git a/media-libs/libquvi/libquvi-0.9.3.ebuild 
b/media-libs/libquvi/libquvi-0.9.3.ebuild
deleted file mode 100644
index cea22c17c9d..000
--- a/media-libs/libquvi/libquvi-0.9.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-AUTOTOOLS_AUTORECONF=1
-
-inherit autotools-utils
-
-DESCRIPTION="Library for parsing video download links"
-HOMEPAGE="http://quvi.sourceforge.net/

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

2019-12-12 Thread David Seifert
commit: af45e3da9f511affd910eea61109dbd9f8bf5bf7
Author: David Seifert  gentoo  org>
AuthorDate: Thu Dec 12 21:48:03 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Dec 12 21:48:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af45e3da

media-libs/quvi: Remove old

Closes: https://github.com/gentoo/gentoo/pull/13957
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 media-libs/quvi/Manifest  |  2 --
 media-libs/quvi/quvi-0.4.2.ebuild | 24 
 media-libs/quvi/quvi-0.9.4.ebuild | 38 --
 3 files changed, 64 deletions(-)

diff --git a/media-libs/quvi/Manifest b/media-libs/quvi/Manifest
index d6a1c399967..cedc9062a73 100644
--- a/media-libs/quvi/Manifest
+++ b/media-libs/quvi/Manifest
@@ -1,3 +1 @@
-DIST quvi-0.4.2.tar.xz 118756 BLAKE2B 
4b00ef7ba8cc784177070c2146a42a827ec78ce08f3bdb7422ea18dc074d92410d0d6350acf03246648aea1c8e4253a20ba9fbd998e6023657474c60f79a01bc
 SHA512 
a0cd26711123bd61e91534e510dd96fe290eb19eacaabe52c36b0064dee1ce410e80eddbe5995392e3769ae3c602b93b5132507a2d43d765e2b98e8488ea8f86
-DIST quvi-0.9.4.tar.xz 315768 BLAKE2B 
307fb6f45567f1fd5ab15cc0b110eda06404c8a165d93063bdeeac33c39a7fce631e8b73934d6b14d1cdd5488e6101ea2688f7a1ec70044005d3e69bf482ae63
 SHA512 
fcec2a95de1a93734803177b515f0578a0722950d145ac8a37c48864281152005190bb9c9a76473b94df9b74ca80a58363435e196106b15093f484e6d4a1316d
 DIST quvi-0.9.5.tar.xz 316676 BLAKE2B 
f9d8aa9ffd1cc70b17c4ce77648bc46f178b5eb0faa238636bb702701d8a1f249fb3a56a0fa0f5840efcd53532609bdcc0010fd90163f4619746a196ab269267
 SHA512 
ef50160b7f2b6b8c9049eb995cb26da3100b10e7af8206d98d2e128cde300ceb05a24dded06d7d49c0e691fcc2de5a4c5c9e9f439d40ca52cd0a3a24330c6d79

diff --git a/media-libs/quvi/quvi-0.4.2.ebuild 
b/media-libs/quvi/quvi-0.4.2.ebuild
deleted file mode 100644
index e2500960485..000
--- a/media-libs/quvi/quvi-0.4.2.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="A command line tool for parsing video download links"
-HOMEPAGE="http://quvi.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${PV:0:3}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 x86"
-IUSE=""
-
-RDEPEND=">=net-misc/curl-7.18.2
-   >=media-libs/libquvi-0.4.0"
-DEPEND="${RDEPEND}
-   app-arch/xz-utils
-   virtual/pkgconfig"
-
-src_configure() {
-   econf \
-   --with-manual
-}

diff --git a/media-libs/quvi/quvi-0.9.4.ebuild 
b/media-libs/quvi/quvi-0.9.4.ebuild
deleted file mode 100644
index 37b11ccaf8f..000
--- a/media-libs/quvi/quvi-0.9.4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-AUTOTOOLS_AUTORECONF=1
-
-inherit autotools-utils
-
-DESCRIPTION="A command line tool for parsing video download links"
-HOMEPAGE="http://quvi.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${PV:0:3}/${P}.tar.xz"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="json nls xml"
-
-RDEPEND=">=dev-libs/glib-2.24:2
-   >=net-misc/curl-7.21.0
-   >=media-libs/libquvi-0.9.2:=
-   json? ( >=dev-libs/json-glib-0.12 )
-   nls? ( virtual/libintl )
-   xml? ( >=dev-libs/libxml2-2.7.8:2 )"
-DEPEND="${RDEPEND}
-   app-arch/xz-utils
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-PATCHES=( "${FILESDIR}"/${PN}-0.9.1-automagic.patch )
-
-src_configure() {
-   local myeconfargs=(
-   --with-manual
-   $(use_enable json)
-   $(use_enable xml)
-   )
-   autotools-utils_src_configure
-}



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

2019-12-12 Thread Sergei Trofimovich
commit: 8e31bd050f1b537244438e86b2bf186189d86773
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Dec 12 21:49:27 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec 12 21:52:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e31bd05

dev-vcs/git: stable 2.24.1 for ia64, bug #702296

Package-Manager: Portage-2.3.81, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-vcs/git/git-2.24.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.24.1.ebuild b/dev-vcs/git/git-2.24.1.ebuild
index 853069e6f7f..d12d7aab6f3 100644
--- a/dev-vcs/git/git-2.24.1.ebuild
+++ b/dev-vcs/git/git-2.24.1.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2019-12-12 Thread Sergei Trofimovich
commit: fe292a8af9bf5c53921a181819c0cbdbc4045f3d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Dec 12 21:49:13 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec 12 21:52:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe292a8a

dev-lang/python: stable 3.7.5-r1 for ia64, bug #701116

Package-Manager: Portage-2.3.81, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-lang/python/python-3.7.5-r1.ebuild 
b/dev-lang/python/python-3.7.5-r1.ebuild
index 04481f9a7d7..aa1a3c19dd3 100644
--- a/dev-lang/python/python-3.7.5-r1.ebuild
+++ b/dev-lang/python/python-3.7.5-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://www.python.org/ftp/python/${PV}/${MY_P}.tar.xz
 
 LICENSE="PSF-2"
 SLOT="3.7/3.7m"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sh ~sparc x86"
 IUSE="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2019-12-12 Thread Sergei Trofimovich
commit: 971f92263869fadf1e14a169276550ec99b33a89
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Dec 12 21:49:07 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec 12 21:52:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=971f9226

dev-lang/python: stable 2.7.17 for ia64, bug #701116

Package-Manager: Portage-2.3.81, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-lang/python/python-2.7.17.ebuild 
b/dev-lang/python/python-2.7.17.ebuild
index 12c0e351d76..263a5a6a4f0 100644
--- a/dev-lang/python/python-2.7.17.ebuild
+++ b/dev-lang/python/python-2.7.17.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://www.python.org/ftp/python/${PV}/${MY_P}.tar.xz
 
 LICENSE="PSF-2"
 SLOT="2.7"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86"
 IUSE="-berkdb bluetooth build doc elibc_uclibc examples gdbm hardened ipv6 
libressl +ncurses +readline sqlite +ssl +threads tk +wide-unicode wininst +xml"
 
 # Do not add a dependency on dev-lang/python to this ebuild.



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

2019-12-12 Thread Sergei Trofimovich
commit: 44cd0fbce101571eeb4aba1b564593b7a5678ab4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Dec 12 21:49:33 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec 12 21:52:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44cd0fbc

sys-libs/glibc: stable 2.29-r7 for ia64, bug #702484

Package-Manager: Portage-2.3.81, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-libs/glibc/glibc-2.29-r7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/glibc/glibc-2.29-r7.ebuild 
b/sys-libs/glibc/glibc-2.29-r7.ebuild
index eff0018c92b..fa7fd906216 100644
--- a/sys-libs/glibc/glibc-2.29-r7.ebuild
+++ b/sys-libs/glibc/glibc-2.29-r7.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://sourceware.org/git/glibc.git";
inherit git-r3
 else
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sh ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sh ~sparc x86"
SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
 fi
 



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

2019-12-12 Thread Sergei Trofimovich
commit: 561db207cee285628f55e6f584dd1e7c3220fe05
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Dec 12 21:49:18 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec 12 21:52:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=561db207

dev-vcs/git: stable 2.21.1 for ia64, bug #702296

Package-Manager: Portage-2.3.81, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-vcs/git/git-2.21.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.21.1.ebuild b/dev-vcs/git/git-2.21.1.ebuild
index 4df3714028d..816b927f4fe 100644
--- a/dev-vcs/git/git-2.21.1.ebuild
+++ b/dev-vcs/git/git-2.21.1.ebuild
@@ -45,7 +45,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2019-12-12 Thread Andreas Sturmlechner
commit: a6d04c560b3c835f1ca031373c749fa139a0482b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 21:08:03 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 22:11:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d04c56

media-sound/elisa: Drop 0.4.2-r1

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

 media-sound/elisa/Manifest  |  1 -
 media-sound/elisa/elisa-0.4.2-r1.ebuild | 63 -
 2 files changed, 64 deletions(-)

diff --git a/media-sound/elisa/Manifest b/media-sound/elisa/Manifest
index 9fdc83c5753..b008fcdd79d 100644
--- a/media-sound/elisa/Manifest
+++ b/media-sound/elisa/Manifest
@@ -1,2 +1 @@
-DIST elisa-0.4.2.tar.xz 1274720 BLAKE2B 
8b8a0db29ec2011bd4494167e637646e873020b24fa721f78683d0c2d062961919a9750a91955204fb65c8efcfcb883ae055c8d2de477a508d990657e1926197
 SHA512 
8044eca86613be279d2f8df61dd518b69672ba2f586474866f11df7494912020e59bb87905eb3c30a44c2f9bf21466de7f7efac35a6db0f822dfac013a6d57eb
 DIST elisa-19.12.0.tar.xz 1386020 BLAKE2B 
c16e27fd85f7a73e264873a2b8926c9bc820885b5e40b88f271c6e70303365f34380d880d972d0bfca67d2c49f57c4ef6e895e798aeb844e729a475b3a398d40
 SHA512 
bac5693e10d0db4389aeb7fcf555914d5613ec29549b5de6dbcc16b4d2d07d513157c819525f2fad61864adf7da37ad1b0ee1294e09eda79a2953e199767b14f

diff --git a/media-sound/elisa/elisa-0.4.2-r1.ebuild 
b/media-sound/elisa/elisa-0.4.2-r1.ebuild
deleted file mode 100644
index 06cfb2d2188..000
--- a/media-sound/elisa/elisa-0.4.2-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_TEST="forceoptional"
-KDE_HANDBOOK="optional"
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-   KEYWORDS="~amd64 ~arm64"
-fi
-
-DESCRIPTION="Simple music player by KDE"
-HOMEPAGE="https://community.kde.org/Elisa";
-LICENSE="LGPL-3+"
-IUSE="mpris semantic-desktop vlc"
-
-BDEPEND="sys-devel/gettext"
-DEPEND="
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdeclarative)
-   $(add_frameworks_dep kfilemetadata 'taglib')
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kirigami)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtmultimedia)
-   $(add_qt_dep qtsql)
-   $(add_qt_dep qtwidgets)
-   mpris? (
-   $(add_frameworks_dep kdbusaddons)
-   $(add_qt_dep qtdbus)
-   )
-   semantic-desktop? ( $(add_frameworks_dep baloo) )
-   vlc? ( media-video/vlc:= )
-   !vlc? ( $(add_qt_dep qtmultimedia 'gstreamer') )
-"
-RDEPEND="${DEPEND}
-   $(add_qt_dep qtgraphicaleffects)
-   $(add_qt_dep qtquickcontrols)
-   $(add_qt_dep qtquickcontrols2)
-"
-
-RESTRICT+=" test"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package mpris KF5DBusAddons)
-   $(cmake-utils_use_find_package semantic-desktop KF5Baloo)
-   $(cmake-utils_use_find_package vlc LIBVLC)
-   )
-
-   kde5_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kdeutils-meta/

2019-12-12 Thread Andreas Sturmlechner
commit: c2c8ed232b5841086397b9de927faeaf08e54b96
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 22:11:18 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 22:11:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c8ed23

kde-apps/kdeutils-meta: Add USE webengine

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

 kde-apps/kdeutils-meta/kdeutils-meta-19.12.0.ebuild | 4 ++--
 kde-apps/kdeutils-meta/metadata.xml | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kdeutils-meta/kdeutils-meta-19.12.0.ebuild 
b/kde-apps/kdeutils-meta/kdeutils-meta-19.12.0.ebuild
index 22148c79906..9240ed95ad8 100644
--- a/kde-apps/kdeutils-meta/kdeutils-meta-19.12.0.ebuild
+++ b/kde-apps/kdeutils-meta/kdeutils-meta-19.12.0.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://kde.org/applications/utilities 
https://utils.kde.org";
 LICENSE="metapackage"
 SLOT="5"
 KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="7zip cups floppy gpg lrz rar"
+IUSE="7zip cups floppy gpg lrz rar +webengine"
 
 RDEPEND="
>=kde-apps/ark-${PV}:${SLOT}
@@ -20,7 +20,6 @@ RDEPEND="
>=kde-apps/kcharselect-${PV}:${SLOT}
>=kde-apps/kdebugsettings-${PV}:${SLOT}
>=kde-apps/kdf-${PV}:${SLOT}
-   >=kde-apps/kimagemapeditor-${PV}:${SLOT}
>=kde-apps/kteatime-${PV}:${SLOT}
>=kde-apps/ktimer-${PV}:${SLOT}
>=kde-apps/kwalletmanager-${PV}:${SLOT}
@@ -29,6 +28,7 @@ RDEPEND="
cups? ( >=kde-apps/print-manager-${PV}:${SLOT} )
floppy? ( >=kde-apps/kfloppy-${PV}:${SLOT} )
gpg? ( >=kde-apps/kgpg-${PV}:${SLOT} )
+   webengine? ( >=kde-apps/kimagemapeditor-${PV}:${SLOT} )
 "
 # Optional runtime deps: kde-apps/ark
 RDEPEND="${RDEPEND}

diff --git a/kde-apps/kdeutils-meta/metadata.xml 
b/kde-apps/kdeutils-meta/metadata.xml
index 085e3dd2528..7262a11e01b 100644
--- a/kde-apps/kdeutils-meta/metadata.xml
+++ b/kde-apps/kdeutils-meta/metadata.xml
@@ -11,5 +11,6 @@
Install kde-apps/kgpg which depends 
on kde-apps/akonadi
Install app-arch/lrzip for LRZ 
archive support in kde-apps/ark
Install one of app-arch/rar, 
app-arch/unrar or app-arch/unar for RAR archive support 
in kde-apps/ark
+   Enable 
kde-apps/kimagemapeditor, requiring 
dev-qt/qtwebengine

 



[gentoo-commits] proj/kde:master commit in: kde-apps/kdeutils-meta/

2019-12-12 Thread Andreas Sturmlechner
commit: b8fe3c14383b776be136e5c40dbcd2619a11b570
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 22:11:18 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 22:20:07 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b8fe3c14

kde-apps/kdeutils-meta: Add USE webengine

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

 kde-apps/kdeutils-meta/kdeutils-meta-19.12.49..ebuild | 4 ++--
 kde-apps/kdeutils-meta/kdeutils-meta-.ebuild  | 4 ++--
 kde-apps/kdeutils-meta/metadata.xml   | 1 +
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/kde-apps/kdeutils-meta/kdeutils-meta-19.12.49..ebuild 
b/kde-apps/kdeutils-meta/kdeutils-meta-19.12.49..ebuild
index c164e051d4..e8a4c0a988 100644
--- a/kde-apps/kdeutils-meta/kdeutils-meta-19.12.49..ebuild
+++ b/kde-apps/kdeutils-meta/kdeutils-meta-19.12.49..ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://kde.org/applications/utilities 
https://utils.kde.org";
 LICENSE="metapackage"
 SLOT="5"
 KEYWORDS=""
-IUSE="7zip cups floppy gpg lrz rar"
+IUSE="7zip cups floppy gpg lrz rar +webengine"
 
 RDEPEND="
>=kde-apps/ark-${PV}:${SLOT}
@@ -20,7 +20,6 @@ RDEPEND="
>=kde-apps/kcharselect-${PV}:${SLOT}
>=kde-apps/kdebugsettings-${PV}:${SLOT}
>=kde-apps/kdf-${PV}:${SLOT}
-   >=kde-apps/kimagemapeditor-${PV}:${SLOT}
>=kde-apps/kteatime-${PV}:${SLOT}
>=kde-apps/ktimer-${PV}:${SLOT}
>=kde-apps/kwalletmanager-${PV}:${SLOT}
@@ -29,6 +28,7 @@ RDEPEND="
cups? ( >=kde-apps/print-manager-${PV}:${SLOT} )
floppy? ( >=kde-apps/kfloppy-${PV}:${SLOT} )
gpg? ( >=kde-apps/kgpg-${PV}:${SLOT} )
+   webengine? ( >=kde-apps/kimagemapeditor-${PV}:${SLOT} )
 "
 # Optional runtime deps: kde-apps/ark
 RDEPEND="${RDEPEND}

diff --git a/kde-apps/kdeutils-meta/kdeutils-meta-.ebuild 
b/kde-apps/kdeutils-meta/kdeutils-meta-.ebuild
index c164e051d4..e8a4c0a988 100644
--- a/kde-apps/kdeutils-meta/kdeutils-meta-.ebuild
+++ b/kde-apps/kdeutils-meta/kdeutils-meta-.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://kde.org/applications/utilities 
https://utils.kde.org";
 LICENSE="metapackage"
 SLOT="5"
 KEYWORDS=""
-IUSE="7zip cups floppy gpg lrz rar"
+IUSE="7zip cups floppy gpg lrz rar +webengine"
 
 RDEPEND="
>=kde-apps/ark-${PV}:${SLOT}
@@ -20,7 +20,6 @@ RDEPEND="
>=kde-apps/kcharselect-${PV}:${SLOT}
>=kde-apps/kdebugsettings-${PV}:${SLOT}
>=kde-apps/kdf-${PV}:${SLOT}
-   >=kde-apps/kimagemapeditor-${PV}:${SLOT}
>=kde-apps/kteatime-${PV}:${SLOT}
>=kde-apps/ktimer-${PV}:${SLOT}
>=kde-apps/kwalletmanager-${PV}:${SLOT}
@@ -29,6 +28,7 @@ RDEPEND="
cups? ( >=kde-apps/print-manager-${PV}:${SLOT} )
floppy? ( >=kde-apps/kfloppy-${PV}:${SLOT} )
gpg? ( >=kde-apps/kgpg-${PV}:${SLOT} )
+   webengine? ( >=kde-apps/kimagemapeditor-${PV}:${SLOT} )
 "
 # Optional runtime deps: kde-apps/ark
 RDEPEND="${RDEPEND}

diff --git a/kde-apps/kdeutils-meta/metadata.xml 
b/kde-apps/kdeutils-meta/metadata.xml
index 085e3dd252..7262a11e01 100644
--- a/kde-apps/kdeutils-meta/metadata.xml
+++ b/kde-apps/kdeutils-meta/metadata.xml
@@ -11,5 +11,6 @@
Install kde-apps/kgpg which depends 
on kde-apps/akonadi
Install app-arch/lrzip for LRZ 
archive support in kde-apps/ark
Install one of app-arch/rar, 
app-arch/unrar or app-arch/unar for RAR archive support 
in kde-apps/ark
+   Enable 
kde-apps/kimagemapeditor, requiring 
dev-qt/qtwebengine

 



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

2019-12-12 Thread Alexys Jacob
commit: dae775967e700cfc6ff5700b6a2f3a205236cf4c
Author: Alexys Jacob  gentoo  org>
AuthorDate: Thu Dec 12 22:22:44 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Dec 12 22:23:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae77596

sys-cluster/crmsh: version bump, fix #669568

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Alexys Jacob  gentoo.org>

 sys-cluster/crmsh/Manifest   |  1 +
 sys-cluster/crmsh/crmsh-4.1.0.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/sys-cluster/crmsh/Manifest b/sys-cluster/crmsh/Manifest
index eb327039524..5be72de14fa 100644
--- a/sys-cluster/crmsh/Manifest
+++ b/sys-cluster/crmsh/Manifest
@@ -1,2 +1,3 @@
 DIST crmsh-2.1.1.tar.gz 733302 BLAKE2B 
6b6afdb1c3144eccf432e52a16910e7b427384458e720e042900e115d3e2986f2d08ec77acc9ad288e59070d55065e05c46770b0eeaad49a01b17bd93f593051
 SHA512 
556190e4e8da009d5f84f6356eeae2f5a18d8ca19d8c384c01d4d8526f7a20bb9545a08a6abe7cb6d9c33d9ae62ba0ea5df9ff0ae90341a53d9f7b201f5788ae
 DIST crmsh-3.0.3.tar.gz 948573 BLAKE2B 
b4acb4420a7f447f0d50115ba449d506d2017e6f29221bd0b1ba45eb790e6472eadc62ff5ac6af367f4d5f2631cae162e770c0a6735dea42367248f2302cdcb4
 SHA512 
9dcb9560f8e23791340454e20f4e1ccd090230337357b93c2029f58ff9754756bc1eca5991c00290b937eeb3b42554989b5d6cc85a2eef5107f250d7acf570d3
+DIST crmsh-4.1.0.tar.gz 1002842 BLAKE2B 
02505d9f10e2ac9525692a727d40a925d99f0035d1e372f0840b3072c4c016b55fced7ccaea8dbad9e475d7868e483e62944dbe45e5533eb4028eeda08b99c58
 SHA512 
3522a28c86069216222eb2efbb258014d74ce838e49885cd527a69d890415ea0899632b4cec095d2fde802b26cd7e673b0e9ea20e8d023fc7c4df140be600ef9

diff --git a/sys-cluster/crmsh/crmsh-4.1.0.ebuild 
b/sys-cluster/crmsh/crmsh-4.1.0.ebuild
new file mode 100644
index 000..493af7ad63b
--- /dev/null
+++ b/sys-cluster/crmsh/crmsh-4.1.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+AUTOTOOLS_AUTORECONF=true
+KEYWORDS=""
+SRC_URI=""
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/crmsh/crmsh";
+   inherit git-2
+   S="${WORKDIR}/${PN}-${MY_TREE}"
+else
+   SRC_URI="https://github.com/crmsh/crmsh/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~hppa ~x86"
+fi
+
+inherit eutils python-r1
+
+DESCRIPTION="Pacemaker command line interface for management and configuration"
+HOMEPAGE="https://crmsh.github.io/";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   >=sys-cluster/pacemaker-1.1.9"
+RDEPEND="${DEPEND}
+   dev-python/lxml[${PYTHON_USEDEP}]"
+
+src_configure() {
+   ./autogen.sh || die
+   econf
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   python_foreach_impl python_optimize
+}



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

2019-12-12 Thread Alexys Jacob
commit: 426da9bd31820f6d4279d9df80125fb214dde05e
Author: Alexys Jacob  gentoo  org>
AuthorDate: Thu Dec 12 22:04:08 2019 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Thu Dec 12 22:23:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=426da9bd

x11-misc/py3status: version bump

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Alexys Jacob  gentoo.org>

 x11-misc/py3status/Manifest | 2 +-
 x11-misc/py3status/{py3status-3.21.ebuild => py3status-3.22.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/py3status/Manifest b/x11-misc/py3status/Manifest
index 04e3f5bdca8..7a7dcd0c687 100644
--- a/x11-misc/py3status/Manifest
+++ b/x11-misc/py3status/Manifest
@@ -1 +1 @@
-DIST py3status-3.21.tar.gz 398586 BLAKE2B 
9ca738aa36da54752d95766d8e03ef2e6b89724fbe88e2fd5154f7624f83fac7160a203cdc3400acd053afa69ac99724211401d1e951f8195bf4139d490a4cdc
 SHA512 
4d04b44777bc0f9eb07da266b0719fcd6a707cfdb95e1b98673d244b290276e6179584881ae605933966bcf7682181554669badad1ca56ef604e6e9a3feae6a2
+DIST py3status-3.22.tar.gz 399414 BLAKE2B 
eb7da2c86dbebf59ff62f29ca81e697e4c326e36a130513b64cd03de5d79dcf5354a676405242cd0149af6acd43dc561aec6818bf4d6417fdcf8a67bfdf9cad2
 SHA512 
5139d494bc101cf8f29eb058fa4ae00f7876adeac83d300e342a0566f0b553b60e971bbca4180bf713ec9c4e9d4b2cfec36920f7c6dfc9dbbe8d9f329d62e0cf

diff --git a/x11-misc/py3status/py3status-3.21.ebuild 
b/x11-misc/py3status/py3status-3.22.ebuild
similarity index 100%
rename from x11-misc/py3status/py3status-3.21.ebuild
rename to x11-misc/py3status/py3status-3.22.ebuild



[gentoo-commits] proj/qt:master commit in: dev-qt/qtx11extras/, dev-qt/qtwebsockets/, dev-qt/qdbusviewer/, ...

2019-12-12 Thread Andreas Sturmlechner
commit: 50904db0c3344372102c6493dbf881874e0a8ee1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 19:54:17 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 19:54:17 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=50904db0

dev-qt: Drop 5.14.0_rc

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

 dev-qt/assistant/Manifest  |   1 -
 dev-qt/assistant/assistant-5.14.0_rc.ebuild|  55 ---
 dev-qt/designer/Manifest   |   1 -
 dev-qt/designer/designer-5.14.0_rc.ebuild  |  57 ---
 dev-qt/linguist-tools/Manifest |   1 -
 .../linguist-tools/linguist-tools-5.14.0_rc.ebuild |  35 
 dev-qt/linguist/Manifest   |   1 -
 dev-qt/linguist/linguist-5.14.0_rc.ebuild  |  48 --
 dev-qt/pixeltool/Manifest  |   1 -
 dev-qt/pixeltool/pixeltool-5.14.0_rc.ebuild|  25 ---
 dev-qt/qdbus/Manifest  |   1 -
 dev-qt/qdbus/qdbus-5.14.0_rc.ebuild|  25 ---
 dev-qt/qdbusviewer/Manifest|   1 -
 dev-qt/qdbusviewer/qdbusviewer-5.14.0_rc.ebuild|  45 --
 dev-qt/qdoc/Manifest   |   1 -
 dev-qt/qdoc/qdoc-5.14.0_rc.ebuild  |  40 -
 dev-qt/qt3d/Manifest   |   1 -
 dev-qt/qt3d/qt3d-5.14.0_rc.ebuild  |  34 
 dev-qt/qtbluetooth/Manifest|   1 -
 dev-qt/qtbluetooth/qtbluetooth-5.14.0_rc.ebuild|  33 
 dev-qt/qtcharts/Manifest   |   1 -
 dev-qt/qtcharts/qtcharts-5.14.0_rc.ebuild  |  29 
 dev-qt/qtconcurrent/Manifest   |   1 -
 dev-qt/qtconcurrent/qtconcurrent-5.14.0_rc.ebuild  |  23 ---
 dev-qt/qtcore/Manifest |   1 -
 dev-qt/qtcore/qtcore-5.14.0_rc.ebuild  |  83 --
 dev-qt/qtdatavis3d/Manifest|   1 -
 dev-qt/qtdatavis3d/qtdatavis3d-5.14.0_rc.ebuild|  31 
 dev-qt/qtdbus/Manifest |   1 -
 dev-qt/qtdbus/qtdbus-5.14.0_rc.ebuild  |  43 -
 dev-qt/qtdeclarative/Manifest  |   1 -
 .../qtdeclarative/qtdeclarative-5.14.0_rc.ebuild   |  53 ---
 dev-qt/qtdiag/Manifest |   1 -
 dev-qt/qtdiag/qtdiag-5.14.0_rc.ebuild  |  36 -
 dev-qt/qtgamepad/Manifest  |   1 -
 dev-qt/qtgamepad/qtgamepad-5.14.0_rc.ebuild|  35 
 dev-qt/qtgraphicaleffects/Manifest |   1 -
 .../qtgraphicaleffects-5.14.0_rc.ebuild|  21 ---
 dev-qt/qtgui/Manifest  |   1 -
 dev-qt/qtgui/qtgui-5.14.0_rc.ebuild| 176 -
 dev-qt/qthelp/Manifest |   1 -
 dev-qt/qthelp/qthelp-5.14.0_rc.ebuild  |  29 
 dev-qt/qtimageformats/Manifest |   1 -
 .../qtimageformats/qtimageformats-5.14.0_rc.ebuild |  30 
 dev-qt/qtlocation/Manifest |   1 -
 dev-qt/qtlocation/qtlocation-5.14.0_rc.ebuild  |  45 --
 dev-qt/qtmultimedia/Manifest   |   1 -
 dev-qt/qtmultimedia/qtmultimedia-5.14.0_rc.ebuild  |  68 
 dev-qt/qtnetwork/Manifest  |   1 -
 dev-qt/qtnetwork/qtnetwork-5.14.0_rc.ebuild|  60 ---
 dev-qt/qtnetworkauth/Manifest  |   1 -
 .../qtnetworkauth/qtnetworkauth-5.14.0_rc.ebuild   |  20 ---
 dev-qt/qtopengl/Manifest   |   1 -
 dev-qt/qtopengl/qtopengl-5.14.0_rc.ebuild  |  34 
 dev-qt/qtpaths/Manifest|   1 -
 dev-qt/qtpaths/qtpaths-5.14.0_rc.ebuild|  23 ---
 dev-qt/qtplugininfo/Manifest   |   1 -
 dev-qt/qtplugininfo/qtplugininfo-5.14.0_rc.ebuild  |  23 ---
 dev-qt/qtpositioning/Manifest  |   1 -
 .../qtpositioning/qtpositioning-5.14.0_rc.ebuild   |  40 -
 dev-qt/qtprintsupport/Manifest |   1 -
 .../qtprintsupport/qtprintsupport-5.14.0_rc.ebuild |  42 -
 dev-qt/qtquickcontrols/Manifest|   1 -
 .../qtquickcontrols-5.14.0_rc.ebuild   |  32 
 dev-qt/qtquickcontrols2/Manifest   |   1 -
 .../qtquickcontrols2-5.14.0_rc.ebuild  |  30 
 dev-qt/qtscript/Manifest   |   1 -
 dev-qt/qtscript/qtscript-5.14.0_rc.ebuild  |  36 -
 dev-qt/qtscxml/Manifest|   1 -
 dev-qt/qtscxml/qtscxml-5.14.0_rc.ebuild|  19 ---
 dev-qt/qtsensors/Manifest  |   1 -
 dev-qt/qtsensors/qtsensors-5.14.0_rc.ebuild|  28 
 dev-qt/qtserialbus/Manifest|   1 -
 dev-qt/qtserialbus/qtserialbus-5.14.0_rc.

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

2019-12-12 Thread Matthew Thode
commit: 5d7a4c38f759fc44791da72567ab2efa6ee5aee5
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Dec 12 22:37:21 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Dec 12 22:37:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d7a4c38

dev-python/python-novaclient: 13.0.2 stable amd64/x86 with cleanup

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

 dev-python/python-novaclient/Manifest  |  1 -
 .../python-novaclient-13.0.1.ebuild| 68 --
 .../python-novaclient-13.0.2.ebuild|  2 +-
 3 files changed, 1 insertion(+), 70 deletions(-)

diff --git a/dev-python/python-novaclient/Manifest 
b/dev-python/python-novaclient/Manifest
index fbbbf45c863..25b73954c0f 100644
--- a/dev-python/python-novaclient/Manifest
+++ b/dev-python/python-novaclient/Manifest
@@ -1,2 +1 @@
-DIST python-novaclient-13.0.1.tar.gz 312975 BLAKE2B 
8f512a6b9e84e352d77f82b81777f1f9d9c8c6b40e86639c9400dede461c7f61d222ea304b8f407cf1775558aa3efe2519e03ee7ee83b17d80d5a7fa0e965284
 SHA512 
cca8eab5a11a784d5b701a128125e5de25c802081defa61df99449cbd711b0d6913dafeceb28e452fd9a33f901e04b5875b9cd641622af5ac6f06c00c30f7bba
 DIST python-novaclient-13.0.2.tar.gz 312390 BLAKE2B 
2a436a2f843afe466bbf3d376d16a994f25e2232dfcb67271837159c5f21d7970027ad6d946c331dd6bff5c248d6b526303205a96a18ef4872cc8b1b526ff366
 SHA512 
988264cb6b6034dd0c4cb3a79840f591bda9c1c0134ddf0124beea6d9992192dbaeb9ec20bbe73f5a831bf561d175fd3d312880093f58de51d326922502cd1e5

diff --git a/dev-python/python-novaclient/python-novaclient-13.0.1.ebuild 
b/dev-python/python-novaclient/python-novaclient-13.0.1.ebuild
deleted file mode 100644
index 341dc56..000
--- a/dev-python/python-novaclient/python-novaclient-13.0.1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="A client for the OpenStack Nova API"
-HOMEPAGE="https://github.com/openstack/python-novaclient";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/keyring-5.5.1[${PYTHON_USEDEP}]
-   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/python-keystoneclient-3.8.0[${PYTHON_USEDEP}]
-   >=dev-python/python-cinderclient-3.3.0[${PYTHON_USEDEP}]
-   >=dev-python/python-glanceclient-2.8.0[${PYTHON_USEDEP}]
-   >=dev-python/python-neutronclient-6.7.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-mock-1.1[${PYTHON_USEDEP}]
-   >=dev-python/openstacksdk-0.11.2[${PYTHON_USEDEP}]
-   >=dev-python/osprofiler-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   >=dev-python/keystoneauth-3.5.0[${PYTHON_USEDEP}]
-   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-serialization-1.18.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}]
-   =dev-python/requests-2.10.0[${PYTHON_USEDEP}]
-   !~dev-python/requests-2.12.2[${PYTHON_USEDEP}]
-   >=dev-python/simplejson-3.5.1[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   >=dev-python/Babel-2.4.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   # built in...
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   testr init
-   testr run --parallel || die "testsuite failed under python2.7"
-}

diff --git a/dev-python/python-novaclient/python-novaclient-13.0.2.ebuild 
b/dev-python/python-novaclient/python-novaclient-13.0.2.ebuild
index 7839043d06c..341dc56 100644
--- a/dev-python/python-novaclient/python-novaclient-13.0.2.ebuild
+++ b/dev-python/python-novaclient/python-novaclient-13.0.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/$

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

2019-12-12 Thread Matthew Thode
commit: bcbf62df18b44f4ffe01ce217a2b437578d79ff3
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Dec 12 22:39:23 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Dec 12 22:39:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbf62df

sys-cluster/nova: 20.0.0 cleanup

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

 sys-cluster/nova/Manifest   |   2 -
 sys-cluster/nova/nova-20.0.0.ebuild | 220 
 2 files changed, 222 deletions(-)

diff --git a/sys-cluster/nova/Manifest b/sys-cluster/nova/Manifest
index 86e69e2c888..bcc7de3f6e6 100644
--- a/sys-cluster/nova/Manifest
+++ b/sys-cluster/nova/Manifest
@@ -1,10 +1,8 @@
 DIST nova-18.2.3.tar.gz 11450952 BLAKE2B 
1e0b0afefe8281ab9024394194697d3aea81169da7a003a07890dfc11bd38511d39315152dab1b9a1d17b2d1c8109102112b245957e727d053de7fd67ad0c757
 SHA512 
1dcb3fa2ea80afcd5739efad01f3d65723a754fc8d79639e54cd3fbd6e4e4125593799a123b4572c63f8c074a10c244d91814f15d2c7135066d55cd2a991f7fc
 DIST nova-19.0.3.tar.gz 11646820 BLAKE2B 
31aa6ef44609f5698f24168fc79cd9c6d5dd2c5b0da5eed277ccd8d1aa4ee7d6a07a1318bd7f964dd141dbca8f0297a2d677ad2fdf949fcc7a72970d099197e9
 SHA512 
4869d705c165a909e13b27ac383b7be52f9d5925fbe9d8779f773d0b1ce87b6ae7642c4551e01f57c24221e6fe120a3e2b5de41d73dfdcd73f82252b48a2af39
-DIST nova-20.0.0.tar.gz 11585568 BLAKE2B 
950fe23bfae72f9c960ef8f3929c077293fdf55f9e0400e6567643c418df648495223d0ac7f736d6c64c2c44f88939d689a6069a4ddf78705c11d250022c8211
 SHA512 
8d1a961a4ec4e2567de6b16d35fa008472759d4e3d29d06927b1bd23e928478bf40f90619c950e70f38203f75eec7b024c7336bab24a7dad4892ce5111fb1f37
 DIST nova-20.0.1.tar.gz 11587774 BLAKE2B 
62f7b6d4ab83533e4462f16978a2f95ceca3d6594029f87dbb170f3abc19917a4449ec95b007adae16c2e290649a560404d12e738a83bc8ad4bbbc1a4554d074
 SHA512 
3c83a1061696bb6e830e1e518ceea5e5b6405673373df674926b8c01955ea71714bf484906db3dc556209fb895c052003b54477d6a2791df0905244abbf9abe0
 DIST nova.conf.sample-18.2.3 387334 BLAKE2B 
a51b8cdc644ee60390cde3a30ba8f64a339695887b57b2640da39b5a8d34dfec51664b1249955a6cf9202ae19e8e0a8bcd805d4b87d2f6c99a5a6294cc955577
 SHA512 
be9fbab15ea1cac6d3cd1d186aab904454ef17801f9f4b2f1a37c6e46b4c69fed22a7724846049ebd343beff7753d8db408abae52ad3fca0693d70414c6afc61
 DIST nova.conf.sample-19.0.3 387769 BLAKE2B 
2b4668e78765469c5ee518a8c340a09407a8f7e9bf3f87a6919b820db0ce2f38499827dbea58994490c8db3a648eef2c95521f7c62b3ae37606bb249492b4b12
 SHA512 
4facb96c111945f472654788e1ac3d52808b0c45e36c87b873cd1355d36b71922fa94b11d66ec5a8b250739072ecdec394dd4f852a8eb57dbd900c61c71ba770
-DIST nova.conf.sample-20.0.0 220110 BLAKE2B 
af98687c895ee091cc2e8d668eb50b52cc94618081f8a50b544faebed29b2b3a5dfa38309da70dcc6d0083792605b810081b50c15a6c960947e0c782f25717ab
 SHA512 
cc6cce95943b06d60dfc1f85b87d527662eeb57388dca4a6037078b517302b86fd7f752c6e9e43c59c10be83ac5955f21c08284bbc946ffe2171f5bfa6edff38
 DIST nova.conf.sample-20.0.1 220110 BLAKE2B 
af98687c895ee091cc2e8d668eb50b52cc94618081f8a50b544faebed29b2b3a5dfa38309da70dcc6d0083792605b810081b50c15a6c960947e0c782f25717ab
 SHA512 
cc6cce95943b06d60dfc1f85b87d527662eeb57388dca4a6037078b517302b86fd7f752c6e9e43c59c10be83ac5955f21c08284bbc946ffe2171f5bfa6edff38
 DIST nova.conf.sample-2018.2. 387334 BLAKE2B 
a51b8cdc644ee60390cde3a30ba8f64a339695887b57b2640da39b5a8d34dfec51664b1249955a6cf9202ae19e8e0a8bcd805d4b87d2f6c99a5a6294cc955577
 SHA512 
be9fbab15ea1cac6d3cd1d186aab904454ef17801f9f4b2f1a37c6e46b4c69fed22a7724846049ebd343beff7753d8db408abae52ad3fca0693d70414c6afc61
 DIST nova.conf.sample-2019.1. 387769 BLAKE2B 
2b4668e78765469c5ee518a8c340a09407a8f7e9bf3f87a6919b820db0ce2f38499827dbea58994490c8db3a648eef2c95521f7c62b3ae37606bb249492b4b12
 SHA512 
4facb96c111945f472654788e1ac3d52808b0c45e36c87b873cd1355d36b71922fa94b11d66ec5a8b250739072ecdec394dd4f852a8eb57dbd900c61c71ba770

diff --git a/sys-cluster/nova/nova-20.0.0.ebuild 
b/sys-cluster/nova/nova-20.0.0.ebuild
deleted file mode 100644
index 01dac558c9c..000
--- a/sys-cluster/nova/nova-20.0.0.ebuild
+++ /dev/null
@@ -1,220 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-
-inherit distutils-r1 eutils linux-info multilib user
-
-DESCRIPTION="Cloud computing fabric controller (main part of an IaaS system) 
in Python"
-HOMEPAGE="https://launchpad.net/nova";
-
-if [[ ${PV} == * ]];then
-   inherit git-r3
-   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/train/nova.conf.sample
 -> nova.conf.sample-${PV}"
-   EGIT_REPO_URI="https://github.com/openstack/nova.git";
-   EGIT_BRANCH="stable/train"
-else
-   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/train/nova.conf.sample
 -> nova.conf.sample-${PV}
-   https://tarballs.openstack.org/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="Apache-2.0

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

2019-12-12 Thread Matthew Thode
commit: 527e6c2ff00a5dfcaaec912578450741cdd9d0f3
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Dec 12 22:36:10 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Dec 12 22:36:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=527e6c2f

net-misc/memcached: 1.5.20 stable amd64/x86

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

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

diff --git a/net-misc/memcached/memcached-1.5.20.ebuild 
b/net-misc/memcached/memcached-1.5.20.ebuild
index 0a1da23139b..77a0b3f38a8 100644
--- a/net-misc/memcached/memcached-1.5.20.ebuild
+++ b/net-misc/memcached/memcached-1.5.20.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.memcached.org/files/${MY_P}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug sasl seccomp selinux slabs-reassign test" # hugetlbfs later
 
 RDEPEND=">=dev-libs/libevent-1.4:=



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

2019-12-12 Thread Aaron Bauman
commit: b115a1fcaadc64f81d4a0c4afcea8772ca215480
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Dec 12 22:53:45 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 22:54:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b115a1fc

media-gfx/evoluspencil: fix QA issue with insinto

* Use desktop.eclass instead for domenu

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

 media-gfx/evoluspencil/evoluspencil-3.1.0-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/media-gfx/evoluspencil/evoluspencil-3.1.0-r1.ebuild 
b/media-gfx/evoluspencil/evoluspencil-3.1.0-r1.ebuild
index 7d1292de6d5..4980879c87b 100644
--- a/media-gfx/evoluspencil/evoluspencil-3.1.0-r1.ebuild
+++ b/media-gfx/evoluspencil/evoluspencil-3.1.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit rpm xdg-utils
+inherit rpm xdg-utils desktop
 
 MY_PN="${PN/evolus/}"
 MY_PV="${PV}.ga"
@@ -66,8 +66,7 @@ src_install() {
fperms 755 /opt/${MY_PN}/${MY_PN}
dosym ../../opt/${MY_PN}/${MY_PN} /usr/bin/evoluspencil
 
-   insinto /usr/share/applications
-   doins "${FILESDIR}"/${MY_PN}.desktop
+   domenu "${FILESDIR}"/${MY_PN}.desktop
 
mkdir -p "${D}"/usr/share/icons/hicolor/256x256/apps/ || die
mv "${D}"/opt/${MY_PN}/${MY_PN}.png 
"${D}"/usr/share/icons/hicolor/256x256/apps/ || die



[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/

2019-12-12 Thread Sergei Trofimovich
commit: dc79cb618f56611d6a72846cbc226114225f4d9a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Dec 12 22:55:58 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec 12 22:56:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc79cb61

app-doc/doxygen: stable 1.8.16-r1 for ia64, bug #702610

Package-Manager: Portage-2.3.81, Repoman-2.3.20
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-doc/doxygen/doxygen-1.8.16-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-doc/doxygen/doxygen-1.8.16-r1.ebuild 
b/app-doc/doxygen/doxygen-1.8.16-r1.ebuild
index e37985247ca..8dc88e27655 100644
--- a/app-doc/doxygen/doxygen-1.8.16-r1.ebuild
+++ b/app-doc/doxygen/doxygen-1.8.16-r1.ebuild
@@ -11,10 +11,10 @@ if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/doxygen/doxygen.git";
SRC_URI=""
-   KEYWORDS=""
+   KEYWORDS="ia64"
 else
SRC_URI="http://doxygen.nl/files/${P}.src.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="Documentation system for most programming languages"



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

2019-12-12 Thread Aaron Bauman
commit: c251d3deebf2fcff2a8ba0643c1a2d054fe56dbc
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Dec 12 23:16:39 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 23:17:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c251d3de

media-sound/podcatcher: remove version from dev-lang/ruby

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

 media-sound/podcatcher/podcatcher-3.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/podcatcher/podcatcher-3.1.6.ebuild 
b/media-sound/podcatcher/podcatcher-3.1.6.ebuild
index 87482bae6be..454b549b192 100644
--- a/media-sound/podcatcher/podcatcher-3.1.6.ebuild
+++ b/media-sound/podcatcher/podcatcher-3.1.6.ebuild
@@ -12,7 +12,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 IUSE=""
 
-RDEPEND=">=dev-lang/ruby-1.8.2"
+RDEPEND="dev-lang/ruby"
 DEPEND="${RDEPEND}"
 
 S="${WORKDIR}/${PN}"



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

2019-12-12 Thread Aaron Bauman
commit: 1b9f9f92bd3663b4bbccef084a0cec1c6e0a65ae
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Dec 12 23:27:15 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 23:27:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b9f9f92

dev-php/PEAR-Archive_Tar: drop variable from HOMEPAGE

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

 dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild | 2 +-
 dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.7.ebuild | 2 +-
 dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.8.ebuild | 2 +-
 dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.9.ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild 
b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild
index f0a7d102c77..c0a300889d8 100644
--- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild
+++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild
@@ -7,7 +7,7 @@ MY_PN="${PN/PEAR-/}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Tar file management class"
-HOMEPAGE="https://pear.php.net/package/${MY_PN}";
+HOMEPAGE="https://pear.php.net/package/Archive_Tar";
 SRC_URI="https://pear.php.net/get/${MY_P}.tgz";
 LICENSE="BSD"
 SLOT="0"

diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.7.ebuild 
b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.7.ebuild
index 025fa048e20..14ff1089051 100644
--- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.7.ebuild
+++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.7.ebuild
@@ -7,7 +7,7 @@ MY_PN="${PN/PEAR-/}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Tar file management class"
-HOMEPAGE="https://pear.php.net/package/${MY_PN}";
+HOMEPAGE="https://pear.php.net/package/Archive_Tar";
 SRC_URI="https://pear.php.net/get/${MY_P}.tgz";
 LICENSE="BSD"
 SLOT="0"

diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.8.ebuild 
b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.8.ebuild
index 025fa048e20..14ff1089051 100644
--- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.8.ebuild
+++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.8.ebuild
@@ -7,7 +7,7 @@ MY_PN="${PN/PEAR-/}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Tar file management class"
-HOMEPAGE="https://pear.php.net/package/${MY_PN}";
+HOMEPAGE="https://pear.php.net/package/Archive_Tar";
 SRC_URI="https://pear.php.net/get/${MY_P}.tgz";
 LICENSE="BSD"
 SLOT="0"

diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.9.ebuild 
b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.9.ebuild
index 025fa048e20..14ff1089051 100644
--- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.9.ebuild
+++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.9.ebuild
@@ -7,7 +7,7 @@ MY_PN="${PN/PEAR-/}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Tar file management class"
-HOMEPAGE="https://pear.php.net/package/${MY_PN}";
+HOMEPAGE="https://pear.php.net/package/Archive_Tar";
 SRC_URI="https://pear.php.net/get/${MY_P}.tgz";
 LICENSE="BSD"
 SLOT="0"



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

2019-12-12 Thread Aaron Bauman
commit: 8ebe0a38744038955e5905094092f742ea45aa45
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Dec 12 23:32:40 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Dec 12 23:32:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ebe0a38

dev-php/phpspec-prophecy: fix variables in HOMEPAGE

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

 dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild | 2 +-
 dev-php/phpspec-prophecy/phpspec-prophecy-1.8.0.ebuild | 2 +-
 dev-php/phpspec-prophecy/phpspec-prophecy-1.9.0.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild 
b/dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild
index e7b12b374fe..5fe3b60064c 100644
--- a/dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild
+++ b/dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild
@@ -7,7 +7,7 @@ MY_PN="prophecy"
 MY_VENDOR="phpspec"
 
 DESCRIPTION="Highly opinionated mocking framework"
-HOMEPAGE="https://github.com/${MY_VENDOR}/${MY_PN}";
+HOMEPAGE="https://github.com/phpspec/prophecy";
 SRC_URI="https://github.com/${MY_VENDOR}/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"

diff --git a/dev-php/phpspec-prophecy/phpspec-prophecy-1.8.0.ebuild 
b/dev-php/phpspec-prophecy/phpspec-prophecy-1.8.0.ebuild
index 846a5675c10..cb4ce58cf35 100644
--- a/dev-php/phpspec-prophecy/phpspec-prophecy-1.8.0.ebuild
+++ b/dev-php/phpspec-prophecy/phpspec-prophecy-1.8.0.ebuild
@@ -7,7 +7,7 @@ MY_PN="prophecy"
 MY_VENDOR="phpspec"
 
 DESCRIPTION="Highly opinionated mocking framework"
-HOMEPAGE="https://github.com/${MY_VENDOR}/${MY_PN}";
+HOMEPAGE="https://github.com/phpspec/prophecy";
 SRC_URI="https://github.com/${MY_VENDOR}/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"

diff --git a/dev-php/phpspec-prophecy/phpspec-prophecy-1.9.0.ebuild 
b/dev-php/phpspec-prophecy/phpspec-prophecy-1.9.0.ebuild
index 846a5675c10..cb4ce58cf35 100644
--- a/dev-php/phpspec-prophecy/phpspec-prophecy-1.9.0.ebuild
+++ b/dev-php/phpspec-prophecy/phpspec-prophecy-1.9.0.ebuild
@@ -7,7 +7,7 @@ MY_PN="prophecy"
 MY_VENDOR="phpspec"
 
 DESCRIPTION="Highly opinionated mocking framework"
-HOMEPAGE="https://github.com/${MY_VENDOR}/${MY_PN}";
+HOMEPAGE="https://github.com/phpspec/prophecy";
 SRC_URI="https://github.com/${MY_VENDOR}/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: kde-apps/dolphin-plugins-bazaar/, kde-apps/dolphin-plugins-git/, ...

2019-12-12 Thread Andreas Sturmlechner
commit: 857bdf46b9764c2751eb28b8f5ab213113300558
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 23:46:43 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 23:48:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857bdf46

kde-apps/dolphin-plugins-*: Fix file collision between split packages

Closes: https://bugs.gentoo.org/702626
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 ...azaar-19.12.0.ebuild => dolphin-plugins-bazaar-19.12.0-r1.ebuild} | 5 +
 ...pbox-19.12.0.ebuild => dolphin-plugins-dropbox-19.12.0-r1.ebuild} | 5 +
 ...gins-git-19.12.0.ebuild => dolphin-plugins-git-19.12.0-r1.ebuild} | 5 +
 ...al-19.12.0.ebuild => dolphin-plugins-mercurial-19.12.0-r1.ebuild} | 5 +
 ...n-19.12.0.ebuild => dolphin-plugins-subversion-19.12.0-r1.ebuild} | 5 +
 5 files changed, 25 insertions(+)

diff --git 
a/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.0.ebuild 
b/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.0-r1.ebuild
similarity index 91%
rename from 
kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.0.ebuild
rename to 
kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.0-r1.ebuild
index 828944d24e2..594aafcd89c 100644
--- a/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.0.ebuild
+++ b/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.0-r1.ebuild
@@ -54,3 +54,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git 
a/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.0.ebuild 
b/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.0-r1.ebuild
similarity index 91%
rename from 
kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.0.ebuild
rename to 
kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.0-r1.ebuild
index 1f450f8a3d8..419a6c9fb35 100644
--- a/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.0.ebuild
+++ b/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.0-r1.ebuild
@@ -53,3 +53,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git a/kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.0.ebuild 
b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.0-r1.ebuild
similarity index 92%
rename from kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.0.ebuild
rename to kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.0-r1.ebuild
index e8ad6928e17..faf12875607 100644
--- a/kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.0.ebuild
+++ b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.0-r1.ebuild
@@ -56,3 +56,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git 
a/kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.0.ebuild 
b/kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.0-r1.ebuild
similarity index 93%
rename from 
kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.0.ebuild
rename to 
kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.0-r1.ebuild
index d414c2203a2..377f98447cf 100644
--- 
a/kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.0.ebuild
+++ 
b/kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.0-r1.ebuild
@@ -59,3 +59,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git 
a/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-19.12.0.ebuild 
b/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-19.12.0-r1.ebuild
similarity index 92%
rename from 
kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-19.12.0.ebuild
rename to 
kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-19.12.0-r1.ebuild
index c6ceea2d42b..45e0ff88cec 100644
--- 
a/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-19.12.0.ebuild
+++ 
b/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-19.12.0-r1.ebuild
@@ -55,3 +55,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}



[gentoo-commits] proj/kde:master commit in: kde-apps/dolphin-plugins-mercurial/, kde-apps/dolphin-plugins-git/, ...

2019-12-12 Thread Andreas Sturmlechner
commit: a984674101392a666f74cd5fc587974db81cc091
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Dec 12 23:46:43 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Dec 12 23:53:31 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a9846741

kde-apps/dolphin-plugins-*: Fix file collision between split packages

Closes: https://bugs.gentoo.org/702626
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../dolphin-plugins-bazaar-19.12.49..ebuild  | 5 +
 kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-.ebuild   | 5 +
 .../dolphin-plugins-dropbox-19.12.49..ebuild | 5 +
 kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-.ebuild | 5 +
 .../dolphin-plugins-git/dolphin-plugins-git-19.12.49..ebuild | 5 +
 kde-apps/dolphin-plugins-git/dolphin-plugins-git-.ebuild | 5 +
 .../dolphin-plugins-mercurial-19.12.49..ebuild   | 5 +
 .../dolphin-plugins-mercurial/dolphin-plugins-mercurial-.ebuild  | 5 +
 .../dolphin-plugins-subversion-19.12.49..ebuild  | 5 +
 .../dolphin-plugins-subversion-.ebuild   | 5 +
 10 files changed, 50 insertions(+)

diff --git 
a/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.49..ebuild 
b/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.49..ebuild
index 1614a0429b..5fe6f56c63 100644
--- 
a/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.49..ebuild
+++ 
b/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-19.12.49..ebuild
@@ -54,3 +54,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git a/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-.ebuild 
b/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-.ebuild
index 71aa7ad535..9bce34a609 100644
--- a/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-.ebuild
+++ b/kde-apps/dolphin-plugins-bazaar/dolphin-plugins-bazaar-.ebuild
@@ -54,3 +54,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git 
a/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.49..ebuild 
b/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.49..ebuild
index 2c4a4f686d..13b85b590f 100644
--- 
a/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.49..ebuild
+++ 
b/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.12.49..ebuild
@@ -53,3 +53,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git 
a/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-.ebuild 
b/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-.ebuild
index b8640bfd9e..f5249cc54a 100644
--- a/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-.ebuild
+++ b/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-.ebuild
@@ -53,3 +53,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git 
a/kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.49..ebuild 
b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.49..ebuild
index a871d83d14..00f404df6e 100644
--- a/kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.49..ebuild
+++ b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-19.12.49..ebuild
@@ -56,3 +56,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git a/kde-apps/dolphin-plugins-git/dolphin-plugins-git-.ebuild 
b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-.ebuild
index 6232424a53..2c89f67aa5 100644
--- a/kde-apps/dolphin-plugins-git/dolphin-plugins-git-.ebuild
+++ b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-.ebuild
@@ -56,3 +56,8 @@ src_configure() {
)
ecm_src_configure
 }
+
+src_install() {
+   ecm_src_install
+   rm "${D}"/usr/share/metainfo/org.kde.dolphin-plugins.metainfo.xml || die
+}

diff --git 
a/kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.49..ebuild
 
b/kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.49..ebuild
index d9241f55ce..413d22de9b 100644
--- 
a/kde-apps/dolphin-plugins-mercurial/dolphin-plugins-mercurial-19.12.49..ebuild
+++ 
b/kde-apps/dolphin-plugins-mercurial/dolphi

[gentoo-commits] proj/mozilla:master commit in: www-client/firefox/

2019-12-12 Thread Jory Pratt
commit: 8c37a583038d761f501d084574688103d344814c
Author: Jory Pratt  gentoo  org>
AuthorDate: Thu Dec 12 23:55:45 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Thu Dec 12 23:55:45 2019 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=8c37a583

www-client/firefox: Version bump 72.0b5

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

 www-client/firefox/Manifest   | 4 ++--
 .../firefox/{firefox-72.0_beta4.ebuild => firefox-72.0_beta5.ebuild}  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 145559e..c0824be 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -1,2 +1,2 @@
-DIST firefox-72.0-patches-03.tar.xz 17620 BLAKE2B 
7b807d05bdbee0ca3d998ea130c86208a8975b41a73c5bee3eeae655a8742eec5373f96cfd7a4e18062be2387f39cfb8ac081cd431b6dd1ae2ceb157b7e6e5a9
 SHA512 
552d141fa9bdaefd60ef253c0faa734d22e5f058dec134a075d226d2875fba8017e67f53be19bc8ff69903300e4758f00ee71333f12b41f42ff2f47d990e1d6c
-DIST firefox-72.0b4.source.tar.xz 322283144 BLAKE2B 
f106ed65383ac3322a81c15dc269b8c13a60cdd0eb83b1513d8d313137865140bbc199820333aa05dfb701f21f5d15d1bdcbef010fbbf1bce569381421b84ec2
 SHA512 
04cf5720e7af9fcd2e8d9516485a415d43e10ec7abfcf6b2fb54f2e59abc9f07112bb93c23c288a76f7b8594352eae39c83064a3e4fb4d6c33e00f02ddd9e514
+DIST firefox-72.0-patches-02.tar.xz 17028 BLAKE2B 
5689840448fde363d4c3bf5b0d55ba9f6e54b4445c14dd6a40fdcec8d848c1174cec5bf359c8962906f032f927fdc000264e7b038917e9c81103ac7896afaa94
 SHA512 
86e97d732d431f1567945e380459de1ccb35d46e0befe9205f10ebdd9759e5111e477eff1383a28a17866e09118e2c7862af54c812c277797a9ec316f2b7306a
+DIST firefox-72.0b5.source.tar.xz 314953148 BLAKE2B 
1d358ed604ed5f00dc6f0de986ff4aa0690394bffcc736596e5dffa3ff9bad73e4ddfd487880ffcb5d6e8b4ea17f45a8d4de9ff4e677cfa7e07942829ea1a72a
 SHA512 
3cd10aad27ade07dcbfcc0bf349e491801eafafa88fa2586460137f3cd0e75d820645a3535850d4e68b4dce760949a10e9318f0fa2a78ef9cb0dd0bf82c85415

diff --git a/www-client/firefox/firefox-72.0_beta4.ebuild 
b/www-client/firefox/firefox-72.0_beta5.ebuild
similarity index 99%
rename from www-client/firefox/firefox-72.0_beta4.ebuild
rename to www-client/firefox/firefox-72.0_beta5.ebuild
index c22732d..6c05479 100644
--- a/www-client/firefox/firefox-72.0_beta4.ebuild
+++ b/www-client/firefox/firefox-72.0_beta5.ebuild
@@ -27,7 +27,7 @@ if [[ ${MOZ_ESR} == 1 ]] ; then
 fi
 
 # Patch version
-PATCH="${PN}-72.0-patches-03"
+PATCH="${PN}-72.0-patches-02"
 
 MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases";
 MOZ_SRC_URI="${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.xz"



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

2019-12-12 Thread Thomas Deutschmann
commit: 8bb0b058d1ea43cf3b4aa95a459079e0e9ec94b0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:41:13 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:04:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb0b058

dev-libs/libgit2: x86 stable (bug #702522)

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

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

diff --git a/dev-libs/libgit2/libgit2-0.28.4.ebuild 
b/dev-libs/libgit2/libgit2-0.28.4.ebuild
index d10d78087b4..84b9ad2b9c5 100644
--- a/dev-libs/libgit2/libgit2-0.28.4.ebuild
+++ b/dev-libs/libgit2/libgit2-0.28.4.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm arm64 ~ppc ~x86 ~ppc-macos"
+   KEYWORDS="amd64 ~arm arm64 ~ppc x86 ~ppc-macos"
 fi
 
 DESCRIPTION="A linkable library for Git"



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

2019-12-12 Thread Thomas Deutschmann
commit: de4686c5c5568f2aa0c818b623ef27967156c0d0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:53:18 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:06:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de4686c5

dev-php/pecl-redis: fix MissingUseDepDefault

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

 dev-php/pecl-redis/pecl-redis-5.0.2.ebuild | 2 +-
 dev-php/pecl-redis/pecl-redis-5.1.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/pecl-redis/pecl-redis-5.0.2.ebuild 
b/dev-php/pecl-redis/pecl-redis-5.0.2.ebuild
index 61a6320308d..77a59f7f089 100644
--- a/dev-php/pecl-redis/pecl-redis-5.0.2.ebuild
+++ b/dev-php/pecl-redis/pecl-redis-5.0.2.ebuild
@@ -20,7 +20,7 @@ KEYWORDS="~amd64 ~arm"
 IUSE="igbinary +json +session"
 
 DEPEND="
-   igbinary? ( 
dev-php/igbinary[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]
 )
+   igbinary? ( 
>=dev-php/igbinary-3.0.1-r1[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]
 )
 "
 RDEPEND="${DEPEND} !dev-php/pecl-redis:7"
 

diff --git a/dev-php/pecl-redis/pecl-redis-5.1.1.ebuild 
b/dev-php/pecl-redis/pecl-redis-5.1.1.ebuild
index 61a6320308d..77a59f7f089 100644
--- a/dev-php/pecl-redis/pecl-redis-5.1.1.ebuild
+++ b/dev-php/pecl-redis/pecl-redis-5.1.1.ebuild
@@ -20,7 +20,7 @@ KEYWORDS="~amd64 ~arm"
 IUSE="igbinary +json +session"
 
 DEPEND="
-   igbinary? ( 
dev-php/igbinary[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]
 )
+   igbinary? ( 
>=dev-php/igbinary-3.0.1-r1[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]
 )
 "
 RDEPEND="${DEPEND} !dev-php/pecl-redis:7"
 



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

2019-12-12 Thread Thomas Deutschmann
commit: a4b3ae35742501bc83b4883c452e020eee170f17
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:55:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:06:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b3ae35

dev-php/pecl-http: fix MissingUseDepDefault

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

 dev-php/pecl-http/pecl-http-3.2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-http/pecl-http-3.2.3.ebuild 
b/dev-php/pecl-http/pecl-http-3.2.3.ebuild
index 34a213da1df..df14e937eb7 100644
--- a/dev-php/pecl-http/pecl-http-3.2.3.ebuild
+++ b/dev-php/pecl-http/pecl-http-3.2.3.ebuild
@@ -25,7 +25,7 @@ IUSE="ssl curl_ssl_gnutls curl_ssl_libressl curl_ssl_nss 
+curl_ssl_openssl"
 DEPEND="app-arch/brotli:=
dev-libs/libevent

dev-php/pecl-propro:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]
-   
dev-php/pecl-raphf:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]
+   
>=dev-php/pecl-raphf-2.0.1:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]
net-dns/libidn2
sys-libs/zlib
ssl? ( 
net-misc/curl[ssl,curl_ssl_gnutls=,curl_ssl_libressl=,curl_ssl_nss=,curl_ssl_openssl=]
 )



[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/

2019-12-12 Thread Thomas Deutschmann
commit: 7c8c0eea351af649da2daa6d5eaf6d47d089751c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:36:17 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:04:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c8c0eea

app-doc/doxygen: x86 stable (bug #702610)

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

 app-doc/doxygen/doxygen-1.8.16-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-doc/doxygen/doxygen-1.8.16-r1.ebuild 
b/app-doc/doxygen/doxygen-1.8.16-r1.ebuild
index 8dc88e27655..1dd1b52fa4d 100644
--- a/app-doc/doxygen/doxygen-1.8.16-r1.ebuild
+++ b/app-doc/doxygen/doxygen-1.8.16-r1.ebuild
@@ -11,10 +11,10 @@ if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/doxygen/doxygen.git";
SRC_URI=""
-   KEYWORDS="ia64"
+   KEYWORDS="ia64 x86"
 else
SRC_URI="http://doxygen.nl/files/${P}.src.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="Documentation system for most programming languages"



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

2019-12-12 Thread Thomas Deutschmann
commit: bffca53e44b14c286a5b2bddb25acb2dc84765ba
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:59:25 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:06:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bffca53e

dev-php/pecl-apcu_bc: fix MissingUseDepDefault

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

 dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild 
b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild
index 1147232f483..79ea5781e4d 100644
--- a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild
+++ b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.5.ebuild
@@ -21,7 +21,7 @@ LICENSE="PHP-3.01"
 SLOT="0"
 IUSE=""
 
-DEPEND="dev-php/pecl-apcu:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]"
+DEPEND=">=dev-php/pecl-apcu-5.1.18:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?]"
 RDEPEND="${DEPEND}"
 
 src_test() {



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

2019-12-12 Thread Thomas Deutschmann
commit: 8cb1f60bd1bd58761a2006052cdaca7308d2bcdb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:43:43 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:04:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb1f60b

net-libs/rabbitmq-c: x86 stable (bug #701810)

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

 net-libs/rabbitmq-c/rabbitmq-c-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/rabbitmq-c/rabbitmq-c-0.10.0.ebuild 
b/net-libs/rabbitmq-c/rabbitmq-c-0.10.0.ebuild
index d0ba691b2e7..91110cbd2ae 100644
--- a/net-libs/rabbitmq-c/rabbitmq-c-0.10.0.ebuild
+++ b/net-libs/rabbitmq-c/rabbitmq-c-0.10.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
EGIT_REPO_URI="https://github.com/alanxz/${PN}.git";
 else
SRC_URI="https://github.com/alanxz/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ppc ppc64 ~s390 sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ppc ppc64 ~s390 sparc x86"
 fi
 
 LICENSE="MIT"



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

2019-12-12 Thread Thomas Deutschmann
commit: df986b4e7f22b31509067f58fe6a096aea7f9dc6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec 13 00:04:09 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:06:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df986b4e

dev-lang/php: fix MissingUseDepDefault

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

 dev-lang/php/php-5.6.40-r7.ebuild | 2 +-
 dev-lang/php/php-7.1.33.ebuild| 2 +-
 dev-lang/php/php-7.2.24.ebuild| 2 +-
 dev-lang/php/php-7.2.25.ebuild| 2 +-
 dev-lang/php/php-7.3.11.ebuild| 2 +-
 dev-lang/php/php-7.3.12.ebuild| 2 +-
 dev-lang/php/php-7.4.0.ebuild | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-lang/php/php-5.6.40-r7.ebuild 
b/dev-lang/php/php-5.6.40-r7.ebuild
index 7de69c37f11..80f4eacde0c 100644
--- a/dev-lang/php/php-5.6.40-r7.ebuild
+++ b/dev-lang/php/php-5.6.40-r7.ebuild
@@ -78,7 +78,7 @@ COMMON_DEPEND="
gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
gmp? ( dev-libs/gmp:0= )
iconv? ( virtual/libiconv )
-   imap? ( virtual/imap-c-client[kerberos=,ssl=] )
+   imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] )
intl? ( dev-libs/icu:= )
iodbc? ( dev-db/libiodbc )
kerberos? ( virtual/krb5 )

diff --git a/dev-lang/php/php-7.1.33.ebuild b/dev-lang/php/php-7.1.33.ebuild
index 3ddc7c8941b..7ab761dd6e1 100644
--- a/dev-lang/php/php-7.1.33.ebuild
+++ b/dev-lang/php/php-7.1.33.ebuild
@@ -65,7 +65,7 @@ COMMON_DEPEND="
gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
gmp? ( dev-libs/gmp:0= )
iconv? ( virtual/libiconv )
-   imap? ( virtual/imap-c-client[kerberos=,ssl=] )
+   imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] )
intl? ( dev-libs/icu:= )
iodbc? ( dev-db/libiodbc )
kerberos? ( virtual/krb5 )

diff --git a/dev-lang/php/php-7.2.24.ebuild b/dev-lang/php/php-7.2.24.ebuild
index 9b29c8d3e9d..95462724d18 100644
--- a/dev-lang/php/php-7.2.24.ebuild
+++ b/dev-lang/php/php-7.2.24.ebuild
@@ -65,7 +65,7 @@ COMMON_DEPEND="
gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
gmp? ( dev-libs/gmp:0= )
iconv? ( virtual/libiconv )
-   imap? ( virtual/imap-c-client[kerberos=,ssl=] )
+   imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] )
intl? ( dev-libs/icu:= )
iodbc? ( dev-db/libiodbc )
kerberos? ( virtual/krb5 )

diff --git a/dev-lang/php/php-7.2.25.ebuild b/dev-lang/php/php-7.2.25.ebuild
index ec31c9cfef4..ad83deae04f 100644
--- a/dev-lang/php/php-7.2.25.ebuild
+++ b/dev-lang/php/php-7.2.25.ebuild
@@ -65,7 +65,7 @@ COMMON_DEPEND="
gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
gmp? ( dev-libs/gmp:0= )
iconv? ( virtual/libiconv )
-   imap? ( virtual/imap-c-client[kerberos=,ssl=] )
+   imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] )
intl? ( dev-libs/icu:= )
iodbc? ( dev-db/libiodbc )
kerberos? ( virtual/krb5 )

diff --git a/dev-lang/php/php-7.3.11.ebuild b/dev-lang/php/php-7.3.11.ebuild
index 74fc91e4547..79917af499c 100644
--- a/dev-lang/php/php-7.3.11.ebuild
+++ b/dev-lang/php/php-7.3.11.ebuild
@@ -68,7 +68,7 @@ COMMON_DEPEND="
gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
gmp? ( dev-libs/gmp:0= )
iconv? ( virtual/libiconv )
-   imap? ( virtual/imap-c-client[kerberos=,ssl=] )
+   imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] )
intl? ( dev-libs/icu:= )
iodbc? ( dev-db/libiodbc )
kerberos? ( virtual/krb5 )

diff --git a/dev-lang/php/php-7.3.12.ebuild b/dev-lang/php/php-7.3.12.ebuild
index 8f92a1b3a86..0c4e1613042 100644
--- a/dev-lang/php/php-7.3.12.ebuild
+++ b/dev-lang/php/php-7.3.12.ebuild
@@ -68,7 +68,7 @@ COMMON_DEPEND="
gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
gmp? ( dev-libs/gmp:0= )
iconv? ( virtual/libiconv )
-   imap? ( virtual/imap-c-client[kerberos=,ssl=] )
+   imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] )
intl? ( dev-libs/icu:= )
iodbc? ( dev-db/libiodbc )
kerberos? ( virtual/krb5 )

diff --git a/dev-lang/php/php-7.4.0.ebuild b/dev-lang/php/php-7.4.0.ebuild
index fbf13a93f6b..e40c1d79c01 100644
--- a/dev-lang/php/php-7.4.0.ebuild
+++ b/dev-lang/php/php-7.4.0.ebuild
@@ -98,7 +98,7 @@ COMMON_DEPEND="
gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
gmp? ( dev-libs/gmp:0= )
iconv? ( virtual/libiconv )
-   imap? ( virtual/imap-c-client[kerberos=,ssl=] )
+   imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] )
intl? ( dev-libs/icu:= )
kerberos? ( virtual/krb5 )
ldap? ( >=net-nds/openldap-1.2.11 )



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

2019-12-12 Thread Thomas Deutschmann
commit: cbc1f7fcdd82e86950d1f583d9cf1f743832104d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:42:40 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:04:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbc1f7fc

app-text/poppler: x86 stable (bug #701684)

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

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

diff --git a/app-text/poppler/poppler-0.82.0.ebuild 
b/app-text/poppler/poppler-0.82.0.ebuild
index 67b8aefde04..a0426000e92 100644
--- a/app-text/poppler/poppler-0.82.0.ebuild
+++ b/app-text/poppler/poppler-0.82.0.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]] ; then
SLOT="0/"
 else
SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0/92"   # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so 
SOVERSION
 fi
 



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

2019-12-12 Thread Thomas Deutschmann
commit: 19dcc36bf1a335a5e83b158d0f51128a64269bce
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:34:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:04:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19dcc36b

net-analyzer/cacti-spine: x86 stable (bug #702312)

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

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

diff --git a/net-analyzer/cacti-spine/cacti-spine-1.2.8.ebuild 
b/net-analyzer/cacti-spine/cacti-spine-1.2.8.ebuild
index 3dce5503b74..63f1c540c52 100644
--- a/net-analyzer/cacti-spine/cacti-spine-1.2.8.ebuild
+++ b/net-analyzer/cacti-spine/cacti-spine-1.2.8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://www.cacti.net/downloads/spine/${MY_P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 sparc x86"
 IUSE="libressl"
 
 CDEPEND="



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

2019-12-12 Thread Thomas Deutschmann
commit: 3d9578f456149aa0813d3a8f6fb04e8c943893c0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:58:46 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:06:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9578f4

dev-php/pecl-apcu_bc: drop old

Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4.ebuild | 44 --
 1 file changed, 44 deletions(-)

diff --git a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4.ebuild 
b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4.ebuild
deleted file mode 100644
index b3444d3692b..000
--- a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PHP_INI_NAME="bc_apc"
-PHP_EXT_NAME="apc"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="no"
-PHP_EXT_EXTRA_ECONF=""
-DOCS=( README.md )
-
-USE_PHP="php7-0 php7-1 php7-2"
-
-inherit php-ext-pecl-r3 multilib
-
-KEYWORDS="amd64 x86"
-
-DESCRIPTION="Provides APC backwards compatibility functions via APCu"
-LICENSE="PHP-3.01"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-php/pecl-apcu:7[php_targets_php7-0?,php_targets_php7-1?,php_targets_php7-2?]"
-RDEPEND="${DEPEND}"
-
-src_test() {
-   # This fixed version is necessary to have apcu load
-   # from the install before the tested apc.
-   # It is intentional to specify phpoptions twice.
-   # This mimics the Makefile.
-   local slot phpoptions
-   for slot in $(php_get_slots); do
-   php_init_slot_env "${slot}"
-   ln -s "${EXT_DIR}/apcu$(get_libname)" \
-   "modules/" || die
-   phpoptions=( -n -d extension_dir="${PHP_EXT_S}/modules"
-   -d extension=apcu$(get_libname)
-   -d extension=apc$(get_libname)  )
-   NO_INTERACTION="yes" TEST_PHP_EXECUTABLE="${PHPCLI}" \
-   "${PHPCLI}" "${phpoptions[@]}" \
-   run-tests.php "${phpoptions[@]}" || die
-   done
-}



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

2019-12-12 Thread Thomas Deutschmann
commit: 0c3b51762626fc26fd625466ff58b074e475ec8c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:58:25 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:06:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c3b5176

dev-php/pecl-apcu_bc: move stable keywords

Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4-r1.ebuild 
b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4-r1.ebuild
index e9ed00d7cc4..4841dd913de 100644
--- a/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4-r1.ebuild
+++ b/dev-php/pecl-apcu_bc/pecl-apcu_bc-1.0.4-r1.ebuild
@@ -14,7 +14,7 @@ USE_PHP="php7-1 php7-2 php7-3"
 
 inherit php-ext-pecl-r3 multilib
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DESCRIPTION="Provides APC backwards compatibility functions via APCu"
 LICENSE="PHP-3.01"



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

2019-12-12 Thread Thomas Deutschmann
commit: 0a17cc01c38e08cbaf933384a39556227a043044
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:38:10 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:04:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a17cc01

sys-apps/fwupd: x86 stable (bug #696002)

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

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

diff --git a/sys-apps/fwupd/fwupd-1.2.11.ebuild 
b/sys-apps/fwupd/fwupd-1.2.11.ebuild
index 890023716a0..31f15d07c13 100644
--- a/sys-apps/fwupd/fwupd-1.2.11.ebuild
+++ b/sys-apps/fwupd/fwupd-1.2.11.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="agent colorhug consolekit dell doc elogind +gpg +man nvme pkcs7 redfish 
systemd test thunderbolt uefi"
 RESTRICT="!test? ( test )"
 



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

2019-12-12 Thread Thomas Deutschmann
commit: cde130eab52d68a02cd69136c7c15b163a9dcb23
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:48:24 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:06:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cde130ea

dev-php/phpspec-prophecy: fix VariableInHomepage

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

 dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild 
b/dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild
index 5fe3b60064c..ea30e9b7474 100644
--- a/dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild
+++ b/dev-php/phpspec-prophecy/phpspec-prophecy-1.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6



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

2019-12-12 Thread Thomas Deutschmann
commit: 29a71a79c14135c3c4c7be45fe2cec4bbc316b3e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:33:41 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:04:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a71a79

net-analyzer/cacti: x86 stable (bug #702312)

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

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

diff --git a/net-analyzer/cacti/cacti-1.2.8.ebuild 
b/net-analyzer/cacti/cacti-1.2.8.ebuild
index e2b04f189c9..013b9250536 100644
--- a/net-analyzer/cacti/cacti-1.2.8.ebuild
+++ b/net-analyzer/cacti/cacti-1.2.8.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://www.cacti.net/";
 SRC_URI="https://www.cacti.net/downloads/${MY_P}.tar.gz";
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 sparc x86"
 IUSE="snmp doc"
 
 need_httpd



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

2019-12-12 Thread Thomas Deutschmann
commit: 2fed98aecb2fc82e0005e5731a715d80cd500fb4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Dec 12 23:40:18 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 00:04:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fed98ae

dev-vcs/git: x86 stable (bug #702296)

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

 dev-vcs/git/git-2.21.1.ebuild | 2 +-
 dev-vcs/git/git-2.24.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-vcs/git/git-2.21.1.ebuild b/dev-vcs/git/git-2.21.1.ebuild
index 816b927f4fe..b13c8ab2783 100644
--- a/dev-vcs/git/git-2.21.1.ebuild
+++ b/dev-vcs/git/git-2.21.1.ebuild
@@ -45,7 +45,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"

diff --git a/dev-vcs/git/git-2.24.1.ebuild b/dev-vcs/git/git-2.24.1.ebuild
index d12d7aab6f3..dd61b7e0751 100644
--- a/dev-vcs/git/git-2.24.1.ebuild
+++ b/dev-vcs/git/git-2.24.1.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: games-server/bedrock-server/files/, games-server/bedrock-server/

2019-12-12 Thread Conrad Kostecki
commit: 577638d22e4958bd56e51f71abab72d43b870ec2
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec 12 20:30:22 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Dec 13 00:14:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577638d2

games-server/bedrock-server: bump to version 1.14.0.9

Also changed from app-misc/screen to app-misc/dtach,
to use a lightweight alternative for the interactive process.

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

 games-server/bedrock-server/Manifest   |  1 +
 .../bedrock-server/bedrock-server-1.14.0.9.ebuild  | 52 ++
 .../bedrock-server/files/bedrock-server.initd-r1   | 47 +++
 3 files changed, 100 insertions(+)

diff --git a/games-server/bedrock-server/Manifest 
b/games-server/bedrock-server/Manifest
index c1fc98273b9..9b8bae6f44d 100644
--- a/games-server/bedrock-server/Manifest
+++ b/games-server/bedrock-server/Manifest
@@ -1 +1,2 @@
 DIST bedrock-server-1.13.3.0.zip 48812104 BLAKE2B 
052e2445268c1e313139a6291aa8e5ef623a30f8dd26c32ed604f73318af75ae4f3f5c22ea3e73d18d6989388ff5da2600c5b0b019f3120db1779e49cad9d8c7
 SHA512 
2319f160ac69088c9420b1b6c999d576216c5a4b7034182e31572b2ece5f7bab3da049ee06f9b99b152da618a25f53df608c1eca23eab61b8ca9dbff24b78d6e
+DIST bedrock-server-1.14.0.9.zip 49343697 BLAKE2B 
eecc771b1722629f924fbf8b9e981ff72d541c4a297fa02c6e951331859bc2240c4c471966176c5bb6f39f7f643f6a4f43447aa978f10a8f53403aeaff29d9cd
 SHA512 
2e11261abd60a36fec029e0297b5e3de9fb0935947e04ee19c43ea3803cf365e2984e231b81d074f25bc7ff08013cc4a961899665f24501c75d3c8817e60e97c

diff --git a/games-server/bedrock-server/bedrock-server-1.14.0.9.ebuild 
b/games-server/bedrock-server/bedrock-server-1.14.0.9.ebuild
new file mode 100644
index 000..d4558dee240
--- /dev/null
+++ b/games-server/bedrock-server/bedrock-server-1.14.0.9.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
+HOMEPAGE="https://www.minecraft.net/";
+SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip";
+
+LICENSE="Mojang"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+   acct-group/bedrock
+   acct-user/bedrock
+   app-misc/dtach
+   dev-libs/openssl:0/1.1
+   net-misc/curl[ssl]
+"
+
+BDEPEND="app-arch/unzip"
+
+RESTRICT="bindist mirror"
+
+S="${WORKDIR}"
+
+DOCS=(
+   "bedrock_server_how_to.html"
+   "release-notes.txt"
+)
+
+QA_PREBUILT="
+   opt/bedrock-server/bedrock_server
+   opt/bedrock-server/libCrypto.so
+"
+
+src_install() {
+   exeinto /opt/bedrock-server
+   doexe bedrock_server libCrypto.so
+
+   insinto /opt/bedrock-server
+   doins {permissions,whitelist}.json server.properties
+   doins -r {behavior,resource}_packs definitions structures
+
+   dodir /opt/bin
+   dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server
+
+   newinitd "${FILESDIR}"/bedrock-server.initd-r1 bedrock-server
+
+   einstalldocs
+}

diff --git a/games-server/bedrock-server/files/bedrock-server.initd-r1 
b/games-server/bedrock-server/files/bedrock-server.initd-r1
new file mode 100644
index 000..5f71b80edb2
--- /dev/null
+++ b/games-server/bedrock-server/files/bedrock-server.initd-r1
@@ -0,0 +1,47 @@
+#!/sbin/openrc-run
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+if [ "${SVCNAME}" = "bedrock-server" ]; then
+   instance="main"
+else
+   instance="${SVCNAME#*.}"
+fi
+
+bedrock_command="/opt/bin/bedrock-server"
+bedrock_path="/var/lib/bedrock-server"
+bedrock_path_data="/opt/bedrock-server"
+bedrock_path_instance="${bedrock_path}/${instance}"
+dtach_tmpfile="$(mktemp -u)"
+name="Minecraft Bedrock server (${instance})"
+pidfile="/run/bedrock-server.${instance}.pid"
+start_stop_daemon_args="--chdir ${bedrock_path_instance}"
+
+command="/usr/bin/dtach"
+command_background="true"
+command_args="-N ${dtach_tmpfile} ${bedrock_command}"
+command_group="bedrock"
+command_user="bedrock"
+
+depend() {
+   use net
+}
+
+start_pre() {
+   checkpath -d -o "${command_user}:${command_group}" -q "${bedrock_path}" 
"${bedrock_path_instance}"
+
+   local bedrock_configs=( "permissions.json" "server.properties" 
"whitelist.json" )
+   for bedrock_config in ${bedrock_configs[@]}; do
+   if [ ! -f "${bedrock_path_instance}/${bedrock_config}" ]; then
+   cp "${bedrock_path_data}/${bedrock_config}" 
"${bedrock_path_instance}"
+   checkpath -f -o "${command_user}:${command_group}" -q 
"${bedrock_path_instance}/${bedrock_config}"
+   fi
+   done
+
+   local bedrock_ressources=( "behavior_packs" "definitions" 
"resource_packs" "structures" )
+   for bedrock_ressource in

[gentoo-commits] repo/gentoo:master commit in: games-server/minecraft-server/, games-server/minecraft-server/files/

2019-12-12 Thread Conrad Kostecki
commit: d79058fa965ac6f2737f9a236e3b06678b67169a
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec 12 23:37:20 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Dec 13 00:14:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d79058fa

games-server/minecraft-server: bump to version 1.15.0

Also changed from app-misc/screen to app-misc/dtach,
to use a lightweight alternative for the interactive process.

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

 games-server/minecraft-server/Manifest |  1 +
 .../files/minecraft-server.initd-r3| 47 +
 .../minecraft-server-1.15.0.ebuild | 48 ++
 3 files changed, 96 insertions(+)

diff --git a/games-server/minecraft-server/Manifest 
b/games-server/minecraft-server/Manifest
index 59a1c2a41bf..8eefe9cc834 100644
--- a/games-server/minecraft-server/Manifest
+++ b/games-server/minecraft-server/Manifest
@@ -1 +1,2 @@
 DIST minecraft-server-1.14.4.jar 35958734 BLAKE2B 
058d6609296394e4714a159976d4de0261a552a919e33db1e54d97e3d2ee90cd4356b60190b807050d3c7ab336149d1c9be55093ba002735ccc6a162706c6ee3
 SHA512 
b3d2852c6fa1b996bbf2fa9fc1fb860c6bca5136bcc5ddd3d236d85789c6bce81620f6b2d69eaa10c41d020fe0bb54de2fa601b3df3093af2691853a4445e1f8
+DIST minecraft-server-1.15.0.jar 36164465 BLAKE2B 
e209abacd4a90964b7ccf19333224c0235c91f6f560a9c83f585c92cc973f3dea292032a67ef99aac8e8f17aedd557a0d8f548edda5a187c6a20def091e1ed9a
 SHA512 
66775b4be5a38fe7e3fc94c50b870d58cc21d4da1b4f4437d749b5b6f93680a2206b5a1eac7e55b42072619686b0bdf16ed5850ce8db9c65f6d2508529bac0a4

diff --git a/games-server/minecraft-server/files/minecraft-server.initd-r3 
b/games-server/minecraft-server/files/minecraft-server.initd-r3
new file mode 100644
index 000..a76d6d23e67
--- /dev/null
+++ b/games-server/minecraft-server/files/minecraft-server.initd-r3
@@ -0,0 +1,47 @@
+#!/sbin/openrc-run
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+if [ "${SVCNAME}" = "minecraft-server" ]; then
+   instance="main"
+else
+   instance="${SVCNAME#minecraft-server.}"
+fi
+
+dtach_tmpfile="$(mktemp -u)"
+minecraft_command="/usr/bin/minecraft-server"
+minecraft_logs="/var/log/minecraft-server"
+minecraft_logs_instance="${minecraft_logs}/${instance}"
+minecraft_path="/var/lib/minecraft-server"
+minecraft_path_instance="${minecraft_path}/${instance}"
+name="Minecraft Server (World: ${instance})"
+pidfile="/run/minecraft-server.${instance}.pid"
+start_stop_daemon_args="--chdir ${minecraft_path_instance} --env 
JAVA_OPTS='${MINECRAFT_OPTS}'"
+
+command="/usr/bin/dtach"
+command_background="true"
+command_args="-N ${dtach_tmpfile} ${minecraft_command}"
+command_group="minecraft"
+command_user="minecraft"
+
+depend() {
+   use net
+}
+
+start_pre() {
+   checkpath -d -o "${command_user}:${command_group}" -q 
"${minecraft_path}" "${minecraft_path_instance}"
+
+   checkpath -f -o "${command_user}:${command_group}" -q 
"${minecraft_path_instance}"/eula.txt
+   echo "eula=true" > "${minecraft_path_instance}"/eula.txt
+
+   checkpath -d -o "${command_user}:${command_group}" -q 
"${minecraft_logs}" "${minecraft_logs_instance}"
+
+   if [ ! -L "${minecraft_path_instance}"/logs ]; then
+   cd "${minecraft_path_instance}" && ln -s 
../../../log/minecraft-server/"${instance}" logs
+   fi
+
+   if [ -z "${MINECRAFT_OPTS}" ]; then
+   eerror "You must define MINECRAFT_OPTS in 
/etc/conf.d/minecraft.${SVCNAME}!"
+   return 1
+   fi
+}

diff --git a/games-server/minecraft-server/minecraft-server-1.15.0.ebuild 
b/games-server/minecraft-server/minecraft-server-1.15.0.ebuild
new file mode 100644
index 000..83a226fa696
--- /dev/null
+++ b/games-server/minecraft-server/minecraft-server-1.15.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="e9f105b3c5c7e85c7b445249a93362a22f62442d"
+
+inherit readme.gentoo-r1 java-pkg-2
+
+DESCRIPTION="The official server for the sandbox video game"
+HOMEPAGE="https://www.minecraft.net/";
+SRC_URI="https://launcher.mojang.com/v1/objects/${EGIT_COMMIT}/server.jar -> 
${P}.jar"
+
+LICENSE="Mojang"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   acct-group/minecraft
+   acct-user/minecraft
+   app-misc/dtach
+   || (
+   >=virtual/jre-1.8
+   >=virtual/jdk-1.8
+   )
+"
+
+RESTRICT="bindist mirror"
+
+S="${WORKDIR}"
+
+src_unpack() {
+   cp "${DISTDIR}"/${A} "${WORKDIR}" || die
+}
+
+src_install() {
+   java-pkg_newjar minecraft-server-${PV}.jar minecraft-server.jar
+   java-pkg_dolauncher minecraft-server --jar minecraft-server.jar 
--java_args "\${JAVA_OPTS}"
+
+   newinitd "${FILESDIR}"/minecraft-server.initd-r3 minecraft-ser

[gentoo-commits] repo/gentoo:master commit in: games-server/bedrock-server/, games-server/bedrock-server/files/

2019-12-12 Thread Conrad Kostecki
commit: acda3bd459aa5d4f24c457c1dd715a1902829fd8
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Thu Dec 12 20:31:24 2019 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Fri Dec 13 00:14:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acda3bd4

games-server/bedrock-server: drop old version

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

 games-server/bedrock-server/Manifest   |  1 -
 .../bedrock-server/bedrock-server-1.13.3.0.ebuild  | 52 --
 .../bedrock-server/files/bedrock-server.initd  | 47 ---
 3 files changed, 100 deletions(-)

diff --git a/games-server/bedrock-server/Manifest 
b/games-server/bedrock-server/Manifest
index 9b8bae6f44d..60563fd1d8b 100644
--- a/games-server/bedrock-server/Manifest
+++ b/games-server/bedrock-server/Manifest
@@ -1,2 +1 @@
-DIST bedrock-server-1.13.3.0.zip 48812104 BLAKE2B 
052e2445268c1e313139a6291aa8e5ef623a30f8dd26c32ed604f73318af75ae4f3f5c22ea3e73d18d6989388ff5da2600c5b0b019f3120db1779e49cad9d8c7
 SHA512 
2319f160ac69088c9420b1b6c999d576216c5a4b7034182e31572b2ece5f7bab3da049ee06f9b99b152da618a25f53df608c1eca23eab61b8ca9dbff24b78d6e
 DIST bedrock-server-1.14.0.9.zip 49343697 BLAKE2B 
eecc771b1722629f924fbf8b9e981ff72d541c4a297fa02c6e951331859bc2240c4c471966176c5bb6f39f7f643f6a4f43447aa978f10a8f53403aeaff29d9cd
 SHA512 
2e11261abd60a36fec029e0297b5e3de9fb0935947e04ee19c43ea3803cf365e2984e231b81d074f25bc7ff08013cc4a961899665f24501c75d3c8817e60e97c

diff --git a/games-server/bedrock-server/bedrock-server-1.13.3.0.ebuild 
b/games-server/bedrock-server/bedrock-server-1.13.3.0.ebuild
deleted file mode 100644
index 78c6aa517c1..000
--- a/games-server/bedrock-server/bedrock-server-1.13.3.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
-HOMEPAGE="https://www.minecraft.net/";
-SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip";
-
-LICENSE="Mojang"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-
-RDEPEND="
-   acct-group/bedrock
-   acct-user/bedrock
-   app-misc/screen
-   dev-libs/openssl:0/1.1
-   net-misc/curl[ssl]
-"
-
-BDEPEND="app-arch/unzip"
-
-RESTRICT="bindist mirror"
-
-S="${WORKDIR}"
-
-DOCS=(
-   "bedrock_server_how_to.html"
-   "release-notes.txt"
-)
-
-QA_PREBUILT="
-   opt/bedrock-server/bedrock_server
-   opt/bedrock-server/libCrypto.so
-"
-
-src_install() {
-   exeinto /opt/bedrock-server
-   doexe bedrock_server libCrypto.so
-
-   insinto /opt/bedrock-server
-   doins {permissions,whitelist}.json server.properties
-   doins -r {behavior,resource}_packs definitions structures
-
-   dodir /opt/bin
-   dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server
-
-   newinitd "${FILESDIR}"/bedrock-server.initd bedrock-server
-
-   einstalldocs
-}

diff --git a/games-server/bedrock-server/files/bedrock-server.initd 
b/games-server/bedrock-server/files/bedrock-server.initd
deleted file mode 100644
index 9157b610a1f..000
--- a/games-server/bedrock-server/files/bedrock-server.initd
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-if [ "${SVCNAME}" = "bedrock-server" ]; then
-   instance="main"
-else
-   instance="${SVCNAME#*.}"
-fi
-
-bedrock_command="/opt/bin/bedrock-server"
-bedrock_path="/var/lib/bedrock-server"
-bedrock_path_data="/opt/bedrock-server"
-bedrock_path_instance="${bedrock_path}/${instance}"
-name="Minecraft Bedrock server (${instance})"
-pidfile="/run/bedrock-server.${instance}.pid"
-screen_name="bedrock-server.${instance}"
-start_stop_daemon_args="--chdir ${bedrock_path_instance}"
-
-command="/usr/bin/screen"
-command_args="-DmUS ${screen_name} ${bedrock_command}"
-command_background="true"
-command_group="bedrock"
-command_user="bedrock"
-
-depend() {
-   use net
-}
-
-start_pre() {
-   checkpath -d -o "${command_user}:${command_group}" -q "${bedrock_path}" 
"${bedrock_path_instance}"
-
-   local bedrock_configs=( "permissions.json" "server.properties" 
"whitelist.json" )
-   for bedrock_config in ${bedrock_configs[@]}; do
-   if [ ! -f "${bedrock_path_instance}/${bedrock_config}" ]; then
-   cp "${bedrock_path_data}/${bedrock_config}" 
"${bedrock_path_instance}"
-   checkpath -f -o "${command_user}:${command_group}" -q 
"${bedrock_path_instance}/${bedrock_config}"
-   fi
-   done
-
-   local bedrock_ressources=( "behavior_packs" "definitions" 
"resource_packs" "structures" )
-   for bedrock_ressource in ${bedrock_ressources[@]}; do
-   if [ ! -L "${bedrock_path_instance}/${bedrock_ressource}" ]; 
t

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

2019-12-12 Thread Aaron Bauman
commit: db87ce464ab36dd3ab2f5643ad51d6378f242425
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 00:33:14 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 00:33:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db87ce46

app-shells/sash: port to EAPI 7

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

 app-shells/sash/sash-3.8.ebuild | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-shells/sash/sash-3.8.ebuild b/app-shells/sash/sash-3.8.ebuild
index 6c2ee580ce0..e584cdbcd92 100644
--- a/app-shells/sash/sash-3.8.ebuild
+++ b/app-shells/sash/sash-3.8.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
-inherit eutils toolchain-funcs flag-o-matic
+inherit toolchain-funcs flag-o-matic
 
 DESCRIPTION="A small (static) UNIX Shell"
-HOMEPAGE="http://www.canb.auug.org.au/~dbell/";
-SRC_URI="http://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz";
+HOMEPAGE="https://www.canb.auug.org.au/~dbell/";
+SRC_URI="https://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz";
 
 LICENSE="freedist"
 SLOT="0"
@@ -20,7 +20,7 @@ DEPEND="
 RDEPEND="!static? ( ${DEPEND} )"
 
 src_prepare() {
-   epatch "${FILESDIR}"/sash-3.7-builtin.patch
+   eapply "${FILESDIR}"/sash-3.7-builtin.patch
 
sed \
-e "s:-O3:${CFLAGS}:" \
@@ -29,6 +29,7 @@ src_prepare() {
sed \
-e 's:linux/ext2_fs.h:ext2fs/ext2_fs.h:g' \
-i cmd_chattr.c || die
+   eapply_user
 }
 
 src_compile() {
@@ -38,7 +39,6 @@ src_compile() {
 }
 
 src_install() {
-   into /
dobin sash
doman sash.1
dodoc README



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

2019-12-12 Thread David Seifert
commit: 150fffb6b2b9e7f37a6bf0c3a52dca5f383afefd
Author: David Seifert  gentoo  org>
AuthorDate: Fri Dec 13 00:42:45 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Dec 13 00:42:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150fffb6

media-libs/libsmf: Port to EAPI 7

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

 media-libs/libsmf/libsmf-1.3.ebuild | 38 +++--
 1 file changed, 20 insertions(+), 18 deletions(-)

diff --git a/media-libs/libsmf/libsmf-1.3.ebuild 
b/media-libs/libsmf/libsmf-1.3.ebuild
index e737d43b440..374d68ee108 100644
--- a/media-libs/libsmf/libsmf-1.3.ebuild
+++ b/media-libs/libsmf/libsmf-1.3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
-inherit autotools-utils
+inherit autotools
 
 DESCRIPTION="Standard MIDI File format library"
 HOMEPAGE="http://libsmf.sourceforge.net/api/";
@@ -12,32 +12,34 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 ~arm ppc ppc64 x86"
-IUSE="doc readline static-libs"
+IUSE="doc readline"
 
-RDEPEND=">=dev-libs/glib-2.2:2
-   readline? ( sys-libs/readline )"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )
-   virtual/pkgconfig"
-
-DOCS=( NEWS TODO )
+RDEPEND="
+   dev-libs/glib:2
+   readline? ( sys-libs/readline:= )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen )"
 
 src_configure() {
-   local myeconfargs=(
+   econf \
+   --disable-static \
$(use_with readline)
-   )
-   autotools-utils_src_configure
 }
 
 src_compile() {
-   autotools-utils_src_compile
+   default
 
-   if use doc ; then
+   if use doc; then
doxygen doxygen.cfg || die
fi
 }
 
 src_install() {
-   autotools-utils_src_install
-   use doc && dohtml -r api
+   use doc && local HTML_DOCS=( api )
+   default
+
+   # no static archives
+   find "${D}" -name '*.la' -delete || die
 }



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

2019-12-12 Thread David Seifert
commit: 9230055ed4b3fcc85ca9fca121dc5fdadf20b9d1
Author: David Seifert  gentoo  org>
AuthorDate: Fri Dec 13 00:42:49 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Dec 13 00:42:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9230055e

media-libs/libpano13: Port to EAPI 7

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

 media-libs/libpano13/Manifest|  1 -
 media-libs/libpano13/libpano13-2.9.18.ebuild | 44 
 2 files changed, 45 deletions(-)

diff --git a/media-libs/libpano13/Manifest b/media-libs/libpano13/Manifest
index f887477d0ef..a2112ecc80b 100644
--- a/media-libs/libpano13/Manifest
+++ b/media-libs/libpano13/Manifest
@@ -1,2 +1 @@
-DIST libpano13-2.9.18.tar.gz 2723032 BLAKE2B 
61402a30ff9c310a2c965ca10dc43d2ddbd43b0f04f2cad3123981010d8a91491414d00f32aad54552026486f48056d98f509fa5b0404bbb8b845466caa7c436
 SHA512 
bd8449a8ee01e990fa19784889c1afb0e64f90e25596c872e7470fb700c327aad4fc0c565977576dac34dca4cea55a46aad9dc547d3ee4ab6b353cd8b6656874
 DIST libpano13-2.9.19.tar.gz 3527845 BLAKE2B 
59d6b46b75de60a3230eb46e42bbb0f7b8826ac5b84d1dc32d28cc384b6690b258c0c3a6b75d3423a1583daccbd0aecd3f010eb58fb356cae5c54d29e05672f0
 SHA512 
f9f147426d44d8babac09cb1a1b5111f88b9c2fc079f33df80133492bcf24cbd1edd771e6bec7bed4b0256bf15c700139c0a83119d3adf296ae5c567e006d868

diff --git a/media-libs/libpano13/libpano13-2.9.18.ebuild 
b/media-libs/libpano13/libpano13-2.9.18.ebuild
deleted file mode 100644
index 752123e3c71..000
--- a/media-libs/libpano13/libpano13-2.9.18.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit versionator java-pkg-opt-2
-
-DESCRIPTION="Helmut Dersch's panorama toolbox library"
-HOMEPAGE="http://panotools.sourceforge.net/";
-SRC_URI="mirror://sourceforge/panotools/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="java static-libs"
-
-DEPEND="media-libs/libpng
-   media-libs/tiff
-   sys-libs/zlib
-   virtual/jpeg
-   java? ( >=virtual/jdk-1.3 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
-
-src_configure() {
-   LIBS="-lm" econf \
-   $(use_with java java ${JAVA_HOME}) \
-   $(use_enable static-libs static)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   dodoc README README.linux AUTHORS NEWS doc/*.txt
-
-   if ! use static-libs ; then
-   find "${D}" -name '*.la' -delete || die
-   fi
-}
-
-pkg_postinst() {
-   ewarn "you should remerge all reverse dependencies (media-gfx/hugin and"
-   ewarn "media-gfx/autopano-sift-C) as they might not work anymore"
-}



[gentoo-commits] repo/gentoo:master commit in: net-p2p/xmr-stak-rx/

2019-12-12 Thread Craig Andrews
commit: 76b2a91b9036e19283aa0048dba08b1a182a5a41
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Dec 13 00:43:04 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Dec 13 00:44:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76b2a91b

net-p2p/xmr-stak-rx: 1.0.3 version bump

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

 net-p2p/xmr-stak-rx/Manifest |  1 +
 net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.3.ebuild | 65 
 2 files changed, 66 insertions(+)

diff --git a/net-p2p/xmr-stak-rx/Manifest b/net-p2p/xmr-stak-rx/Manifest
index 60b80839b5d..8de32cc61a1 100644
--- a/net-p2p/xmr-stak-rx/Manifest
+++ b/net-p2p/xmr-stak-rx/Manifest
@@ -1,2 +1,3 @@
 DIST xmr-stak-rx-1.0.1.tar.gz 500735 BLAKE2B 
112b75122f35358c8558dec116a5f37bbbd13e9f57a767e03e85da37ab4a408831aa50bf5f2415451f776492b42c5a4a36de730fefc7d99bb13f437c9007d549
 SHA512 
44948ad66445c37725397152201883feef8aff5afecaa93297a5bb45e65173b095e2e796d729bd8e9c778e94ee6fb65146250be54c39b10635a2569b6866
 DIST xmr-stak-rx-1.0.2.tar.gz 2590320 BLAKE2B 
e4bd4770ebd491182633a544a89e9ece25e471dfded7592680e0685883a805b26a0266982c0474f8a0db2c0ecf40412e4976c3ca7a4dc9f5f91f59bab947d277
 SHA512 
5a31ae5ae6e27c6bd2300c5e5056de733037d149fa7656b91da37f4e9dfb4f1cd1986503c30b84c4a5ee2539c12992dd5e5e883fb808d435d50484290cdb7e87
+DIST xmr-stak-rx-1.0.3.tar.gz 2590745 BLAKE2B 
4b7d452728f9a18239a91de08fe3bda8e515fd96d47e3411b83d77ec254fac70d1ac9f334fffb6eb09bd57a4f7c533b214ad017a207190e5800ff27cd6a4
 SHA512 
0836cde0766f781462957c196683b343ea48c10afee184db324ca6b62c4c7b53e381e8e4f4e41690148ae903b074d0cf0d51fed6a411b6bdaccb6f383e802935

diff --git a/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.3.ebuild 
b/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.3.ebuild
new file mode 100644
index 000..5bd13426b52
--- /dev/null
+++ b/net-p2p/xmr-stak-rx/xmr-stak-rx-1.0.3.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils systemd
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/fireice-uk/xmr-stak.git";
+   EGIT_BRANCH="xmr-stak-rx-dev"
+   inherit git-r3
+   SRC_URI=""
+else
+   SRC_URI="https://github.com/fireice-uk/xmr-stak/archive/${PV}-rx.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/xmr-stak-${PV}-rx"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Monero RandomX Miner"
+HOMEPAGE="https://github.com/fireice-uk/xmr-stak";
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cuda hwloc opencl ssl webserver"
+
+DEPEND="cuda? ( dev-util/nvidia-cuda-toolkit )
+   hwloc? ( sys-apps/hwloc )
+   opencl? ( virtual/opencl )
+   ssl? ( dev-libs/openssl:0= )
+   webserver? ( net-libs/libmicrohttpd )"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCUDA_ENABLE=$(usex cuda)
+   -DHWLOC_ENABLE=$(usex hwloc)
+   -DMICROHTTPD_ENABLE=$(usex webserver)
+   -DOpenCL_ENABLE=$(usex opencl)
+   -DOpenSSL_ENABLE=$(usex ssl)
+   -DLIBRARY_OUTPUT_PATH=$(get_libdir)
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service
+   doinitd "${FILESDIR}"/${PN}
+   dodir /etc/xmr-stak-rx
+}
+
+pkg_postinst() {
+   if [ ! -e "${ROOT}/etc/xmr-stak-rx/main.config" ]; then
+   ewarn "To use xmr-stack-rx:"
+   if use cuda || use opencl; then
+   ewarn "As root or as a user that is a member of the 
'video' group,"
+   fi
+   ewarn "run:"
+   ewarn "/usr/bin/xmr-stak-rx --cpu /etc/xmr-stak-rx/cpu.config 
--amd /etc/xmr-stak-rx/amd.config --nvidia /etc/xmr-stak-rx/nvidia.config -c 
/etc/xmr-stak-rx/main.config -C /etc/xmr-stak-rx/pools.txt"
+   ewarn "xmr-stak-rx can now be terminated and 'systemctl start 
xmr-stak-rx' or '/etc/init.d/xmr-stak-rx start' can be used."
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/stimg/files/, media-libs/stimg/

2019-12-12 Thread David Seifert
commit: c9144553d635b88262dcf818636c207734eb3b57
Author: David Seifert  gentoo  org>
AuthorDate: Fri Dec 13 00:42:52 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Dec 13 00:42:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9144553

media-libs/stimg: Port to EAPI 7

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

 media-libs/stimg/files/stimg-0.1.0-libpng15.patch | 15 +
 media-libs/stimg/stimg-0.1.0.ebuild   | 26 +++
 2 files changed, 23 insertions(+), 18 deletions(-)

diff --git a/media-libs/stimg/files/stimg-0.1.0-libpng15.patch 
b/media-libs/stimg/files/stimg-0.1.0-libpng15.patch
index 41ae138f1b1..a1b48ac36e2 100644
--- a/media-libs/stimg/files/stimg-0.1.0-libpng15.patch
+++ b/media-libs/stimg/files/stimg-0.1.0-libpng15.patch
@@ -1,6 +1,13 @@
 src/png.c
-+++ src/png.c
-@@ -102,8 +102,8 @@
+--- a/src/png.c
 b/src/png.c
+@@ -1,5 +1,6 @@
+ /* $Id: png.c,v 1.1.1.1 2003/01/30 12:22:26 hito Exp $ */
+ #include 
++#include 
+ #include 
+ #include "stimg.h"
+ 
+@@ -102,8 +103,8 @@
0x00,
NULL);
  
@@ -11,7 +18,7 @@
  
 if (image == NULL) {
png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
-@@ -112,18 +112,18 @@
+@@ -112,18 +113,18 @@
 } 
  
 row_pointers = png_get_rows(png_ptr, info_ptr);

diff --git a/media-libs/stimg/stimg-0.1.0.ebuild 
b/media-libs/stimg/stimg-0.1.0.ebuild
index 3a7be52b0ef..dba7db45095 100644
--- a/media-libs/stimg/stimg-0.1.0.ebuild
+++ b/media-libs/stimg/stimg-0.1.0.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-inherit eutils toolchain-funcs
+EAPI=7
+
+inherit toolchain-funcs
 
 DESCRIPTION="Simple and tiny image loading library"
 HOMEPAGE="http://homepage3.nifty.com/slokar/fb/";
@@ -11,26 +12,23 @@ 
SRC_URI="http://homepage3.nifty.com/slokar/stimg/${P}.tar.gz";
 LICENSE="LGPL-2+ MIT-with-advertising"
 SLOT="0"
 KEYWORDS="alpha amd64 ppc x86"
-IUSE="static-libs"
 
-RDEPEND="media-libs/libpng
-   media-libs/tiff
+RDEPEND="
+   media-libs/libpng:=
+   media-libs/tiff:=
virtual/jpeg"
 DEPEND="${RDEPEND}"
 
-DOCS=( AUTHORS )
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-libpng15.patch
-}
+PATCHES=( "${FILESDIR}"/${P}-libpng15.patch )
 
 src_configure() {
tc-export CC
-   econf $(use_enable static-libs static)
+   econf --disable-static
 }
 
 src_install() {
default
-   find "${D}" -name '*.la' -exec rm -f {} +
-   dodoc README.ja
+
+   # no static archives
+   find "${D}" -name '*.la' -delete || die
 }



[gentoo-commits] repo/gentoo:master commit in: media-libs/libexif-gtk/, media-libs/libexif-gtk/files/

2019-12-12 Thread David Seifert
commit: 334e99bb4b71534b5994054f9c88d71aad30bd52
Author: David Seifert  gentoo  org>
AuthorDate: Fri Dec 13 00:42:55 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Dec 13 00:42:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=334e99bb

media-libs/libexif-gtk: Port to EAPI 7

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

 .../files/libexif-gtk-0.3.5-confcheck.patch|  4 +--
 media-libs/libexif-gtk/libexif-gtk-0.3.5-r2.ebuild | 36 +-
 2 files changed, 23 insertions(+), 17 deletions(-)

diff --git a/media-libs/libexif-gtk/files/libexif-gtk-0.3.5-confcheck.patch 
b/media-libs/libexif-gtk/files/libexif-gtk-0.3.5-confcheck.patch
index ed22ca64115..33d130884a4 100644
--- a/media-libs/libexif-gtk/files/libexif-gtk-0.3.5-confcheck.patch
+++ b/media-libs/libexif-gtk/files/libexif-gtk-0.3.5-confcheck.patch
@@ -1,5 +1,5 @@
 configure.in.orig  2004-10-18 15:12:58.0 -0400
-+++ configure.in   2006-01-05 19:06:05.0 -0500
+--- a/configure.in
 b/configure.in
 @@ -52,7 +52,7 @@
  dnl 
---
  CPPFLAGS_save="$CPPFLAGS"

diff --git a/media-libs/libexif-gtk/libexif-gtk-0.3.5-r2.ebuild 
b/media-libs/libexif-gtk/libexif-gtk-0.3.5-r2.ebuild
index 8afe1081343..8cf633a8fe0 100644
--- a/media-libs/libexif-gtk/libexif-gtk-0.3.5-r2.ebuild
+++ b/media-libs/libexif-gtk/libexif-gtk-0.3.5-r2.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
-inherit autotools eutils
+EAPI=7
+
+inherit autotools
 
 DESCRIPTION="GTK+ frontend to the libexif library (parsing, editing, and 
saving EXIF data)"
 HOMEPAGE="http://libexif.sf.net";
@@ -11,30 +12,35 @@ SRC_URI="mirror://sourceforge/libexif/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="nls static-libs"
+IUSE="nls"
 
-RDEPEND="x11-libs/gtk+:2
-   >=media-libs/libexif-0.6.12"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
+RDEPEND="
+   dev-libs/glib:2
+   x11-libs/gtk+:2
+   media-libs/libexif:="
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
-DOCS=( ChangeLog )
+PATCHES=(
+   "${FILESDIR}"/${P}-confcheck.patch
+   "${FILESDIR}"/${P}-gtk212.patch
+)
 
 src_prepare() {
-   epatch \
-   "${FILESDIR}"/${P}-confcheck.patch \
-   "${FILESDIR}"/${P}-gtk212.patch
-
+   default
+   mv configure.{in,ac} || die
AT_M4DIR="m4" eautoreconf
 }
 
 src_configure() {
econf \
-   $(use_enable static-libs static) \
+   --disable-static \
$(use_enable nls)
 }
 
 src_install() {
default
-   rm -f "${ED}"usr/lib*/${PN}.la
+
+   # no static archives
+   find "${D}" -name '*.la' -delete || die
 }



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

2019-12-12 Thread Aaron Bauman
commit: 530ca6ba2f2307d8826a1f151e45800495a0a854
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 00:55:33 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 00:55:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=530ca6ba

media-libs/libcue: arm64 stable (bug #702632)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.81, Repoman-2.3.20

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

diff --git a/media-libs/libcue/libcue-2.2.1.ebuild 
b/media-libs/libcue/libcue-2.2.1.ebuild
index 71fc1c53e02..bb594eb8710 100644
--- a/media-libs/libcue/libcue-2.2.1.ebuild
+++ b/media-libs/libcue/libcue-2.2.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/lipnitsk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0/2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
 IUSE=""
 
 BDEPEND="



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

2019-12-12 Thread Thomas Deutschmann
commit: 7c8c8537773d7a63d54a253dcd21455dbbe48d43
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Dec 13 01:00:15 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Dec 13 01:16:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c8c8537

www-client/firefox: fix building with newer cbindgen

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

 ...2358-fix-older-builds-with-newer-cbindgen.patch | 50 ++
 www-client/firefox/firefox-71.0.ebuild |  1 +
 2 files changed, 51 insertions(+)

diff --git 
a/www-client/firefox/files/firefox-71.0-bug1602358-fix-older-builds-with-newer-cbindgen.patch
 
b/www-client/firefox/files/firefox-71.0-bug1602358-fix-older-builds-with-newer-cbindgen.patch
new file mode 100644
index 000..117b98caf33
--- /dev/null
+++ 
b/www-client/firefox/files/firefox-71.0-bug1602358-fix-older-builds-with-newer-cbindgen.patch
@@ -0,0 +1,50 @@
+From 2683aaa789cfeb8c31a2d94ed972642421768a4b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= 
+Date: Thu, 1 Jan 1970 00:00:00 +
+Subject: [PATCH] Bug 1602358 - Fix older builds with newer cbindgen. r=jwatt,
+ a=jcristau
+
+This should be fine to uplift so that downstream doesn't need multiple cbindgen
+versions.
+
+Differential Revision: https://phabricator.services.mozilla.com/D56346
+---
+ layout/generic/WritingModes.h  |  3 ++-
+ servo/ports/geckolib/cbindgen.toml | 10 --
+ 2 files changed, 2 insertions(+), 11 deletions(-)
+
+diff --git a/layout/generic/WritingModes.h b/layout/generic/WritingModes.h
+index 1a8d08b191b..0671388902f 100644
+--- a/layout/generic/WritingModes.h
 b/layout/generic/WritingModes.h
+@@ -518,7 +518,8 @@ class WritingMode {
+*/
+   void SetDirectionFromBidiLevel(uint8_t level) {
+ if (IS_LEVEL_RTL(level) == IsBidiLTR()) {
+-  mWritingMode ^= StyleWritingMode_RTL | StyleWritingMode_INLINE_REVERSED;
++  mWritingMode.bits ^= static_cast(
++  (StyleWritingMode_RTL | StyleWritingMode_INLINE_REVERSED).bits);
+ }
+   }
+ 
+diff --git a/servo/ports/geckolib/cbindgen.toml 
b/servo/ports/geckolib/cbindgen.toml
+index bed86498ea1..8a7a9cd7998 100644
+--- a/servo/ports/geckolib/cbindgen.toml
 b/servo/ports/geckolib/cbindgen.toml
+@@ -616,13 +616,3 @@ renaming_overrides_prefixing = true
+   // Get the layout rect, replacing auto right / bottom values for aAutoSize.
+   inline nsRect ToLayoutRect(nscoord aAutoSize = NS_MAXSIZE) const;
+ """
+-
+-"WritingMode" = """
+-  StyleWritingMode operator^(const StyleWritingMode& other) const {
+-return {static_cast(this->bits ^ other.bits)};
+-  }
+-  StyleWritingMode& operator^=(const StyleWritingMode& other) {
+-*this = (*this ^ other);
+-return *this;
+-  }
+-"""
+-- 
+2.20.1
+

diff --git a/www-client/firefox/firefox-71.0.ebuild 
b/www-client/firefox/firefox-71.0.ebuild
index f7cf2eae91b..6a3b5b71637 100644
--- a/www-client/firefox/firefox-71.0.ebuild
+++ b/www-client/firefox/firefox-71.0.ebuild
@@ -267,6 +267,7 @@ src_prepare() {
eapply "${WORKDIR}/firefox"
eapply "${FILESDIR}/${PN}-69.0-lto-gcc-fix.patch"
eapply "${FILESDIR}/mozilla-bug1601707-gcc-fixup.patch"
+   eapply 
"${FILESDIR}/${PN}-71.0-bug1602358-fix-older-builds-with-newer-cbindgen.patch"
 
# Allow user to apply any additional patches without modifing ebuild
eapply_user



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

2019-12-12 Thread Aaron Bauman
commit: 1de084adf091605cae95050aa74f04f4279ec209
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 01:22:56 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 01:23:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de084ad

dev-lang/bashforth: port to EAPI 7

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

 dev-lang/bashforth/bashforth-0.58a.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev-lang/bashforth/bashforth-0.58a.ebuild 
b/dev-lang/bashforth/bashforth-0.58a.ebuild
index 12ccf5c5d5e..76464d63e6a 100644
--- a/dev-lang/bashforth/bashforth-0.58a.ebuild
+++ b/dev-lang/bashforth/bashforth-0.58a.ebuild
@@ -1,11 +1,12 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
 DESCRIPTION="String-threaded Forth interpreter in Bash"
-HOMEPAGE="http://www.forthfreak.net/index.cgi?BashForth";
+HOMEPAGE="https://github.com/ForthHub/ForthFreak";
 SRC_URI="http://forthfreak.net/${PN}.versions/${P}";
+
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"



[gentoo-commits] proj/musl:master commit in: sys-libs/libcap/files/, sys-libs/libcap/

2019-12-12 Thread Jory Pratt
commit: 8f961c80e61c5b6ca4d162320487cdf1f3e1e576
Author: Jory Pratt  gentoo  org>
AuthorDate: Fri Dec 13 01:46:10 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Fri Dec 13 01:46:10 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=8f961c80

sys-libs/libcap: Disable tests as they cause cross build failure

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

 sys-libs/libcap/Manifest   |   1 +
 sys-libs/libcap/files/libcap-2.21-include.patch|  10 ++
 25-ignore-RAISE_SETFCAP-install-failures.patch |  33 +
 .../files/libcap-2.28-build-system-fixes.patch | 165 +
 sys-libs/libcap/files/libcap-2.28-no_perl.patch|  64 
 sys-libs/libcap/libcap-2.28-r1.ebuild  |  84 +++
 sys-libs/libcap/metadata.xml   |  11 ++
 7 files changed, 368 insertions(+)

diff --git a/sys-libs/libcap/Manifest b/sys-libs/libcap/Manifest
new file mode 100644
index 000..e95f444
--- /dev/null
+++ b/sys-libs/libcap/Manifest
@@ -0,0 +1 @@
+DIST libcap-2.28.tar.xz 94244 BLAKE2B 
9416ca78da0b985c25682746b5f5d052835d29ed40e2ffb2f70e3e59753423c91176a41f7d32b28d75800ccfccc5ed446050985a44471f0d0cc4cc9e0ef69661
 SHA512 
e693ac97483f575bb8a3f4d50262082e6d0d4906f2df48a4f52db4dde21014fcdc683d40712294c7c59d1be21740276bd20b486afee53815dc49e57a9938c5eb

diff --git a/sys-libs/libcap/files/libcap-2.21-include.patch 
b/sys-libs/libcap/files/libcap-2.21-include.patch
new file mode 100644
index 000..8ea6545
--- /dev/null
+++ b/sys-libs/libcap/files/libcap-2.21-include.patch
@@ -0,0 +1,10 @@
+--- a/libcap/libcap.h
 b/libcap/libcap.h
+@@ -13,6 +13,7 @@
+ #include 
+ #include 
+ #include 
++#include  /* prctl() */
+ 
+ #ifndef __u8
+ #define __u8unsigned char

diff --git 
a/sys-libs/libcap/files/libcap-2.25-ignore-RAISE_SETFCAP-install-failures.patch 
b/sys-libs/libcap/files/libcap-2.25-ignore-RAISE_SETFCAP-install-failures.patch
new file mode 100644
index 000..0f73736
--- /dev/null
+++ 
b/sys-libs/libcap/files/libcap-2.25-ignore-RAISE_SETFCAP-install-failures.patch
@@ -0,0 +1,33 @@
+From 8dfcdcfdcb9c462a05566aa8d3c6eca871f0ddbf Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Wed, 10 Feb 2016 09:52:45 +0100
+Subject: [PATCH] ignore RAISE_SETFCAP install failures
+
+While the new RAISE_SETFCAP feature is nifty, its failure to run (often
+due to the fs not supporting it) shouldn't impair the default install.
+
+Signed-off-by: Mike Frysinger 
+
+Forward ported from libcap-2.20 to libcap-2.25
+
+Signed-off-by: Lars Wendler 
+---
+ progs/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/progs/Makefile b/progs/Makefile
+index c094a24..4a6db38 100644
+--- a/progs/Makefile
 b/progs/Makefile
+@@ -27,7 +27,7 @@ install: all
+   install -m 0755 $$p $(FAKEROOT)$(SBINDIR) ; \
+   done
+ ifeq ($(RAISE_SETFCAP),yes)
+-  $(FAKEROOT)$(SBINDIR)/setcap cap_setfcap=i $(FAKEROOT)$(SBINDIR)/setcap
++  -$(FAKEROOT)$(SBINDIR)/setcap cap_setfcap=i $(FAKEROOT)$(SBINDIR)/setcap
+ endif
+ 
+ clean:
+-- 
+2.7.1
+

diff --git a/sys-libs/libcap/files/libcap-2.28-build-system-fixes.patch 
b/sys-libs/libcap/files/libcap-2.28-build-system-fixes.patch
new file mode 100644
index 000..ae0f2a3
--- /dev/null
+++ b/sys-libs/libcap/files/libcap-2.28-build-system-fixes.patch
@@ -0,0 +1,165 @@
+From 9ce6d2ab1060c362178aba57b68bedca2d39cfe9 Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Wed, 10 Feb 2016 09:47:27 +0100
+Subject: [PATCH] build system fixes
+
+This touches up the homebrewed build system to work much better "out of the
+box" for people.  Specifically:
+   - allow toolchain vars to be set via environment
+   - CC / BUILD_CC / AR / RANLIB
+   - CFLAGS / CPPFLAGS / LDFLAGS
+   - split CPPFLAGS out of CFLAGS
+   - break -fPIC out of global CFLAGS and only use where needed
+   - use LDLIBS for libraries, not LDFLAGS
+
+Signed-off-by: Mike Frysinger 
+
+Forward ported from libcap-2.24 to libcap-2.25
+Forward ported from libcap-2.25 to libcap-2.28
+
+Signed-off-by: Lars Wendler 
+---
+ Make.Rules   | 30 ++
+ libcap/Makefile  |  7 ---
+ pam_cap/Makefile |  8 +---
+ progs/Makefile   |  2 +-
+ 4 files changed, 28 insertions(+), 19 deletions(-)
+
+diff --git a/Make.Rules b/Make.Rules
+index ab4f17c..1b659ea 100644
+--- a/Make.Rules
 b/Make.Rules
+@@ -46,35 +46,41 @@ MINOR=28
+ # Compilation specifics
+ 
+ KERNEL_HEADERS := $(topdir)/libcap/include/uapi
+-IPATH += -fPIC -I$(KERNEL_HEADERS) -I$(topdir)/libcap/include
+-
+-CC := gcc
+-CFLAGS := -O2 -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
+-BUILD_CC := $(CC)
+-BUILD_CFLAGS := $(CFLAGS) $(IPATH)
+-AR := ar
+-RANLIB := ranlib
++IPATH += -I$(KERNEL_HEADERS) -I$(topdir)/libcap/include
++
++CC ?= gcc
++CFLAGS ?= -O2
++BUILD_CC ?= $(CC)
++BUILD_CFLAGS ?= $(CFLAGS)
++BUILD_CFLAGS += $(IPATH)
++AR ?= ar
++RANLIB ?=

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

2019-12-12 Thread Aaron Bauman
commit: e9cab78c3abc48add0a09feeddefc906a9a2f4b2
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 01:45:02 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 01:45:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9cab78c

profiles/package.mask: mask dev-lang/opendylan{,-bin} and dev-libs/mps

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index a1c9c1fadfd..52b36aba321 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,13 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2019-12-12)
+# EAPI 4, new versions upstream, not bumped
+# Removal in 30 days
+dev-lang/opendylan
+dev-lang/opendylan-bin
+dev-libs/mps
+
 # Aaron Bauman  (2019-12-12)
 # Multiple QA issues and docs no longer build
 # Removal in 30 days



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

2019-12-12 Thread Göktürk Yüksek
commit: 6cef3812ea592d7055db79ad30f776610b0cf9ae
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Fri Dec 13 01:45:25 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Fri Dec 13 01:46:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cef3812

media-libs/libglvnd: keyword for ~riscv #702132

Package-Manager: Portage-2.3.79, Repoman-2.3.18
RepoMan-Options: --include-arches="riscv"
Signed-off-by: Göktürk Yüksek  gentoo.org>

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

diff --git a/media-libs/libglvnd/libglvnd-1.3.0.ebuild 
b/media-libs/libglvnd/libglvnd-1.3.0.ebuild
index 8999fdab55f..948292fe258 100644
--- a/media-libs/libglvnd/libglvnd-1.3.0.ebuild
+++ b/media-libs/libglvnd/libglvnd-1.3.0.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://gitlab.freedesktop.org/glvnd/libglvnd";
 if [[ ${PV} = * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~riscv ~x86"

SRC_URI="https://gitlab.freedesktop.org/glvnd/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
 -> ${P}.tar.bz2"
S=${WORKDIR}/${PN}-v${PV}
 fi



[gentoo-commits] proj/musl:master commit in: sys-devel/clang/files/6.0.1/, sys-devel/clang/files/6.0.0/hardened/, ...

2019-12-12 Thread Jory Pratt
commit: 876b76fa9d1a0746fb493e57387450a77b16d24a
Author: Jory Pratt  gentoo  org>
AuthorDate: Fri Dec 13 01:52:23 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Fri Dec 13 01:52:23 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=876b76fa

sys-devel/clang: Remove stale clang

Signed-off-by: Jory Pratt  gentoo.org>

 sys-devel/clang/Manifest   |   4 -
 sys-devel/clang/clang-6.0.1.ebuild | 334 -
 ...d-invalidated-iterator-in-insertTargetAnd.patch |  55 
 ...oss-DSO-CFI-Android-sanitizer-test-for-rt.patch |  30 --
 .../files/6.0.0/0003-Add-Gentoo-Linux-distro.patch |  33 --
 .../hardened/0001-Use-z-relro-on-Gentoo.patch  |  11 -
 .../0002-Enable-Stack-Protector-by-default.patch   |  25 --
 .../hardened/0003-Enable-PIE-by-default.patch  |  12 -
 ...04-Enable-FORTIFY_SOURCE-macro-by-default.patch |  35 ---
 ...005-Link-with-z-now-by-default-for-Gentoo.patch |  11 -
 ...oss-DSO-CFI-Android-sanitizer-test-for-rt.patch |  30 --
 .../files/6.0.1/darwin_prefix-include-paths.patch  |  18 --
 sys-devel/clang/metadata.xml   |  35 ---
 13 files changed, 633 deletions(-)

diff --git a/sys-devel/clang/Manifest b/sys-devel/clang/Manifest
deleted file mode 100644
index 6abbf06..000
--- a/sys-devel/clang/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B 
abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605
 SHA512 
f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
-DIST clang-tools-extra-6.0.1.src.tar.xz 757256 BLAKE2B 
1d91d7459a34e7251007af91db1803ee6d04f1ef3e0fcf134a7e0d1d3456b094a80339ee60db3f0bdd12961f3a05caee7edfc5c6b9c48d49cd55a5dc3c102c3a
 SHA512 
cf29d117b6dabcb7a8e5f6dab5016ce5a5c8f475679001a43fd5c935f2c368f37cdef50aae2080a1e4524f647f6d83458d4a5dec5b45d03fb374f463caf7c3f5
-DIST llvm-6.0.1-manpages.tar.bz2 102656 BLAKE2B 
9088ca0bdda69f63354e61b7495df54505d5db2504bc61860a7260343722ec8cdd5e937d0843263a5bf5077b9cf386c337fa127039b996bab10d2ca5c2caeb59
 SHA512 
c468e97a2d5610aee9e72cb795e4e65375a079d733550f05380230fb44ba0ed67d407ad06e2340b66f13d19c06583b657e8d01fcdca2146ae43964cea309e0b3
-DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 
60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881
 SHA512 
cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9

diff --git a/sys-devel/clang/clang-6.0.1.ebuild 
b/sys-devel/clang/clang-6.0.1.ebuild
deleted file mode 100644
index 3cf5d11..000
--- a/sys-devel/clang/clang-6.0.1.ebuild
+++ /dev/null
@@ -1,334 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils eapi7-ver flag-o-matic llvm \
-   multilib-minimal multiprocessing pax-utils prefix python-single-r1 \
-   toolchain-funcs
-
-MY_P=cfe-${PV/_/}.src
-EXTRA_P=clang-tools-extra-${PV/_/}.src
-LLVM_P=llvm-${PV/_/}.src
-
-DESCRIPTION="C language family frontend for LLVM"
-HOMEPAGE="https://llvm.org/";
-SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz
-   https://releases.llvm.org/${PV/_//}/${EXTRA_P}.tar.xz
-   test? ( https://releases.llvm.org/${PV/_//}/${LLVM_P}.tar.xz )
-   !doc? ( 
https://dev.gentoo.org/~mgorny/dist/llvm/llvm-${PV}-manpages.tar.bz2 )"
-
-# Keep in sync with sys-devel/llvm
-ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC Sparc SystemZ X86 XCore )
-ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
-LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
-
-LICENSE="UoI-NCSA"
-SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 arm64 ~ppc64 x86"
-IUSE="debug default-compiler-rt default-libcxx doc hardened +static-analyzer
-   test xml z3 kernel_FreeBSD ${ALL_LLVM_TARGETS[*]}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   ~sys-devel/llvm-${PV}:${SLOT}=[debug=,${LLVM_TARGET_USEDEPS// 
/,},${MULTILIB_USEDEP}]
-   static-analyzer? (
-   dev-lang/perl:*
-   z3? ( sci-mathematics/z3:0= )
-   )
-   xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] )
-   ${PYTHON_DEPS}"
-# configparser-3.2 breaks the build (3.3 or none at all are fine)
-DEPEND="${RDEPEND}
-   doc? ( dev-python/sphinx )
-   xml? ( virtual/pkgconfig )
-   !!https://bugs.gentoo.org/650316
-   
"${FILESDIR}"/6.0.1/0002-test-Fix-Cross-DSO-CFI-Android-sanitizer-test-for-rt.patch
-
-   # IsGentooLinux() is only used in hardened patches at the moment
-   "${FILESDIR}"/6.0.0/0003-Add-Gentoo-Linux-distro.patch
-)
-HARDENED_PATCHES=(

[gentoo-commits] proj/musl:master commit in: sys-libs/compiler-rt-sanitizers/files/, sys-libs/compiler-rt-sanitizers/

2019-12-12 Thread Jory Pratt
commit: 86a3525b2733f209e7d3a52bded04ceb6551f82c
Author: Jory Pratt  gentoo  org>
AuthorDate: Fri Dec 13 01:58:35 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Fri Dec 13 01:58:35 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=86a3525b

sys-libs/compiler-rt-sanitizers: remove stale

Signed-off-by: Jory Pratt  gentoo.org>

 sys-libs/compiler-rt-sanitizers/Manifest   |   5 -
 .../compiler-rt-sanitizers-6.0.1.ebuild| 182 -
 .../compiler-rt-sanitizers-7.1.0.ebuild| 179 -
 .../0001-fixup-for-interception_type_test.patch|  14 -
 ...compiler-rt-sanitizers-6.0.1-musl-patches.patch | 287 -
 ...compiler-rt-sanitizers-7.1.0-musl-patches.patch | 287 -
 sys-libs/compiler-rt-sanitizers/metadata.xml   |  15 --
 7 files changed, 969 deletions(-)

diff --git a/sys-libs/compiler-rt-sanitizers/Manifest 
b/sys-libs/compiler-rt-sanitizers/Manifest
deleted file mode 100644
index 29eab5d..000
--- a/sys-libs/compiler-rt-sanitizers/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-DIST compiler-rt-6.0.1.src.tar.xz 1686820 BLAKE2B 
59fa3f6e478bd4d6dfa056c85dcdc4349cbce7cea7fc56519feddc9d66c88c9ca48bad7967432ceb81d754213577f12707035afd827cf630a58627575b73b798
 SHA512 
69850c1ad92c66977fa217cbfb42a6a3f502fbe3d1a08daa7fc4cfeb617a7736d231f8ad8d93b10b1ae29bd753315d2a2d70f9ff1f4d18a9a7cc81758d91f963
-DIST compiler-rt-7.1.0.src.tar.xz 1864248 BLAKE2B 
42ab86416f7f85c5833cf85dbfb66b18a5d5cf53fa0560ad43b2ef39f5a2cd7ec1dbe4192cc8dac9b3f658b828c8306f26745c4d0e8f846d9f550ac22717eb33
 SHA512 
54d3ad80936f011dbf2ecebba3f1b7d4a156044b178228411ba855be5ec48eb646155b74dea1a96674adab6f93803456ae1435395e3240a4423a3f65f4566b55
-DIST compiler-rt-sanitizers-6.0.1-patchset.tar.xz 8820 BLAKE2B 
d53ca357e060d058c7f20c51e74684f4c032fdf3ccec4c9f227dc7a5757206f331b9eda25a72c5c66faf4c44b2cc63eb439bd21bdd55d37a93918ab428fd7cd4
 SHA512 
782a34c56134bd061da30c1f598ddb9e90cb34a4e4ef058fa9634f6da372fd8693ff5e6cf98b59700942273240f83052b89ee2736b22f4e19bc8b519fbec8cad
-DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 
60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881
 SHA512 
cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9
-DIST llvm-7.1.0.src.tar.xz 28313784 BLAKE2B 
b78d9a7fc5ef6e352e77d339e5c4eef5ccedf67c05e7abd949e72619aa8a5ed65e7e5e2008354be8e7916d75581719b99f34227838fcc86c5d0080913c2fb22c
 SHA512 
a7dbd5693d1f2dae6b6e52893a100f9349cbfcfb25c5fdcad46364acbff0dbd3573f8fbc026c68eb9fd56335198aa94b866cc3dd7ea0cbd2cbfb5f8fe3444a7a

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-6.0.1.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-6.0.1.ebuild
deleted file mode 100644
index 32f6ade..000
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-6.0.1.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit check-reqs cmake-utils flag-o-matic llvm \
-   multiprocessing python-any-r1
-
-MY_P=compiler-rt-${PV/_/}.src
-LLVM_P=llvm-${PV/_/}.src
-
-DESCRIPTION="Compiler runtime libraries for clang (sanitizers & xray)"
-HOMEPAGE="https://llvm.org/";
-SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz
-   https://dev.gentoo.org/~mgorny/dist/llvm/${P}-patchset.tar.xz
-   test? ( https://releases.llvm.org/${PV/_//}/${LLVM_P}.tar.xz )"
-
-LICENSE="|| ( UoI-NCSA MIT )"
-SLOT="${PV%_*}"
-KEYWORDS="amd64 x86"
-IUSE="+clang +libfuzzer +profile +sanitize test +xray elibc_glibc"
-# FIXME: libfuzzer does not enable all its necessary dependencies
-REQUIRED_USE="libfuzzer? ( || ( sanitize xray ) )"
-RESTRICT="!test? ( test ) !clang? ( test )"
-
-CLANG_SLOT=${SLOT%%.*}
-# llvm-6 for new lit options
-DEPEND="
-   >=sys-devel/llvm-6
-   clang? ( sys-devel/clang )
-   test? (
-   !=dev-python/lit-5[\${PYTHON_USEDEP}]")
-   =sys-devel/clang-${PV%_*}*:${CLANG_SLOT}
-   sys-libs/compiler-rt:${SLOT} )
-   ${PYTHON_DEPS}"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${PN}-6.0.1-musl-patches.patch
-   "${FILESDIR}"/0001-fixup-for-interception_type_test.patch
-   )
-
-# least intrusive of all
-CMAKE_BUILD_TYPE=RelWithDebInfo
-
-check_space() {
-   if use test; then
-   local CHECKREQS_DISK_BUILD=11G
-   check-reqs_pkg_pretend
-   fi
-}
-
-pkg_pretend() {
-   check_space
-}
-
-pkg_setup() {
-   check_space
-   llvm_pkg_setup
-   python-any-r1_pkg_setup
-}
-
-src_unpack() {
-   einfo "Unpacking ${MY_P}.tar.xz ..."
-   tar -xf "${DISTDIR}/${MY_P}.tar.xz" || die
-   einfo

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

2019-12-12 Thread Aaron Bauman
commit: 51b783ef3ba08783f3a4702c580c93b3a6fe38b4
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 03:24:42 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 03:25:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b783ef

www-servers/spawn-fcgi: drop old EAPI

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

 www-servers/spawn-fcgi/Manifest   |  1 -
 www-servers/spawn-fcgi/spawn-fcgi-1.6.3-r1.ebuild | 32 ---
 2 files changed, 33 deletions(-)

diff --git a/www-servers/spawn-fcgi/Manifest b/www-servers/spawn-fcgi/Manifest
index 9e4d0710b82..65f84201c4e 100644
--- a/www-servers/spawn-fcgi/Manifest
+++ b/www-servers/spawn-fcgi/Manifest
@@ -1,2 +1 @@
-DIST spawn-fcgi-1.6.3.tar.bz2 77607 BLAKE2B 
eb6331f2f4ec1270f47ba317dcc60668e5d02dea9ed3a840033febd98443a73194559bcf56ff039131c8bf374108b72c47ccc531b7549bb3dee5f4f111308608
 SHA512 
136a198cbcda0d3ae4e445eac2ccdcc5483801514ce77542c630d615a7a19a68864b9d7d79733adb16347ba64c833afbf2a18df82937107a6bc8467f630b03b4
 DIST spawn-fcgi-1.6.4.tar.xz 79944 BLAKE2B 
06fb92261042fe6bccda1a472a712a7c9bc7f56ee04b72f31ee133079f6c1d07ca07ef6c1b7c878db2e32861ea20914998411a3f6b596e4ba950f8767a899346
 SHA512 
e2b317997b56f852ad644b80fe36fa08376ae81f93566e181c31a3b6764de2eeb32a2e10e420136d8536487c575678ca52a33f7cb3488aadf7185fbd0196bee0

diff --git a/www-servers/spawn-fcgi/spawn-fcgi-1.6.3-r1.ebuild 
b/www-servers/spawn-fcgi/spawn-fcgi-1.6.3-r1.ebuild
deleted file mode 100644
index 7fba4ede0c9..000
--- a/www-servers/spawn-fcgi/spawn-fcgi-1.6.3-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="A FCGI spawner for lighttpd and cherokee and other webservers"
-HOMEPAGE="http://redmine.lighttpd.net/projects/spawn-fcgi";
-SRC_URI="http://www.lighttpd.net/download/${P}.tar.bz2";
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86"
-IUSE="ipv6"
-
-DEPEND=""
-RDEPEND="!<=www-servers/lighttpd-1.4.20
-   !<=www-servers/cherokee-0.98.1"
-
-src_configure() {
-   econf $(use_enable ipv6)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   dodoc README NEWS
-
-   newconfd "${FILESDIR}"/spawn-fcgi.confd spawn-fcgi
-   newinitd "${FILESDIR}"/spawn-fcgi.initd-r1 spawn-fcgi
-
-   docinto examples
-   dodoc doc/run-generic doc/run-php doc/run-rails
-}



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/cluster/

2019-12-12 Thread Aaron Bauman
commit: b2d96ed1d1279a92dd97b1258b2acdc448cfec0d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 02:53:42 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 03:25:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2d96ed1

sci-chemistry/cluster: drop old EAPI

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

 sci-chemistry/cluster/cluster-1.3.081231.ebuild | 29 -
 1 file changed, 29 deletions(-)

diff --git a/sci-chemistry/cluster/cluster-1.3.081231.ebuild 
b/sci-chemistry/cluster/cluster-1.3.081231.ebuild
deleted file mode 100644
index e9d3b8999e1..000
--- a/sci-chemistry/cluster/cluster-1.3.081231.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Build lists of collections of interacting items"
-HOMEPAGE="http://kinemage.biochem.duke.edu/software/index.php";
-SRC_URI="http://kinemage.biochem.duke.edu/downloads/software/${PN}/${PN}.${PV}.src.tgz";
-
-SLOT="0"
-LICENSE="richardson"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-S="${WORKDIR}"/${PN}1.3src
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${PV}-ldflags.patch \
-   "${FILESDIR}"/${PV}-includes.patch
-   tc-export CXX
-}
-
-src_install() {
-   dobin ${PN}
-   dodoc README.cluster
-}



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

2019-12-12 Thread Aaron Bauman
commit: f8c71641924952b7d4a38155d8897378b264ca18
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 02:38:19 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 03:25:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c71641

net-libs/libmnl: port to EAPI 7

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

 net-libs/libmnl/libmnl-1.0.3-r1.ebuild | 12 +++-
 net-libs/libmnl/libmnl-1.0.4.ebuild|  9 +
 2 files changed, 12 insertions(+), 9 deletions(-)

diff --git a/net-libs/libmnl/libmnl-1.0.3-r1.ebuild 
b/net-libs/libmnl/libmnl-1.0.3-r1.ebuild
index 316073b5786..67fbdb2cc36 100644
--- a/net-libs/libmnl/libmnl-1.0.3-r1.ebuild
+++ b/net-libs/libmnl/libmnl-1.0.3-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
-inherit eutils toolchain-funcs usr-ldscript
+inherit toolchain-funcs usr-ldscript
 
 DESCRIPTION="Minimalistic netlink library"
 HOMEPAGE="https://netfilter.org/projects/libmnl/";
@@ -20,11 +20,13 @@ src_configure() {
 
 src_install() {
default
+
gen_usr_ldscript -a mnl
-   prune_libtool_files
+
+   find "${D}" -name '*.la' -delete || die
 
if use examples; then
-   find examples/ -name 'Makefile*' -delete
+   find examples/ -name 'Makefile*' -delete || die
dodoc -r examples/
docompress -x /usr/share/doc/${PF}/examples
fi

diff --git a/net-libs/libmnl/libmnl-1.0.4.ebuild 
b/net-libs/libmnl/libmnl-1.0.4.ebuild
index fd97a5559d2..794d9e30984 100644
--- a/net-libs/libmnl/libmnl-1.0.4.ebuild
+++ b/net-libs/libmnl/libmnl-1.0.4.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit eutils toolchain-funcs usr-ldscript
+inherit toolchain-funcs usr-ldscript
 
 DESCRIPTION="Minimalistic netlink library"
 HOMEPAGE="https://netfilter.org/projects/libmnl/";
@@ -22,10 +22,11 @@ src_install() {
default
 
gen_usr_ldscript -a mnl
-   prune_libtool_files
+
+   find "${D}" -name '*.la' -delete || die
 
if use examples; then
-   find examples/ -name 'Makefile*' -delete
+   find examples/ -name 'Makefile*' -delete || die
dodoc -r examples/
docompress -x /usr/share/doc/${PF}/examples
fi



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

2019-12-12 Thread Aaron Bauman
commit: 09e42877f743c88a818311e19c67b7aac57fb6a0
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 02:20:06 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 03:25:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09e42877

net-libs/courier-authlib: drop old EAPI

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

 net-libs/courier-authlib/Manifest  |   1 -
 .../courier-authlib-0.65.0-r3.ebuild   | 166 -
 2 files changed, 167 deletions(-)

diff --git a/net-libs/courier-authlib/Manifest 
b/net-libs/courier-authlib/Manifest
index 36f044da589..b6a8568a808 100644
--- a/net-libs/courier-authlib/Manifest
+++ b/net-libs/courier-authlib/Manifest
@@ -1,4 +1,3 @@
-DIST courier-authlib-0.65.0.tar.bz2 2303751 BLAKE2B 
595a91a87d9f0f87ded7db73f88a9a74f8e5140452cab2bada43de9836b4f3e8b123dbb10295493e71e52e1920950f28d67a74ec026ff33c27ffa14024d079a1
 SHA512 
edc4a51bc0d748e7d6cdbf9e9c67c43eeedd9e3846d91a8eea24613f6fb5125d2e713ef7fd63cbbe1905205f2a406b4ff3f31d7c3fb7028939123dbc728d8e38
 DIST courier-authlib-0.66.4.tar.bz2 2192331 BLAKE2B 
8fd68153b2defb63bbafb44b34c0f7ab5f7156800dc3eeb3c31fc0952c9a4637d4937babceae624c1a22512076bb11a1a356e0e0332c13d61026470a03b7e1c9
 SHA512 
0987bc9d33a013ae842e0ea3e4e83ef9d6196c2f923a6970e049a36b8ccddbf0c4465c43c7e27d6718480e981f573795f6417478de1ff685264f3439e8dffdc9
 DIST courier-authlib-0.67.0.tar.bz2 2194546 BLAKE2B 
2ccb6ed15c2f02d206606f8bba04c9f2da415da3d739e456914e44010c955c9aaeae1f1c0746c8812f5165eb8db1997284e1c378132a6144da2b8f77d77a6eff
 SHA512 
6e3da28d555761177727c44b1422bf5baf6ffbf28f53cea89a4a8e13daa5433803deba1614295d9679c41b5be4750f464e7869a2d3ecbfd91ae84e7281c4f3ef
 DIST courier-authlib-0.68.0.tar.bz2 2194982 BLAKE2B 
e463390b49bb3ca147467d3054a83d5a8ce96b604bde0b624c4d7ce81235c6f747e5d847dde794c81c4ad36aeef49bdd27cf904142b4542df833484c5eb7a57e
 SHA512 
5c4adaf0fd69f4b9e780962aa3f9eeac6b15cea3f302288ff4549ce2b0be9ea0808b4501670ef3c4e0419c3d27505c256c082f795dea4683dd5265fd7dcab93b

diff --git a/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild 
b/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild
deleted file mode 100644
index eb34fc95846..000
--- a/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild
+++ /dev/null
@@ -1,166 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit autotools eutils flag-o-matic multilib user
-
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86"
-
-DESCRIPTION="Courier authentication library"
-SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
-HOMEPAGE="https://www.courier-mta.org/authlib/";
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="berkdb crypt debug gdbm ldap mysql pam postgres sqlite static-libs 
vpopmail"
-
-RESTRICT="userpriv
-   !berkdb? ( test )"
-
-DEPEND="net-mail/mailbase
-   gdbm? ( sys-libs/gdbm )
-   !gdbm? ( sys-libs/db )
-   >=dev-libs/openssl-0.9.6
-   ldap? ( >=net-nds/openldap-1.2.11 )
-   mysql? ( virtual/mysql )
-   pam? ( sys-libs/pam )
-   postgres? ( >=dev-db/postgresql-8.4 )
-   sqlite? ( dev-db/sqlite:3 )"
-
-RDEPEND="${DEPEND}"
-
-# vpopmail support removed upstream
-REQUIRED_USE="( !vpopmail )"
-
-pkg_setup() {
-   if ! has_version 'dev-tcltk/expect' ; then
-   ewarn 'The dev-tcltk/expect package is not installed.'
-   ewarn 'Without it, you will not be able to change system login 
passwords.'
-   ewarn 'However non-system authentication modules (LDAP, MySQL, 
PostgreSQL,'
-   ewarn 'and others) will work just fine.'
-   fi
-}
-
-src_prepare() {
-   # move local macro to m4 and run eautoreconf
-   mkdir "${S}/m4" || die
-   sed -n -e '/# AC_PROG_SYSCONFTOOL/,+33 p' "${S}"/aclocal.m4 > \
-   m4/sysconftool.m4 || die
-   sed -i -e '/^SUBDIRS/i ACLOCAL_AMFLAGS = -I m4' "${S}"/Makefile.am || 
die
-   epatch "${FILESDIR}/${P}-sqlite.patch"
-   eautoreconf
-}
-
-src_configure() {
-   filter-flags -fomit-frame-pointer
-   local myconf
-   if use berkdb ; then
-   if use gdbm ; then
-   ewarn "Both gdbm and berkdb selected. Using gdbm."
-   else
-   myconf="--with-db=db"
-   fi
-   fi
-   use gdbm && myconf="--with-db=gdbm"
-   use debug && myconf+=" debug=true"
-   use sqlite && myconf+=" --with-sqlite-libs"
-
-   econf \
-   --sysconfdir=/etc/courier \
-   --datadir=/usr/share/courier \
-   --libexecdir=/usr/$(get_libdir)/courier \
-   --localstatedir=/var/lib/courier \
-   --sharedstatedir=/var/lib/courier/com \
-   --with-authdaemonvar=/var/lib/courier/authdaemon \
-   --with-authshadow \
-   --without-redhat \
- 

[gentoo-commits] repo/gentoo:master commit in: www-misc/mergelog/

2019-12-12 Thread Aaron Bauman
commit: 27f9342a1e5d29177177fcc47eabc58f19a54557
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Dec 13 03:23:31 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Dec 13 03:25:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f9342a

www-misc/mergelog: port to EAPI 7

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

 www-misc/mergelog/mergelog-4.5-r2.ebuild | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/www-misc/mergelog/mergelog-4.5-r2.ebuild 
b/www-misc/mergelog/mergelog-4.5-r2.ebuild
index 936acbb1f57..8872f314123 100644
--- a/www-misc/mergelog/mergelog-4.5-r2.ebuild
+++ b/www-misc/mergelog/mergelog-4.5-r2.ebuild
@@ -1,14 +1,13 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=7
 
-AUTOTOOLS_AUTORECONF=1
-inherit autotools-utils eutils
+inherit autotools
 
 DESCRIPTION="A utility to merge apache logs in chronological order"
-SRC_URI="mirror://sourceforge/mergelog/${P}.tar.gz"
 HOMEPAGE="http://mergelog.sourceforge.net";
+SRC_URI="mirror://sourceforge/mergelog/${P}.tar.gz"
 
 IUSE=""
 SLOT="0"
@@ -18,8 +17,12 @@ KEYWORDS="amd64 ppc x86"
 RDEPEND="sys-libs/zlib"
 DEPEND="${DEPEND}"
 
-DOCS=( AUTHORS ChangeLog README)
 PATCHES=(
"${FILESDIR}"/${P}-splitlog.patch
"${FILESDIR}"/${P}-asneeded.patch
 )
+
+src_prepare() {
+   eapply_user
+   eautoreconf
+}



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

2019-12-12 Thread Craig Andrews
commit: 9c31aee54110235efeb70e15857bceb868e22bcd
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Dec 13 04:14:49 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Dec 13 04:15:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c31aee5

media-tv/kodi: Remove patch from - as upstream now includes it

See https://github.com/xbmc/xbmc/pull/17000

Bug: https://bugs.gentoo.org/702104
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Craig Andrews  gentoo.org>

 media-tv/kodi/kodi-.ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 30fee14a935..5e312203b55 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -15,9 +15,6 @@ 
SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz -
https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz 
-> libdvdread-${LIBDVDREAD_VERSION}.tar.gz
https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz 
-> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz
!system-ffmpeg? ( 
https://github.com/xbmc/FFmpeg/archive/${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz
 -> ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz )"
-PATCHES=(
-   "${FILESDIR}/${PN}-18.5-cassert.patch"
-)
 if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/xbmc/xbmc.git";
inherit git-r3



  1   2   3   4   >