[gentoo-commits] repo/gentoo:master commit in: dev-python/pylama/files/, dev-python/pylama/, profiles/

2024-02-02 Thread Michał Górny
commit: 8e0a2a677cd74c1ff941b6c58e973b9d6cbfd759
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  2 16:36:34 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  2 16:38:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e0a2a67

dev-python/pylama: Remove last-rited pkg

Closes: https://bugs.gentoo.org/917008
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pylama/Manifest |  1 -
 .../pylama/files/pylama-8.4.1-dummy-elif.patch | 32 --
 dev-python/pylama/files/pylama-8.4.1-tomli.patch   | 69 --
 dev-python/pylama/metadata.xml | 17 --
 dev-python/pylama/pylama-8.4.1-r1.ebuild   | 55 -
 profiles/package.mask  |  1 -
 6 files changed, 175 deletions(-)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
deleted file mode 100644
index 893c44b456f9..
--- a/dev-python/pylama/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pylama-8.4.1.gh.tar.gz 37850 BLAKE2B 
dea99fc784736f3b229c5d82a59f2e2b5490fbe344ad98167e30e550b6c774c7b42cbddfedeb073d9d843cf53169c441812974036b06088ab07d7b7996def4a5
 SHA512 
fb038c39a2e962bd065ac5ef545f1be50f5b230141141a55e1701ffdc6a241b5778613ac91f29ff648b7ce48fa969c3961a11b7e906b6e350c84b57eea5369cd

diff --git a/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch 
b/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch
deleted file mode 100644
index 788d38382114..
--- a/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 2093ce0ad405e20efa3f2dad771a04577e0f7e6b Mon Sep 17 00:00:00 2001
-From: Stanislav Levin 
-Date: Fri, 12 May 2023 19:38:41 +0300
-Subject: [PATCH] tests: Sync pylint's no-else-return
-
-https://github.com/klen/pylama/pull/243
-
-See 
https://pylint.readthedocs.io/en/latest/user_guide/messages/refactor/no-else-return.html
 for details.
-
-Fixes: https://github.com/klen/pylama/issues/238
-Signed-off-by: Stanislav Levin 

- dummy.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/dummy.py b/dummy.py
-index c19ee6d..09a0e3c 100644
 a/dummy.py
-+++ b/dummy.py
-@@ -22,10 +22,10 @@ def __init__(self, filename, loc, use_column=True):
- if test == 1:
- if test == 1:
- return 28
--elif test == 2:
-+if test == 2:
- return 28
- return 28
--elif test == 2:
-+if test == 2:
- return 28
- 
- def __str__(self):

diff --git a/dev-python/pylama/files/pylama-8.4.1-tomli.patch 
b/dev-python/pylama/files/pylama-8.4.1-tomli.patch
deleted file mode 100644
index 291bc9f530e7..
--- a/dev-python/pylama/files/pylama-8.4.1-tomli.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-From 8b7908fec960a05af0a0a9b10d24ed458fcf97c7 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
-Date: Tue, 8 Nov 2022 14:33:59 +0100
-Subject: [PATCH] Use tomli/tomllib instead of the unmaintained toml package
-
-Replace the use of the unmaintained `toml` package with the modern
-alternatives: the built-in `tomllib` in Python 3.11+, and its equivalent
-`tomli` in older Python versions.  `tomli` installs type stubs, so there
-is no need for an additional `types-*` package for it.

- pylama/config_toml.py   | 9 +++--
- requirements/requirements-tests.txt | 3 +--
- setup.py| 2 +-
- 3 files changed, 9 insertions(+), 5 deletions(-)
-
-diff --git a/pylama/config_toml.py b/pylama/config_toml.py
-index 2af02a5..ea6e17a 100644
 a/pylama/config_toml.py
-+++ b/pylama/config_toml.py
-@@ -1,16 +1,21 @@
- """Pylama TOML configuration."""
- 
--import toml
-+import sys
- 
- from pylama.libs.inirama import Namespace as _Namespace
- 
-+if sys.version_info >= (3, 11):
-+import tomllib
-+else:
-+import tomli as tomllib
-+
- 
- class Namespace(_Namespace):
- """Inirama-style wrapper for TOML config."""
- 
- def parse(self, source: str, update: bool = True, **params):
- """Parse TOML source as string."""
--content = toml.loads(source)
-+content = tomllib.loads(source)
- tool = content.get("tool", {})
- pylama = tool.get("pylama", {})
- linters = pylama.pop("linter", {})
-diff --git a/requirements/requirements-tests.txt 
b/requirements/requirements-tests.txt
-index d786f1f..e62ccae 100644
 a/requirements/requirements-tests.txt
-+++ b/requirements/requirements-tests.txt
-@@ -5,8 +5,7 @@ radon   >= 5.1.0
- mypy
- pylint  >= 2.11.1
- pylama-quotes
--toml
-+tomli   >= 1.2.3  ; python_version < "3.11"
- vulture
- 
- types-setuptools
--types-toml
-diff --git a/setup.py b/setup.py
-index 911aea6..6d0222b 100644
 a/setup.py
-+++ b/setup.py
-@@ -21,6 +21,6 @@ def parse_requirements(path: str) -> "list[str]":
- extras_require=dict(
- 

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

2023-10-14 Thread Zac Medico
commit: 0b3b0734f01cfd7e400d0a5ee1939e861961dc4c
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Oct 14 22:06:09 2023 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Oct 14 22:10:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b3b0734

dev-python/pylama: Fix test_pylint elif bug 893838

Closes: https://bugs.gentoo.org/893838
Signed-off-by: Zac Medico  gentoo.org>

 .../pylama/files/pylama-8.4.1-dummy-elif.patch | 32 ++
 dev-python/pylama/pylama-8.4.1-r1.ebuild   |  1 +
 2 files changed, 33 insertions(+)

diff --git a/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch 
b/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch
new file mode 100644
index ..788d38382114
--- /dev/null
+++ b/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch
@@ -0,0 +1,32 @@
+From 2093ce0ad405e20efa3f2dad771a04577e0f7e6b Mon Sep 17 00:00:00 2001
+From: Stanislav Levin 
+Date: Fri, 12 May 2023 19:38:41 +0300
+Subject: [PATCH] tests: Sync pylint's no-else-return
+
+https://github.com/klen/pylama/pull/243
+
+See 
https://pylint.readthedocs.io/en/latest/user_guide/messages/refactor/no-else-return.html
 for details.
+
+Fixes: https://github.com/klen/pylama/issues/238
+Signed-off-by: Stanislav Levin 
+---
+ dummy.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/dummy.py b/dummy.py
+index c19ee6d..09a0e3c 100644
+--- a/dummy.py
 b/dummy.py
+@@ -22,10 +22,10 @@ def __init__(self, filename, loc, use_column=True):
+ if test == 1:
+ if test == 1:
+ return 28
+-elif test == 2:
++if test == 2:
+ return 28
+ return 28
+-elif test == 2:
++if test == 2:
+ return 28
+ 
+ def __str__(self):

diff --git a/dev-python/pylama/pylama-8.4.1-r1.ebuild 
b/dev-python/pylama/pylama-8.4.1-r1.ebuild
index c1a76432c6e9..30c5ca59c22f 100644
--- a/dev-python/pylama/pylama-8.4.1-r1.ebuild
+++ b/dev-python/pylama/pylama-8.4.1-r1.ebuild
@@ -45,6 +45,7 @@ distutils_enable_tests pytest
 
 PATCHES=(
"${FILESDIR}"/${P}-tomli.patch
+   "${FILESDIR}"/${P}-dummy-elif.patch
 )
 
 EPYTEST_DESELECT=(



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

2023-01-26 Thread Michał Górny
commit: aa8da0c8d86b04859bf4f3f944bffbef1b772914
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 26 14:32:54 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 26 14:33:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa8da0c8

dev-python/pylama: Port to tomllib/tomli

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

 dev-python/pylama/files/pylama-8.4.1-tomli.patch   | 69 ++
 ...{pylama-8.4.1.ebuild => pylama-8.4.1-r1.ebuild} | 18 +-
 2 files changed, 84 insertions(+), 3 deletions(-)

diff --git a/dev-python/pylama/files/pylama-8.4.1-tomli.patch 
b/dev-python/pylama/files/pylama-8.4.1-tomli.patch
new file mode 100644
index ..291bc9f530e7
--- /dev/null
+++ b/dev-python/pylama/files/pylama-8.4.1-tomli.patch
@@ -0,0 +1,69 @@
+From 8b7908fec960a05af0a0a9b10d24ed458fcf97c7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Tue, 8 Nov 2022 14:33:59 +0100
+Subject: [PATCH] Use tomli/tomllib instead of the unmaintained toml package
+
+Replace the use of the unmaintained `toml` package with the modern
+alternatives: the built-in `tomllib` in Python 3.11+, and its equivalent
+`tomli` in older Python versions.  `tomli` installs type stubs, so there
+is no need for an additional `types-*` package for it.
+---
+ pylama/config_toml.py   | 9 +++--
+ requirements/requirements-tests.txt | 3 +--
+ setup.py| 2 +-
+ 3 files changed, 9 insertions(+), 5 deletions(-)
+
+diff --git a/pylama/config_toml.py b/pylama/config_toml.py
+index 2af02a5..ea6e17a 100644
+--- a/pylama/config_toml.py
 b/pylama/config_toml.py
+@@ -1,16 +1,21 @@
+ """Pylama TOML configuration."""
+ 
+-import toml
++import sys
+ 
+ from pylama.libs.inirama import Namespace as _Namespace
+ 
++if sys.version_info >= (3, 11):
++import tomllib
++else:
++import tomli as tomllib
++
+ 
+ class Namespace(_Namespace):
+ """Inirama-style wrapper for TOML config."""
+ 
+ def parse(self, source: str, update: bool = True, **params):
+ """Parse TOML source as string."""
+-content = toml.loads(source)
++content = tomllib.loads(source)
+ tool = content.get("tool", {})
+ pylama = tool.get("pylama", {})
+ linters = pylama.pop("linter", {})
+diff --git a/requirements/requirements-tests.txt 
b/requirements/requirements-tests.txt
+index d786f1f..e62ccae 100644
+--- a/requirements/requirements-tests.txt
 b/requirements/requirements-tests.txt
+@@ -5,8 +5,7 @@ radon   >= 5.1.0
+ mypy
+ pylint  >= 2.11.1
+ pylama-quotes
+-toml
++tomli   >= 1.2.3  ; python_version < "3.11"
+ vulture
+ 
+ types-setuptools
+-types-toml
+diff --git a/setup.py b/setup.py
+index 911aea6..6d0222b 100644
+--- a/setup.py
 b/setup.py
+@@ -21,6 +21,6 @@ def parse_requirements(path: str) -> "list[str]":
+ extras_require=dict(
+ tests=parse_requirements("requirements/requirements-tests.txt"),
+ all=OPTIONAL_LINTERS, **{linter: [linter] for linter in 
OPTIONAL_LINTERS},
+-toml="toml>=0.10.2",
++toml="tomli>=1.2.3; python_version < '3.11'",
+ ),
+ )

diff --git a/dev-python/pylama/pylama-8.4.1.ebuild 
b/dev-python/pylama/pylama-8.4.1-r1.ebuild
similarity index 75%
rename from dev-python/pylama/pylama-8.4.1.ebuild
rename to dev-python/pylama/pylama-8.4.1-r1.ebuild
index 0d21af8a8555..c1a76432c6e9 100644
--- a/dev-python/pylama/pylama-8.4.1.ebuild
+++ b/dev-python/pylama/pylama-8.4.1-r1.ebuild
@@ -9,8 +9,14 @@ PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1
 
 DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+HOMEPAGE="
+   https://github.com/klen/pylama/
+   https://pypi.org/project/pylama/
+"
+SRC_URI="
+   https://github.com/klen/pylama/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
 
 LICENSE="MIT"
 SLOT="0"
@@ -28,13 +34,19 @@ BDEPEND="
dev-python/mypy[${PYTHON_USEDEP}]
dev-python/pylint[${PYTHON_USEDEP}]
dev-python/radon[${PYTHON_USEDEP}]
-   dev-python/toml[${PYTHON_USEDEP}]
dev-vcs/git
+   $(python_gen_cond_dep '
+   dev-python/tomli[${PYTHON_USEDEP}]
+   ' 3.{8..10})
)
 "
 
 distutils_enable_tests pytest
 
+PATCHES=(
+   "${FILESDIR}"/${P}-tomli.patch
+)
+
 EPYTEST_DESELECT=(
# not packaged
tests/test_linters.py::test_quotes



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

2022-11-30 Thread WANG Xuerui
commit: 134a3d81cb04df091aa7a513f10e83b81e589f11
Author: WANG Xuerui  gentoo  org>
AuthorDate: Wed Nov 30 10:00:58 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Wed Nov 30 10:09:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=134a3d81

dev-python/pylama: keyword 8.4.1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.4.1.ebuild 
b/dev-python/pylama/pylama-8.4.1.ebuild
index 5ef018802310..e88ef8a9f856 100644
--- a/dev-python/pylama/pylama-8.4.1.ebuild
+++ b/dev-python/pylama/pylama-8.4.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.gh.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 
 RDEPEND="
>=dev-python/mccabe-0.7.0[${PYTHON_USEDEP}]



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

2022-11-08 Thread Andrew Ammerlaan
commit: 4ba300470ef7cbfafec236d496aad654a752acfa
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Tue Nov  8 08:48:39 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Nov  8 08:52:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ba30047

dev-python/pylama: add missing test dep

Closes: https://bugs.gentoo.org/880307
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-python/pylama/pylama-8.4.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pylama/pylama-8.4.1.ebuild 
b/dev-python/pylama/pylama-8.4.1.ebuild
index e1fe3d7d36ff..5ef018802310 100644
--- a/dev-python/pylama/pylama-8.4.1.ebuild
+++ b/dev-python/pylama/pylama-8.4.1.ebuild
@@ -28,6 +28,7 @@ BDEPEND="
dev-python/mypy[${PYTHON_USEDEP}]
dev-python/pylint[${PYTHON_USEDEP}]
dev-python/radon[${PYTHON_USEDEP}]
+   dev-python/toml[${PYTHON_USEDEP}]
dev-vcs/git
)
 "



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

2022-11-07 Thread Andrew Ammerlaan
commit: 5efca34d884d66fa064d2300addc64fb4fb0e87c
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Mon Nov  7 21:27:07 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Nov  7 21:27:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5efca34d

dev-python/pylama: enable py3.11

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.4.1.ebuild 
b/dev-python/pylama/pylama-8.4.1.ebuild
index ba0ed89fa5a1..e1fe3d7d36ff 100644
--- a/dev-python/pylama/pylama-8.4.1.ebuild
+++ b/dev-python/pylama/pylama-8.4.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit distutils-r1
 



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

2022-09-10 Thread Michał Górny
commit: 9fa9a702efd2bbe989a5a87bff459af8008c3131
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Sep 11 05:28:09 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Sep 11 05:29:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fa9a702

dev-python/pylama: Remove old

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

 dev-python/pylama/Manifest|  1 -
 dev-python/pylama/pylama-8.3.8.ebuild | 41 ---
 2 files changed, 42 deletions(-)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index d0eafd127002..893c44b456f9 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,2 +1 @@
-DIST pylama-8.3.8.tar.gz 36319 BLAKE2B 
5251bd32549793a8d06b6180a3e4f4c20f23dbdfecc146eb877222995bcadcf8cf8343f99ad897fb3e00c0f455762f82f4e3d157c34be6f21b4f220e87b636a2
 SHA512 
b55d7cb28a94f19270bde7ff6a8d760ef9132c845aaa85340271e42af6987fcc919ba9b0ddaebb6da6c1ffe789aaf39c83d273f8adea88db58a9218577899924
 DIST pylama-8.4.1.gh.tar.gz 37850 BLAKE2B 
dea99fc784736f3b229c5d82a59f2e2b5490fbe344ad98167e30e550b6c774c7b42cbddfedeb073d9d843cf53169c441812974036b06088ab07d7b7996def4a5
 SHA512 
fb038c39a2e962bd065ac5ef545f1be50f5b230141141a55e1701ffdc6a241b5778613ac91f29ff648b7ce48fa969c3961a11b7e906b6e350c84b57eea5369cd

diff --git a/dev-python/pylama/pylama-8.3.8.ebuild 
b/dev-python/pylama/pylama-8.3.8.ebuild
deleted file mode 100644
index 4b1757cf2d61..
--- a/dev-python/pylama/pylama-8.3.8.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-RDEPEND="
-   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
-   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
-   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
-   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/eradicate[${PYTHON_USEDEP}]
-   dev-python/mypy[${PYTHON_USEDEP}]
-   dev-python/pylint[${PYTHON_USEDEP}]
-   dev-python/radon[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # not packaged
-   tests/test_linters.py::test_quotes
-   tests/test_linters.py::test_vulture
-)



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

2022-09-10 Thread Jakov Smolić
commit: 21baeb02a145f496faee1ab5d7316747554d1c3d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Sep 10 22:37:27 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Sep 10 22:37:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21baeb02

dev-python/pylama: Stabilize 8.4.1 ALLARCHES, #869566

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.4.1.ebuild 
b/dev-python/pylama/pylama-8.4.1.ebuild
index 45e31850131b..ba0ed89fa5a1 100644
--- a/dev-python/pylama/pylama-8.4.1.ebuild
+++ b/dev-python/pylama/pylama-8.4.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.gh.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 RDEPEND="
>=dev-python/mccabe-0.7.0[${PYTHON_USEDEP}]



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

2022-08-08 Thread Arthur Zamarin
commit: 64009fa860129db788c3cf8523aad94398a9d2eb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Aug  8 18:54:27 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Aug  8 19:17:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64009fa8

dev-python/pylama: add 8.4.1

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-8.4.1.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 56437b11bf06..d0eafd127002 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1 +1,2 @@
 DIST pylama-8.3.8.tar.gz 36319 BLAKE2B 
5251bd32549793a8d06b6180a3e4f4c20f23dbdfecc146eb877222995bcadcf8cf8343f99ad897fb3e00c0f455762f82f4e3d157c34be6f21b4f220e87b636a2
 SHA512 
b55d7cb28a94f19270bde7ff6a8d760ef9132c845aaa85340271e42af6987fcc919ba9b0ddaebb6da6c1ffe789aaf39c83d273f8adea88db58a9218577899924
+DIST pylama-8.4.1.gh.tar.gz 37850 BLAKE2B 
dea99fc784736f3b229c5d82a59f2e2b5490fbe344ad98167e30e550b6c774c7b42cbddfedeb073d9d843cf53169c441812974036b06088ab07d7b7996def4a5
 SHA512 
fb038c39a2e962bd065ac5ef545f1be50f5b230141141a55e1701ffdc6a241b5778613ac91f29ff648b7ce48fa969c3961a11b7e906b6e350c84b57eea5369cd

diff --git a/dev-python/pylama/pylama-8.4.1.ebuild 
b/dev-python/pylama/pylama-8.4.1.ebuild
new file mode 100644
index ..45e31850131b
--- /dev/null
+++ b/dev-python/pylama/pylama-8.4.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.7.0[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.5.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2022-06-04 Thread Michał Górny
commit: 882511a426187a02ac2d407ef0c5bef150f4aeeb
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun  5 05:38:52 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun  5 05:40:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=882511a4

dev-python/pylama: Add python@ as co-maint.

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

 dev-python/pylama/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pylama/metadata.xml b/dev-python/pylama/metadata.xml
index a7072d4c3652..5ea1c06f17d7 100644
--- a/dev-python/pylama/metadata.xml
+++ b/dev-python/pylama/metadata.xml
@@ -5,6 +5,10 @@
zmed...@gentoo.org
Zac Medico

+   
+   pyt...@gentoo.org
+   Python
+   


pylama



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

2022-04-15 Thread Arthur Zamarin
commit: dd8a87ed58f43a00c2737dd2bfce47b65c38896c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Apr 15 15:18:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Apr 15 15:18:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd8a87ed

dev-python/pylama: drop 8.3.7

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/pylama/Manifest|  1 -
 dev-python/pylama/pylama-8.3.7.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 4c933257f85a..56437b11bf06 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,2 +1 @@
-DIST pylama-8.3.7.tar.gz 36264 BLAKE2B 
8092320c039b5cd45a379a2718443cf03f5cef931767ae765c90096e3b23d5b7242034009eecb40413f05e2de2fd72a4285a91ebbc1fb474d232cffc9c992b94
 SHA512 
acfab9584e7bd8b146350e6af83975e91391e39c00a0fea23d4e55f46dd684b519088ed68c90e335e334e8526aecab2ad2286a0c082d26a4b867eadcbd8866c8
 DIST pylama-8.3.8.tar.gz 36319 BLAKE2B 
5251bd32549793a8d06b6180a3e4f4c20f23dbdfecc146eb877222995bcadcf8cf8343f99ad897fb3e00c0f455762f82f4e3d157c34be6f21b4f220e87b636a2
 SHA512 
b55d7cb28a94f19270bde7ff6a8d760ef9132c845aaa85340271e42af6987fcc919ba9b0ddaebb6da6c1ffe789aaf39c83d273f8adea88db58a9218577899924

diff --git a/dev-python/pylama/pylama-8.3.7.ebuild 
b/dev-python/pylama/pylama-8.3.7.ebuild
deleted file mode 100644
index 6d4e92eb7427..
--- a/dev-python/pylama/pylama-8.3.7.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-RDEPEND="
-   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
-   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
-   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
-   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/eradicate[${PYTHON_USEDEP}]
-   dev-python/mypy[${PYTHON_USEDEP}]
-   dev-python/pylint[${PYTHON_USEDEP}]
-   dev-python/radon[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # not packaged
-   tests/test_linters.py::test_quotes
-   tests/test_linters.py::test_vulture
-)



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

2022-04-15 Thread Arthur Zamarin
commit: 07e4e59f7b81cb9bcf2fb59defd074325b6e8faf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Apr 15 15:18:11 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Apr 15 15:18:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07e4e59f

dev-python/pylama: Stabilize 8.3.8 ALLARCHES, #838559

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.8.ebuild 
b/dev-python/pylama/pylama-8.3.8.ebuild
index c76cee480c89..4b1757cf2d61 100644
--- a/dev-python/pylama/pylama-8.3.8.ebuild
+++ b/dev-python/pylama/pylama-8.3.8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-03-14 Thread Michał Górny
commit: 3bdd7bd2c431d554bb81143bf3bdb665e840cd5f
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 14 16:07:18 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 14 17:04:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bdd7bd2

dev-python/pylama: Bump to 8.3.8

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

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-8.3.8.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 2ad1c2501078..4c933257f85a 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1 +1,2 @@
 DIST pylama-8.3.7.tar.gz 36264 BLAKE2B 
8092320c039b5cd45a379a2718443cf03f5cef931767ae765c90096e3b23d5b7242034009eecb40413f05e2de2fd72a4285a91ebbc1fb474d232cffc9c992b94
 SHA512 
acfab9584e7bd8b146350e6af83975e91391e39c00a0fea23d4e55f46dd684b519088ed68c90e335e334e8526aecab2ad2286a0c082d26a4b867eadcbd8866c8
+DIST pylama-8.3.8.tar.gz 36319 BLAKE2B 
5251bd32549793a8d06b6180a3e4f4c20f23dbdfecc146eb877222995bcadcf8cf8343f99ad897fb3e00c0f455762f82f4e3d157c34be6f21b4f220e87b636a2
 SHA512 
b55d7cb28a94f19270bde7ff6a8d760ef9132c845aaa85340271e42af6987fcc919ba9b0ddaebb6da6c1ffe789aaf39c83d273f8adea88db58a9218577899924

diff --git a/dev-python/pylama/pylama-8.3.8.ebuild 
b/dev-python/pylama/pylama-8.3.8.ebuild
new file mode 100644
index ..c76cee480c89
--- /dev/null
+++ b/dev-python/pylama/pylama-8.3.8.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2022-02-13 Thread Michał Górny
commit: a52a57c9ac5a482574687a9bd3c663aa38b6e780
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb 13 09:31:56 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb 13 09:33:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a52a57c9

dev-python/pylama: Remove old

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

 dev-python/pylama/Manifest|  1 -
 dev-python/pylama/pylama-8.3.6.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 79d41547fa4b..2ad1c2501078 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,2 +1 @@
-DIST pylama-8.3.6.tar.gz 36190 BLAKE2B 
f0c9944d3aa205c9f52fdfab6b47ad5ad08f1865db22eef20add0652fcb4355f878026aad9f1babbfcb4f98c13bc5cbaa069d9d7b5c7a775d994a8952f8a8cc5
 SHA512 
c279f3005e354be448f42addcfeae6025e1dd4acf84e5de0c3ae707ceac4f98e43a07f43be347b26bfb8db4167945db1db547ed7bd9eb73ca78bbc92d26fdfff
 DIST pylama-8.3.7.tar.gz 36264 BLAKE2B 
8092320c039b5cd45a379a2718443cf03f5cef931767ae765c90096e3b23d5b7242034009eecb40413f05e2de2fd72a4285a91ebbc1fb474d232cffc9c992b94
 SHA512 
acfab9584e7bd8b146350e6af83975e91391e39c00a0fea23d4e55f46dd684b519088ed68c90e335e334e8526aecab2ad2286a0c082d26a4b867eadcbd8866c8

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
deleted file mode 100644
index 6d4e92eb7427..
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-RDEPEND="
-   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
-   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
-   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
-   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/eradicate[${PYTHON_USEDEP}]
-   dev-python/mypy[${PYTHON_USEDEP}]
-   dev-python/pylint[${PYTHON_USEDEP}]
-   dev-python/radon[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # not packaged
-   tests/test_linters.py::test_quotes
-   tests/test_linters.py::test_vulture
-)



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

2022-02-12 Thread Agostino Sarubbo
commit: 05e2e86b964105d273e9e3887c05739a22e38921
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Feb 13 07:54:43 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Feb 13 07:54:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05e2e86b

dev-python/pylama: amd64/arm64/arm/hppa/ppc64/ppc/sparc/x86 stable (ALLARCHES 
policy) wrt bug #833238

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

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

diff --git a/dev-python/pylama/pylama-8.3.7.ebuild 
b/dev-python/pylama/pylama-8.3.7.ebuild
index 989238c5c87e..6d4e92eb7427 100644
--- a/dev-python/pylama/pylama-8.3.7.ebuild
+++ b/dev-python/pylama/pylama-8.3.7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-02-02 Thread Michał Górny
commit: e0b8fe5f47d8aff58ae3c9811cb47bb8fd326623
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  2 12:15:46 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  2 12:16:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b8fe5f

dev-python/pylama: Remove old

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

 dev-python/pylama/Manifest   |  2 --
 dev-python/pylama/pylama-7.7.1-r1.ebuild | 49 
 dev-python/pylama/pylama-8.0.6.ebuild| 40 --
 3 files changed, 91 deletions(-)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index b1300a657fd4..79d41547fa4b 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,4 +1,2 @@
-DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0
 SHA512 
298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0
-DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 
690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8
 SHA512 
5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209
 DIST pylama-8.3.6.tar.gz 36190 BLAKE2B 
f0c9944d3aa205c9f52fdfab6b47ad5ad08f1865db22eef20add0652fcb4355f878026aad9f1babbfcb4f98c13bc5cbaa069d9d7b5c7a775d994a8952f8a8cc5
 SHA512 
c279f3005e354be448f42addcfeae6025e1dd4acf84e5de0c3ae707ceac4f98e43a07f43be347b26bfb8db4167945db1db547ed7bd9eb73ca78bbc92d26fdfff
 DIST pylama-8.3.7.tar.gz 36264 BLAKE2B 
8092320c039b5cd45a379a2718443cf03f5cef931767ae765c90096e3b23d5b7242034009eecb40413f05e2de2fd72a4285a91ebbc1fb474d232cffc9c992b94
 SHA512 
acfab9584e7bd8b146350e6af83975e91391e39c00a0fea23d4e55f46dd684b519088ed68c90e335e334e8526aecab2ad2286a0c082d26a4b867eadcbd8866c8

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
deleted file mode 100644
index 0297b0421751..
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-# pypi tarball excludes unit tests
-#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
-
-RDEPEND="
-   >=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]
-   dev-python/pycodestyle[${PYTHON_USEDEP}]
-   dev-python/pydocstyle[${PYTHON_USEDEP}]
-   dev-python/pyflakes[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/mypy[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   sed -e "s|exclude=\['plugins'\]|exclude=['plugins', 'tests']|" -i 
setup.py || die
-   sed -e 's|^\(def\) \(test_ignore_select\)|\1 _\2|' -i 
tests/test_config.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # Disable eradicate until it is fixed:
-   # https://github.com/klen/pylama/issues/190
-   tests/test_linters.py::test_eradicate
-   )
-   epytest tests
-}

diff --git a/dev-python/pylama/pylama-8.0.6.ebuild 
b/dev-python/pylama/pylama-8.0.6.ebuild
deleted file mode 100644
index c24f6a0bf330..
--- a/dev-python/pylama/pylama-8.0.6.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
-   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
-   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
-   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/eradicate[${PYTHON_USEDEP}]
-   dev-python/mypy[${PYTHON_USEDEP}]
-   dev-python/pylint[${PYTHON_USEDEP}]
-   dev-python/radon[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # not packaged
-   tests/test_linters.py::test_quotes
- 

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

2022-02-02 Thread Sam James
commit: a524b39333915a48457100390d4020fd55b5ad4e
Author: Sam James  gentoo  org>
AuthorDate: Wed Feb  2 10:48:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Feb  2 10:48:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a524b393

dev-python/pylama: Stabilize 8.3.6 hppa, #832283

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

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 955b38b43943..6d4e92eb7427 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-01-29 Thread Arthur Zamarin
commit: b7a14b7a501be1b6811837e58a33afe26ded08a1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 29 15:29:24 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 29 15:29:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7a14b7a

dev-python/pylama: Stabilize 8.3.6 ppc, #832283

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index b6dc43c4720a..bdd24521aef7 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-01-29 Thread Arthur Zamarin
commit: 01c618dfbf9b67699234d93bb890c9c25a71dbfb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 29 15:29:29 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 29 15:29:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01c618df

dev-python/pylama: Stabilize 8.3.6 ppc64, #832283

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index bdd24521aef7..955b38b43943 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-01-29 Thread Arthur Zamarin
commit: 0a9e2c0fc04ca13c57c2bec9a49d03c5d84b30b2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 29 15:29:18 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 29 15:29:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a9e2c0f

dev-python/pylama: Stabilize 8.3.6 arm, #832283

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 2207624ca9f8..b6dc43c4720a 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-01-29 Thread Arthur Zamarin
commit: 4bc79b68d289dc8f911cbc42961bc61052f5ed61
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 29 14:03:12 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 29 14:03:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc79b68

dev-python/pylama: Stabilize 8.3.6 sparc, #832283

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 54ab7daf7064..2207624ca9f8 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-01-29 Thread Jakov Smolić
commit: 9a5193de3ab85e41c0edff9966e6e800a7dd40ad
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Jan 29 10:03:54 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Jan 29 10:03:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a5193de

dev-python/pylama: Stabilize 8.3.6 amd64, #832283

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 1a4d8b7070e4..54ab7daf7064 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-01-29 Thread Jakov Smolić
commit: e6135631aa136d0ad1e93a40643c2c6279586936
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sat Jan 29 10:02:57 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sat Jan 29 10:02:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6135631

dev-python/pylama: Stabilize 8.3.6 x86, #832283

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 5ee7995934ba..1a4d8b7070e4 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-01-28 Thread Arthur Zamarin
commit: 0db0305792fb1ed5ede10c1450328df38db1ab9c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 29 07:31:31 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 29 07:31:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0db03057

dev-python/pylama: Stabilize 8.3.6 arm64, #832283

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 989238c5c87e..5ee7995934ba 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2022-01-10 Thread Michał Górny
commit: a4db5f32117bc3e588fdc2fd66ce2bc1292040a9
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 10 19:56:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 10 20:00:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4db5f32

dev-python/pylama: Bump to 8.3.7

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

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-8.3.7.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 6fa1da4ba01c..b1300a657fd4 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,3 +1,4 @@
 DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0
 SHA512 
298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0
 DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 
690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8
 SHA512 
5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209
 DIST pylama-8.3.6.tar.gz 36190 BLAKE2B 
f0c9944d3aa205c9f52fdfab6b47ad5ad08f1865db22eef20add0652fcb4355f878026aad9f1babbfcb4f98c13bc5cbaa069d9d7b5c7a775d994a8952f8a8cc5
 SHA512 
c279f3005e354be448f42addcfeae6025e1dd4acf84e5de0c3ae707ceac4f98e43a07f43be347b26bfb8db4167945db1db547ed7bd9eb73ca78bbc92d26fdfff
+DIST pylama-8.3.7.tar.gz 36264 BLAKE2B 
8092320c039b5cd45a379a2718443cf03f5cef931767ae765c90096e3b23d5b7242034009eecb40413f05e2de2fd72a4285a91ebbc1fb474d232cffc9c992b94
 SHA512 
acfab9584e7bd8b146350e6af83975e91391e39c00a0fea23d4e55f46dd684b519088ed68c90e335e334e8526aecab2ad2286a0c082d26a4b867eadcbd8866c8

diff --git a/dev-python/pylama/pylama-8.3.7.ebuild 
b/dev-python/pylama/pylama-8.3.7.ebuild
new file mode 100644
index ..989238c5c87e
--- /dev/null
+++ b/dev-python/pylama/pylama-8.3.7.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2022-01-02 Thread Yixun Lan
commit: e6cd176c1465094a5064ad8ccc266b17ed576f97
Author: Alex Fan  gmail  com>
AuthorDate: Sun Jan  2 08:09:58 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sun Jan  2 13:19:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6cd176c

dev-python/pylama: keyword 8.3.6 for ~riscv

Signed-off-by: Alex Fan  gmail.com>
Signed-off-by: Yixun Lan  gentoo.org>

 dev-python/pylama/pylama-8.3.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 5443c72f45dc..989238c5c87e 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-31 Thread Matt Turner
commit: 65891deea481f62618153c47c885d7819b4b5726
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 31 16:52:18 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 31 16:52:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65891dee

dev-python/pylama: Keyword 8.3.6 alpha, #830166

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

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index bfb006e431fc..5443c72f45dc 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-30 Thread Michał Górny
commit: f1867738572fc3b06ba94c0ac28cf8ec88ae7997
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 30 08:57:12 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 30 08:57:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1867738

dev-python/pylama: Remove broken USE=doc

Closes: https://bugs.gentoo.org/828122
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pylama/pylama-8.3.6.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 9162055e959e..bfb006e431fc 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -30,7 +30,6 @@ BDEPEND="
)
 "
 
-distutils_enable_sphinx docs
 distutils_enable_tests pytest
 
 EPYTEST_DESELECT=(



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

2021-12-30 Thread Sam James
commit: 611bcc0d95aab1ee4107dc177eaf0a4a16ccffe3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec 30 08:27:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 30 08:47:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611bcc0d

dev-python/pylama: keyword 8.3.6 for sparc, bug #830166

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 8db3e9f6169a..9162055e959e 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-28 Thread Arthur Zamarin
commit: 793869b95222474b75d207aeae66854693030f5a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 28 19:43:39 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 28 19:43:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=793869b9

dev-python/pylama: Keyword 8.3.6 hppa, #830166

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index d98d8730f63b..8db3e9f6169a 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-28 Thread Arthur Zamarin
commit: b001c598c1e3729119df7fb0c0df779719fe1bdc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 28 19:39:58 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 28 19:39:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b001c598

dev-python/pylama: Keyword 8.3.6 ia64, #830166

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index ce8d2f9e7182..d98d8730f63b 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-28 Thread Arthur Zamarin
commit: a2d6434e4cf56962c239c39baf96cc4ab533003d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 28 19:30:25 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 28 19:30:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2d6434e

dev-python/pylama: Keyword 8.3.6 s390, #830166

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index d699162e22b7..ce8d2f9e7182 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-28 Thread Arthur Zamarin
commit: 8206873f49df66b6544109dd2fd4a9f2daa9b80b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 28 18:54:11 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 28 18:54:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8206873f

dev-python/pylama: Keyword 8.3.6 ppc64, #830166

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 117426ae133e..d699162e22b7 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-28 Thread Arthur Zamarin
commit: 0abba2f50603d8f8548b61e2f3e8bea175ff564a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 28 18:52:49 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 28 18:52:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0abba2f5

dev-python/pylama: Keyword 8.3.6 ppc, #830166

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index 52eda7bcd8ef..117426ae133e 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-28 Thread Arthur Zamarin
commit: 22cdae1b9242d324086a792bdb390800aaa8ba56
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 28 18:51:14 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 28 18:51:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22cdae1b

dev-python/pylama: Keyword 8.3.6 arm, #830166

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index dbbaf55bfe3f..52eda7bcd8ef 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~mips ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-28 Thread Arthur Zamarin
commit: f13f3a40a8333dea5c3a65a5500cc9e136bc7033
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Dec 28 18:49:23 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Dec 28 18:49:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f13f3a40

dev-python/pylama: Keyword 8.3.6 arm64, #830166

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
index fab10b0885f6..dbbaf55bfe3f 100644
--- a/dev-python/pylama/pylama-8.3.6.ebuild
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86"
+KEYWORDS="~amd64 ~arm64 ~mips ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-28 Thread Michał Górny
commit: 73d7230f103d8cb066dfffccf4b98e73b894316d
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 28 10:33:38 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 28 10:33:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d7230f

dev-python/pylama: Remove old

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

 dev-python/pylama/Manifest|  3 ---
 dev-python/pylama/pylama-8.0.4.ebuild | 40 ---
 dev-python/pylama/pylama-8.3.3.ebuild | 40 ---
 dev-python/pylama/pylama-8.3.5.ebuild | 40 ---
 4 files changed, 123 deletions(-)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 273a7f03f942..6fa1da4ba01c 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,6 +1,3 @@
 DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0
 SHA512 
298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0
-DIST pylama-8.0.4.tar.gz 34064 BLAKE2B 
e6ec937b7716d8a64c19e71b370e557a30d04d908ed2d1859df380c381a7eea93956ec4b58ca779e6029119a017ffce268a5528424783b33e815827dacb79b5d
 SHA512 
c2ad152cadfaed14a6035eb49361439b8f80c7c633b5e1b185dd5dad140a4148f6d4445928e08cb8e92b205739ef75df6d49c66e4ad3cd002512cc2a8aba859b
 DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 
690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8
 SHA512 
5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209
-DIST pylama-8.3.3.tar.gz 36292 BLAKE2B 
e9ed2156c90af1ef33b8a3875dffbe6ee939e70b3a35e0bd9c6f29d5de6ef929e73cf7eda773f6693fdce96e763e81f336fc983a32f9cfa8d124441d5d34b060
 SHA512 
57db11480752a650dc2871bd8be139492cd5273c3770aefab160855d601e524a24754cf3b4e60973ce00072c1025749c7f9d9d39a5447ca27ab60979e743a72d
-DIST pylama-8.3.5.tar.gz 36117 BLAKE2B 
6ae876b7e1e0dbfba08c9b7460cbab129b1b43f79a274c191fb7710966fac4b100b1e1c81ac3a440c33b9ed076fb3a60eb5d732f484fc7150c096a7207c3b4d4
 SHA512 
8be5aa0490ad7e08e6def974c9b8c83c457679dfbdb2b7c161c71fc3f5f68b7e40c96ee41a57d1a1b8689356e22a028aa22400c747c17aa520b5be3e219569e7
 DIST pylama-8.3.6.tar.gz 36190 BLAKE2B 
f0c9944d3aa205c9f52fdfab6b47ad5ad08f1865db22eef20add0652fcb4355f878026aad9f1babbfcb4f98c13bc5cbaa069d9d7b5c7a775d994a8952f8a8cc5
 SHA512 
c279f3005e354be448f42addcfeae6025e1dd4acf84e5de0c3ae707ceac4f98e43a07f43be347b26bfb8db4167945db1db547ed7bd9eb73ca78bbc92d26fdfff

diff --git a/dev-python/pylama/pylama-8.0.4.ebuild 
b/dev-python/pylama/pylama-8.0.4.ebuild
deleted file mode 100644
index 56e1af7e7500..
--- a/dev-python/pylama/pylama-8.0.4.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
-   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
-   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
-   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/eradicate[${PYTHON_USEDEP}]
-   dev-python/mypy[${PYTHON_USEDEP}]
-   dev-python/pylint[${PYTHON_USEDEP}]
-   dev-python/radon[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # not packaged
-   tests/test_linters.py::test_quotes
-   tests/test_linters.py::test_vulture
-)

diff --git a/dev-python/pylama/pylama-8.3.3.ebuild 
b/dev-python/pylama/pylama-8.3.3.ebuild
deleted file mode 100644
index fab10b0885f6..
--- a/dev-python/pylama/pylama-8.3.3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86"
-
-RDEPEND="
-   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
-   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
-   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
-   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/eradicate[${PYTHON_USEDEP}]
-

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

2021-12-28 Thread Sam James
commit: 82d38d9637dc7a404f12e4d1db76bc75a5be410a
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 28 10:19:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 28 10:19:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82d38d96

dev-python/pylama: Stabilize 8.0.6 x86, #830112

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

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

diff --git a/dev-python/pylama/pylama-8.0.6.ebuild 
b/dev-python/pylama/pylama-8.0.6.ebuild
index dd58b13db679..c24f6a0bf330 100644
--- a/dev-python/pylama/pylama-8.0.6.ebuild
+++ b/dev-python/pylama/pylama-8.0.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-27 Thread Jakov Smolić
commit: ea1a6aa45b46830c1735f6ee7a5eb13012cd118b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Dec 27 19:17:55 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Dec 27 19:17:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea1a6aa4

dev-python/pylama: Stabilize 8.0.6 amd64, #830112

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/pylama/pylama-8.0.6.ebuild 
b/dev-python/pylama/pylama-8.0.6.ebuild
index 56e1af7e7500..dd58b13db679 100644
--- a/dev-python/pylama/pylama-8.0.6.ebuild
+++ b/dev-python/pylama/pylama-8.0.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-16 Thread Michał Górny
commit: 5e8bfa1d3146bb75b69391bf2f80ccfb8b754837
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 16 08:14:40 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 16 08:46:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e8bfa1d

dev-python/pylama: Bump to 8.3.6

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

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-8.3.6.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 111b62048ac5..273a7f03f942 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -3,3 +3,4 @@ DIST pylama-8.0.4.tar.gz 34064 BLAKE2B 
e6ec937b7716d8a64c19e71b370e557a30d04d908
 DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 
690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8
 SHA512 
5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209
 DIST pylama-8.3.3.tar.gz 36292 BLAKE2B 
e9ed2156c90af1ef33b8a3875dffbe6ee939e70b3a35e0bd9c6f29d5de6ef929e73cf7eda773f6693fdce96e763e81f336fc983a32f9cfa8d124441d5d34b060
 SHA512 
57db11480752a650dc2871bd8be139492cd5273c3770aefab160855d601e524a24754cf3b4e60973ce00072c1025749c7f9d9d39a5447ca27ab60979e743a72d
 DIST pylama-8.3.5.tar.gz 36117 BLAKE2B 
6ae876b7e1e0dbfba08c9b7460cbab129b1b43f79a274c191fb7710966fac4b100b1e1c81ac3a440c33b9ed076fb3a60eb5d732f484fc7150c096a7207c3b4d4
 SHA512 
8be5aa0490ad7e08e6def974c9b8c83c457679dfbdb2b7c161c71fc3f5f68b7e40c96ee41a57d1a1b8689356e22a028aa22400c747c17aa520b5be3e219569e7
+DIST pylama-8.3.6.tar.gz 36190 BLAKE2B 
f0c9944d3aa205c9f52fdfab6b47ad5ad08f1865db22eef20add0652fcb4355f878026aad9f1babbfcb4f98c13bc5cbaa069d9d7b5c7a775d994a8952f8a8cc5
 SHA512 
c279f3005e354be448f42addcfeae6025e1dd4acf84e5de0c3ae707ceac4f98e43a07f43be347b26bfb8db4167945db1db547ed7bd9eb73ca78bbc92d26fdfff

diff --git a/dev-python/pylama/pylama-8.3.6.ebuild 
b/dev-python/pylama/pylama-8.3.6.ebuild
new file mode 100644
index ..fab10b0885f6
--- /dev/null
+++ b/dev-python/pylama/pylama-8.3.6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2021-12-14 Thread Michał Górny
commit: 086241ba9bb7429cdbb50b6a2d3dae0b9d49e715
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 14 07:42:28 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 14 10:21:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=086241ba

dev-python/pylama: Bump to 8.3.5

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

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-8.3.5.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 24ec02ee8b54..111b62048ac5 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -2,3 +2,4 @@ DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff
 DIST pylama-8.0.4.tar.gz 34064 BLAKE2B 
e6ec937b7716d8a64c19e71b370e557a30d04d908ed2d1859df380c381a7eea93956ec4b58ca779e6029119a017ffce268a5528424783b33e815827dacb79b5d
 SHA512 
c2ad152cadfaed14a6035eb49361439b8f80c7c633b5e1b185dd5dad140a4148f6d4445928e08cb8e92b205739ef75df6d49c66e4ad3cd002512cc2a8aba859b
 DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 
690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8
 SHA512 
5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209
 DIST pylama-8.3.3.tar.gz 36292 BLAKE2B 
e9ed2156c90af1ef33b8a3875dffbe6ee939e70b3a35e0bd9c6f29d5de6ef929e73cf7eda773f6693fdce96e763e81f336fc983a32f9cfa8d124441d5d34b060
 SHA512 
57db11480752a650dc2871bd8be139492cd5273c3770aefab160855d601e524a24754cf3b4e60973ce00072c1025749c7f9d9d39a5447ca27ab60979e743a72d
+DIST pylama-8.3.5.tar.gz 36117 BLAKE2B 
6ae876b7e1e0dbfba08c9b7460cbab129b1b43f79a274c191fb7710966fac4b100b1e1c81ac3a440c33b9ed076fb3a60eb5d732f484fc7150c096a7207c3b4d4
 SHA512 
8be5aa0490ad7e08e6def974c9b8c83c457679dfbdb2b7c161c71fc3f5f68b7e40c96ee41a57d1a1b8689356e22a028aa22400c747c17aa520b5be3e219569e7

diff --git a/dev-python/pylama/pylama-8.3.5.ebuild 
b/dev-python/pylama/pylama-8.3.5.ebuild
new file mode 100644
index ..fab10b0885f6
--- /dev/null
+++ b/dev-python/pylama/pylama-8.3.5.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2021-12-07 Thread Joshua Kinard
commit: d69ab0b7cd42c8f3e1e3302bd12a6ac212d0fcdc
Author: Joshua Kinard  gentoo  org>
AuthorDate: Tue Dec  7 08:33:51 2021 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Tue Dec  7 08:40:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d69ab0b7

dev-python/pylama: Added ~mips to KEYWORDS

Bug: https://bugs.gentoo.org/808399
Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.28, Repoman-3.0.3

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

diff --git a/dev-python/pylama/pylama-8.3.3.ebuild 
b/dev-python/pylama/pylama-8.3.3.ebuild
index 56e1af7e7500..fab10b0885f6 100644
--- a/dev-python/pylama/pylama-8.3.3.ebuild
+++ b/dev-python/pylama/pylama-8.3.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~mips ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-12-03 Thread Michał Górny
commit: b2cfa0d16baaf775a0d3bef2e7638870971c4831
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec  3 18:38:12 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec  3 19:46:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2cfa0d1

dev-python/pylama: Bump to 8.3.3

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

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-8.3.3.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index cd4f2f652077..24ec02ee8b54 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,3 +1,4 @@
 DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0
 SHA512 
298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0
 DIST pylama-8.0.4.tar.gz 34064 BLAKE2B 
e6ec937b7716d8a64c19e71b370e557a30d04d908ed2d1859df380c381a7eea93956ec4b58ca779e6029119a017ffce268a5528424783b33e815827dacb79b5d
 SHA512 
c2ad152cadfaed14a6035eb49361439b8f80c7c633b5e1b185dd5dad140a4148f6d4445928e08cb8e92b205739ef75df6d49c66e4ad3cd002512cc2a8aba859b
 DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 
690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8
 SHA512 
5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209
+DIST pylama-8.3.3.tar.gz 36292 BLAKE2B 
e9ed2156c90af1ef33b8a3875dffbe6ee939e70b3a35e0bd9c6f29d5de6ef929e73cf7eda773f6693fdce96e763e81f336fc983a32f9cfa8d124441d5d34b060
 SHA512 
57db11480752a650dc2871bd8be139492cd5273c3770aefab160855d601e524a24754cf3b4e60973ce00072c1025749c7f9d9d39a5447ca27ab60979e743a72d

diff --git a/dev-python/pylama/pylama-8.3.3.ebuild 
b/dev-python/pylama/pylama-8.3.3.ebuild
new file mode 100644
index ..56e1af7e7500
--- /dev/null
+++ b/dev-python/pylama/pylama-8.3.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2021-11-26 Thread Michał Górny
commit: a2b4158e46ed3acd567f7c03234ecbfef10f17f3
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 26 20:53:20 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 26 21:56:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2b4158e

dev-python/pylama: Bump to 8.0.6

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

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-8.0.6.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 576f634fc64e..cd4f2f652077 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,2 +1,3 @@
 DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0
 SHA512 
298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0
 DIST pylama-8.0.4.tar.gz 34064 BLAKE2B 
e6ec937b7716d8a64c19e71b370e557a30d04d908ed2d1859df380c381a7eea93956ec4b58ca779e6029119a017ffce268a5528424783b33e815827dacb79b5d
 SHA512 
c2ad152cadfaed14a6035eb49361439b8f80c7c633b5e1b185dd5dad140a4148f6d4445928e08cb8e92b205739ef75df6d49c66e4ad3cd002512cc2a8aba859b
+DIST pylama-8.0.6.tar.gz 34223 BLAKE2B 
690a0a1197f6512e9511083aa079843f2ca99c9bdb5d74756531db79f7d39e8e0f60a0955b24bc7739edce0376eb79821a796978fb2365789a97628f03f240f8
 SHA512 
5bc75e5b2a0b141dbe2ca993d13833914980c735b84f3df766bf750909af1eeaba0d554845d8c09f0d8186ff48c8330d9ffa5b565a577ef6506f32672a2c9209

diff --git a/dev-python/pylama/pylama-8.0.6.ebuild 
b/dev-python/pylama/pylama-8.0.6.ebuild
new file mode 100644
index ..56e1af7e7500
--- /dev/null
+++ b/dev-python/pylama/pylama-8.0.6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2021-11-25 Thread Michał Górny
commit: f110d40c1250e8ebd2f620865c09b24b2136c7d0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 26 07:52:44 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 26 07:53:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f110d40c

dev-python/pylama: Lower KEYWORDS

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

 dev-python/pylama/pylama-8.0.4.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-python/pylama/pylama-8.0.4.ebuild 
b/dev-python/pylama/pylama-8.0.4.ebuild
index 6b54660dd5ef..56e1af7e7500 100644
--- a/dev-python/pylama/pylama-8.0.4.ebuild
+++ b/dev-python/pylama/pylama-8.0.4.ebuild
@@ -9,12 +9,10 @@ inherit distutils-r1
 DESCRIPTION="Code audit tool for python"
 HOMEPAGE="https://github.com/klen/pylama;
 SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-# pypi tarball excludes unit tests
-#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+KEYWORDS="~amd64 ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]



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

2021-11-25 Thread Michał Górny
commit: 0fb206519eb190d5e9dc56162406ad96c141ebfe
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 26 07:08:14 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 26 07:29:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fb20651

dev-python/pylama: Bump to 8.0.4

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

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-8.0.4.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 6964008e2ec4..576f634fc64e 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1 +1,2 @@
 DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0
 SHA512 
298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0
+DIST pylama-8.0.4.tar.gz 34064 BLAKE2B 
e6ec937b7716d8a64c19e71b370e557a30d04d908ed2d1859df380c381a7eea93956ec4b58ca779e6029119a017ffce268a5528424783b33e815827dacb79b5d
 SHA512 
c2ad152cadfaed14a6035eb49361439b8f80c7c633b5e1b185dd5dad140a4148f6d4445928e08cb8e92b205739ef75df6d49c66e4ad3cd002512cc2a8aba859b

diff --git a/dev-python/pylama/pylama-8.0.4.ebuild 
b/dev-python/pylama/pylama-8.0.4.ebuild
new file mode 100644
index ..6b54660dd5ef
--- /dev/null
+++ b/dev-python/pylama/pylama-8.0.4.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+# pypi tarball excludes unit tests
+#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+   >=dev-python/mccabe-0.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-6.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/pylint[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # not packaged
+   tests/test_linters.py::test_quotes
+   tests/test_linters.py::test_vulture
+)



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

2021-11-17 Thread Sam James
commit: a21df864b09b2bbcace561c74a4087459e05679f
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 17 08:00:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 17 08:00:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a21df864

dev-python/pylama: Stabilize 7.7.1-r1 hppa, #818406

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 0b583268e84f..0297b0421751 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2021-10-13 Thread Sam James
commit: 7aeb9dd373dfbb0ef8be45f6af51ea03ff34f260
Author: Sam James  gentoo  org>
AuthorDate: Thu Oct 14 04:44:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Oct 14 04:45:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aeb9dd3

dev-python/pylama: Keyword 7.7.1-r1 hppa, #808399

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index fc180c52d1a..0b583268e84 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2021-10-10 Thread Sam James
commit: 80c0f4ed77e5d1943f82899f3ddd112a13d0be18
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 11 00:44:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 11 00:44:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80c0f4ed

dev-python/pylama: Keyword 7.7.1-r1 s390, #808399

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index a7fb5370fb2..fc180c52d1a 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2021-08-25 Thread Louis Sautier
commit: 4e7aa931a2fac2dd59ebaaf48c936cffd52340c1
Author: Louis Sautier  gentoo  org>
AuthorDate: Wed Aug 25 11:35:56 2021 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Wed Aug 25 11:41:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e7aa931

dev-python/pylama: enable py3.10, epytest, fix setuptools dep.

Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/pylama/pylama-7.7.1-r1.ebuild | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 3bc25306aca..a7fb5370fb2 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -3,8 +3,7 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS="rdepend"
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 
@@ -41,8 +40,10 @@ python_prepare_all() {
 }
 
 python_test() {
-   # Disable eradicate until it is fixed:
-   # https://github.com/klen/pylama/issues/190
-   pytest -vv tests --deselect tests/test_linters.py::test_eradicate \
-   || die "Tests failed with ${EPYTHON}"
+   local EPYTEST_DESELECT=(
+   # Disable eradicate until it is fixed:
+   # https://github.com/klen/pylama/issues/190
+   tests/test_linters.py::test_eradicate
+   )
+   epytest tests
 }



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

2020-12-30 Thread Sam James
commit: 103eca95d2264d15544de1241d5283eea11da1d4
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 31 06:33:27 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 31 06:33:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=103eca95

dev-python/pylama: Stabilize 7.7.1-r1 ALLARCHES

Needed for dev-python/isort

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 34e42abd1ed..ac414437303 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 sparc x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-12-30 Thread Sam James
commit: af2a8568b3a4c401d75232c62405c2b10cfbdf5d
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 31 06:26:48 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 31 06:26:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af2a8568

dev-python/pylama: Stabilize 7.7.1-r1 ALLARCHES, #754792

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 550f02e50c9..34e42abd1ed 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-12-15 Thread Sergei Trofimovich
commit: 962e7d4bf1ae3860ae31b98fd91666f62a72c857
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Dec 15 20:25:05 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Dec 15 22:10:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=962e7d4b

dev-python/pylama: keyworded 7.7.1-r1 for sparc, bug #747850

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 99c48bba206..550f02e50c9 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-12-13 Thread Sam James
commit: aa86cc35ce33d10e4d5a296ea131fba9b4b49ef3
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 14 00:38:58 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 14 00:38:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa86cc35

dev-python/pylama: Keyword 7.7.1-r1 arm, #747850

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 58fe827668a..99c48bba206 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-12-13 Thread Sam James
commit: 87d73618c54ecb9de73070bfde456162df6aeecb
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 10:09:52 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 10:09:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87d73618

dev-python/pylama: arm64 stable (bug #754792)

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 76ef2bd61be..58fe827668a 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-12-12 Thread Sam James
commit: 351c7a81bf65dbbf77d47d8b1072099b706e759a
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 00:33:50 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 00:33:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=351c7a81

dev-python/pylama: ppc keyworded (bug #747850)

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 55df39d1894..76ef2bd61be 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-12-12 Thread Sam James
commit: 8a617938c8fd8c6aecc58e7bb85b4ac7385f57ae
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 13 00:15:30 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 13 00:15:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a617938

dev-python/pylama: ppc64 keyworded (bug #747850)

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index fb5828bafb8..55df39d1894 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc64 ~x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-12-06 Thread Matt Turner
commit: 8215f0d711a99726a0cee8a98eb1958f63520562
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Dec  7 04:27:30 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Dec  7 04:27:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8215f0d7

dev-python/pylama: Keyword 7.7.1-r1 alpha, #747850

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 87655172923..fb5828bafb8 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-11-28 Thread Sam James
commit: 782f0f9336bc3a07ef6123794b83bbba99af295b
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 28 15:31:12 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 28 15:31:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782f0f93

dev-python/pylama: ~x64-macos keyworded

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index ff229030c3f..87655172923 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~x86 ~x64-macos"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-11-28 Thread Sam James
commit: f16e52a3ed149dd0f7efdb081c53243a032a8889
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 28 15:30:55 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 28 15:30:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f16e52a3

dev-python/pylama: mark ALLARCHES

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

 dev-python/pylama/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pylama/metadata.xml b/dev-python/pylama/metadata.xml
index 15091e5bdcf..5b761c7a8f6 100644
--- a/dev-python/pylama/metadata.xml
+++ b/dev-python/pylama/metadata.xml
@@ -5,6 +5,7 @@
zmed...@gentoo.org
Zac Medico

+   

pylama
klen/pylama



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

2020-10-16 Thread Sergei Trofimovich
commit: 7412b4967b5699135ef3a7aeaab89e9dbe0f95e0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Oct 16 21:55:58 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 16 21:56:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7412b496

dev-python/pylama: keyworded 7.7.1-r1 for ia64

keyworded wrt bug #747850

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 702796d2d9e..ff229030c3f 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-10-11 Thread Sam James
commit: 2e367978497170abf284f6be80e2b6cbea40a143
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 11 23:44:14 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 11 23:44:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e367978

dev-python/pylama: Keyword 7.7.1-r1 arm64, #747850

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

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

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 5ccf8ff9fbb..702796d2d9e 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]



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

2020-10-07 Thread Louis Sautier
commit: e2e130d21a32000855d1f75fe272497ac8290a06
Author: Louis Sautier  gentoo  org>
AuthorDate: Wed Oct  7 21:14:45 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Wed Oct  7 21:29:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e130d2

dev-python/pylama: add Python 3.{8,9} support and doc, fix tests

* Runtime dependencies aren't required at build-time.
* Move test dependencies to BDEPEND.
* Remove manually added setuptools dependency.
* Add pytest dependency and RESTRICT via distutils_enable_tests.
* Git is required to run tests (bug #723712).
* So is mypy.
* Radon isn't used by tests.
* Eradicate tests fail, disable them for now.

Closes: https://bugs.gentoo.org/723712
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/pylama/pylama-7.7.1-r1.ebuild | 48 
 1 file changed, 48 insertions(+)

diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild 
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
new file mode 100644
index 000..5ccf8ff9fbb
--- /dev/null
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS="rdepend"
+
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+# pypi tarball excludes unit tests
+#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]
+   dev-python/pycodestyle[${PYTHON_USEDEP}]
+   dev-python/pydocstyle[${PYTHON_USEDEP}]
+   dev-python/pyflakes[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   sed -e "s|exclude=\['plugins'\]|exclude=['plugins', 'tests']|" -i 
setup.py || die
+   sed -e 's|^\(def\) \(test_ignore_select\)|\1 _\2|' -i 
tests/test_config.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   # Disable eradicate until it is fixed:
+   # https://github.com/klen/pylama/issues/190
+   pytest -vv tests --deselect tests/test_linters.py::test_eradicate \
+   || die "Tests failed with ${EPYTHON}"
+}



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

2020-04-04 Thread Zac Medico
commit: 2f34a49afde6d050f3eaa6396dff90e55176c21f
Author: Nils Freydank  posteo  de>
AuthorDate: Wed Mar 25 15:54:27 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Apr  4 06:35:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f34a49a

dev-python/pylama: Cleanup old version

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Nils Freydank  posteo.de>
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/pylama/Manifest|  1 -
 dev-python/pylama/pylama-7.6.5.ebuild | 36 ---
 2 files changed, 37 deletions(-)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 3725fe8f84e..6964008e2ec 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1,2 +1 @@
-DIST pylama-7.6.5.tar.gz 33680 BLAKE2B 
a80d976a6a5e7903f3e4aa6b36777b6a938d52980232d1858bbd602d277bce4b058f8ad404e6dc6692e6950ff36d8e698ff0e3afa44c06334a6bdbe728f15cdd
 SHA512 
0ce2438622cdb3e85fb70d4246cdcc29940181dce82a1a641f6b7900a13f09cba0f871038992019a2e1ccc720dcd6dd5e21786bd8a2df40479a34c500a80fab4
 DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0
 SHA512 
298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0

diff --git a/dev-python/pylama/pylama-7.6.5.ebuild 
b/dev-python/pylama/pylama-7.6.5.ebuild
deleted file mode 100644
index ff91270e204..000
--- a/dev-python/pylama/pylama-7.6.5.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Code audit tool for python"
-HOMEPAGE="https://github.com/klen/pylama;
-SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
-# pypi tarball excludes unit tests
-#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]
-   >=dev-python/pycodestyle-2.3.1[${PYTHON_USEDEP}]
-   >=dev-python/pydocstyle-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/pyflakes-1.5.0[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   >=dev-python/eradicate-0.2[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   >=dev-python/radon-1.4.2[${PYTHON_USEDEP}]
-   )"
-
-python_test() {
-   py.test -v test_pylama.py || die "tests failed with ${EPYTHON}"
-}



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

2020-04-04 Thread Zac Medico
commit: 5a60ee36af706f59fb398fb8d9dc77c0294d8d0a
Author: Nils Freydank  posteo  de>
AuthorDate: Wed Mar 25 15:54:13 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Apr  4 06:18:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a60ee36

dev-python/pylama: Bump to 7.7.1

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Nils Freydank  posteo.de>
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/pylama-7.7.1.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
index 40d22231eca..3725fe8f84e 100644
--- a/dev-python/pylama/Manifest
+++ b/dev-python/pylama/Manifest
@@ -1 +1,2 @@
 DIST pylama-7.6.5.tar.gz 33680 BLAKE2B 
a80d976a6a5e7903f3e4aa6b36777b6a938d52980232d1858bbd602d277bce4b058f8ad404e6dc6692e6950ff36d8e698ff0e3afa44c06334a6bdbe728f15cdd
 SHA512 
0ce2438622cdb3e85fb70d4246cdcc29940181dce82a1a641f6b7900a13f09cba0f871038992019a2e1ccc720dcd6dd5e21786bd8a2df40479a34c500a80fab4
+DIST pylama-7.7.1.tar.gz 34740 BLAKE2B 
a4bd5aed40c2c4e7bdb9f9968030f0954f0309cff80567b2252ee9576fdb4598714286bda63c22676789d4919662430ef2729089faa70b5cb590784eb47ef1f0
 SHA512 
298fabffcdf38e3e868e3965de87a0e761bc9dfcfe33320b53057c4e05598bcc22045481ec16ccb8df27f49ea41d6fef82b69fe7327905f93ce74d9350682cf0

diff --git a/dev-python/pylama/pylama-7.7.1.ebuild 
b/dev-python/pylama/pylama-7.7.1.ebuild
new file mode 100644
index 000..76978aea548
--- /dev/null
+++ b/dev-python/pylama/pylama-7.7.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS="rdepend"
+
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+# pypi tarball excludes unit tests
+#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="
+   >=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]
+   dev-python/pycodestyle[${PYTHON_USEDEP}]
+   dev-python/pydocstyle[${PYTHON_USEDEP}]
+   dev-python/pyflakes[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   test? (
+   dev-python/eradicate[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/radon[${PYTHON_USEDEP}]
+   )
+"
+
+python_prepare_all() {
+   sed -e "s|exclude=\['plugins'\]|exclude=['plugins', 'tests']|" -i 
setup.py || die
+   sed -e 's|^\(def\) \(test_ignore_select\)|\1 _\2|' -i 
tests/test_config.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   py.test -v tests || die "Tests failed with ${EPYTHON}"
+}



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

2020-02-05 Thread Michał Górny
commit: dfeb0857f62a4e22de02f6691fc8d55a07956dbd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  5 12:48:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  5 12:59:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfeb0857

dev-python/pylama: Remove py2

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

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

diff --git a/dev-python/pylama/pylama-7.6.5.ebuild 
b/dev-python/pylama/pylama-7.6.5.ebuild
index 1dd232b80f8..4270c54a666 100644
--- a/dev-python/pylama/pylama-7.6.5.ebuild
+++ b/dev-python/pylama/pylama-7.6.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1
 



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

2018-10-14 Thread Zac Medico
commit: 1e7288a9d01898e0d0e4ab709ab42adf0f37671b
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Oct 14 11:53:35 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Oct 14 11:54:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e7288a9

dev-python/pylama: change pydocstyle dep to pep257

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

 dev-python/pylama/pylama-7.6.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pylama/pylama-7.6.5.ebuild 
b/dev-python/pylama/pylama-7.6.5.ebuild
index 13f07989b0d..6b5d0decb02 100644
--- a/dev-python/pylama/pylama-7.6.5.ebuild
+++ b/dev-python/pylama/pylama-7.6.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 inherit distutils-r1
 
@@ -22,7 +22,7 @@ RESTRICT="!test? ( test )"
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]
>=dev-python/pycodestyle-2.3.1[${PYTHON_USEDEP}]
-   >=dev-python/pydocstyle-2.0.0[${PYTHON_USEDEP}]
+   >=dev-python/pep257-2.0.0[${PYTHON_USEDEP}]
>=dev-python/pyflakes-1.5.0[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
test? (



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

2018-10-13 Thread Zac Medico
commit: eded67aa44f6297b1ef828b18b186d6f38990b88
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Oct 13 21:56:39 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Oct 13 22:35:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eded67aa

dev-python/pylama: new package

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

 dev-python/pylama/Manifest|  1 +
 dev-python/pylama/metadata.xml| 12 
 dev-python/pylama/pylama-7.6.5.ebuild | 36 +++
 3 files changed, 49 insertions(+)

diff --git a/dev-python/pylama/Manifest b/dev-python/pylama/Manifest
new file mode 100644
index 000..40d22231eca
--- /dev/null
+++ b/dev-python/pylama/Manifest
@@ -0,0 +1 @@
+DIST pylama-7.6.5.tar.gz 33680 BLAKE2B 
a80d976a6a5e7903f3e4aa6b36777b6a938d52980232d1858bbd602d277bce4b058f8ad404e6dc6692e6950ff36d8e698ff0e3afa44c06334a6bdbe728f15cdd
 SHA512 
0ce2438622cdb3e85fb70d4246cdcc29940181dce82a1a641f6b7900a13f09cba0f871038992019a2e1ccc720dcd6dd5e21786bd8a2df40479a34c500a80fab4

diff --git a/dev-python/pylama/metadata.xml b/dev-python/pylama/metadata.xml
new file mode 100644
index 000..15091e5bdcf
--- /dev/null
+++ b/dev-python/pylama/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   zmed...@gentoo.org
+   Zac Medico
+   
+   
+   pylama
+   klen/pylama
+   
+

diff --git a/dev-python/pylama/pylama-7.6.5.ebuild 
b/dev-python/pylama/pylama-7.6.5.ebuild
new file mode 100644
index 000..13f07989b0d
--- /dev/null
+++ b/dev-python/pylama/pylama-7.6.5.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Code audit tool for python"
+HOMEPAGE="https://github.com/klen/pylama;
+SRC_URI="https://github.com/klen/pylama/archive/${PV}.tar.gz -> ${P}.tar.gz"
+# pypi tarball excludes unit tests
+#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/mccabe-0.5.2[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.3.1[${PYTHON_USEDEP}]
+   >=dev-python/pydocstyle-2.0.0[${PYTHON_USEDEP}]
+   >=dev-python/pyflakes-1.5.0[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   >=dev-python/eradicate-0.2[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   >=dev-python/radon-1.4.2[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   py.test -v test_pylama.py || die "tests failed with ${EPYTHON}"
+}