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

2022-06-19 Thread Sam James
commit: de25b99f222003cc373e990ed62f6e5fc55dddc7
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 20 03:11:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 20 03:11:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de25b99f

dev-python/dicttoxml: treeclean

Bug: https://bugs.gentoo.org/846788
Signed-off-by: Sam James  gentoo.org>

 dev-python/dicttoxml/Manifest  |  1 -
 dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild | 22 
 .../dicttoxml/files/dicttoxml-1.7.4-py3.10.patch   | 58 --
 dev-python/dicttoxml/metadata.xml  | 17 ---
 profiles/package.mask  |  6 ---
 5 files changed, 104 deletions(-)

diff --git a/dev-python/dicttoxml/Manifest b/dev-python/dicttoxml/Manifest
deleted file mode 100644
index 4a7bb4a80d19..
--- a/dev-python/dicttoxml/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST dicttoxml-1.7.4.tar.gz 18190 BLAKE2B 
e8fd4974cbd9e83b72c25f28fa5595421be88ed5fbb1e64721280c4ead3003f95c98c7b4f12bced926f0c4af31b30dd76ddd49ddf297fa5f68eeb466d042ede6
 SHA512 
91abcf2b9b248717618e9fc1c8694e881b9deaa16438dd4674f94a22b4aabfdab3b13f95c3d44a60577d49eca82fb268f59b33d1312cf5388bdaf949a2865cbf

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild
deleted file mode 100644
index e9afd3ab5d7c..
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild
+++ /dev/null
@@ -1,22 +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=( pypy3 python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Converts a Python dictionary or other data type to a valid XML 
string"
-HOMEPAGE="https://github.com/quandyfactory/dicttoxml 
https://pypi.org/project/dicttoxml/;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-PATCHES=(
-   # https://github.com/quandyfactory/dicttoxml/pull/73/files
-   "${FILESDIR}/${P}-py3.10.patch"
-)

diff --git a/dev-python/dicttoxml/files/dicttoxml-1.7.4-py3.10.patch 
b/dev-python/dicttoxml/files/dicttoxml-1.7.4-py3.10.patch
deleted file mode 100644
index 5b3fe172949e..
--- a/dev-python/dicttoxml/files/dicttoxml-1.7.4-py3.10.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-From 2b7b4522b7255fbc8f1e04304d2e440d333909d5 Mon Sep 17 00:00:00 2001
-From: Kier von Konigslow 
-Date: Sat, 28 Dec 2019 14:08:46 -0500
-Subject: [PATCH] Fix deprecation with collections abc
-

- dicttoxml.py | 10 +-
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/dicttoxml.py b/dicttoxml.py
-index ae1384a..5d2dd54 100755
 a/dicttoxml.py
-+++ b/dicttoxml.py
-@@ -15,7 +15,7 @@
- version = __version__
- 
- from random import randint
--import collections
-+import collections.abc
- import numbers
- import logging
- from xml.dom.minidom import parseString
-@@ -96,7 +96,7 @@ def get_xml_type(val):
- return 'null'
- if isinstance(val, dict):
- return 'dict'
--if isinstance(val, collections.Iterable):
-+if isinstance(val, collections.abc.Iterable):
- return 'list'
- return type(val).__name__
- 
-@@ -188,7 +188,7 @@ def convert(obj, ids, attr_type, item_func, cdata, 
parent='root'):
- if isinstance(obj, dict):
- return convert_dict(obj, ids, parent, attr_type, item_func, cdata)
- 
--if isinstance(obj, collections.Iterable):
-+if isinstance(obj, collections.abc.Iterable):
- return convert_list(obj, ids, parent, attr_type, item_func, cdata)
- 
- raise TypeError('Unsupported data type: %s (%s)' % (obj, 
type(obj).__name__))
-@@ -232,7 +232,7 @@ def convert_dict(obj, ids, parent, attr_type, item_func, 
cdata):
- )
- )
- 
--elif isinstance(val, collections.Iterable):
-+elif isinstance(val, collections.abc.Iterable):
- if attr_type:
- attr['type'] = get_xml_type(val)
- addline('<%s%s>%s' % (
-@@ -295,7 +295,7 @@ def convert_list(items, ids, parent, attr_type, item_func, 
cdata):
- )
- )
- 
--elif isinstance(item, collections.Iterable):
-+elif isinstance(item, collections.abc.Iterable):
- if not attr_type:
- addline('<%s %s>%s' % (
- item_name, make_attrstring(attr), 

diff --git a/dev-python/dicttoxml/metadata.xml 
b/dev-python/dicttoxml/metadata.xml
deleted file mode 100644
index 7834b72e5bb3..
--- a/dev-python/dicttoxml/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-chutz...@gentoo.org
-Patrick McLean
-  
-  
-pyt...@gentoo.org
-Python
-  
-  
-  
-dicttoxml
-quandyfactory/dicttoxml
-  
-

diff --git a/profiles/package.mask 

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

2022-03-15 Thread Michał Górny
commit: a0298eec8aa0cc82bf48e6bf82c9b0aec5c8e8dc
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 15 11:18:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 15 11:18:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0298eec

dev-python/dicttoxml: Remove old

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

 dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild | 22 --
 1 file changed, 22 deletions(-)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
deleted file mode 100644
index d5a2d0fdd11a..
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( pypy3 python3_{8..10} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1
-
-DESCRIPTION="Converts a Python dictionary or other data type to a valid XML 
string"
-HOMEPAGE="https://github.com/quandyfactory/dicttoxml 
https://pypi.org/project/dicttoxml/;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-PATCHES=(
-   # https://github.com/quandyfactory/dicttoxml/pull/73/files
-   "${FILESDIR}/${P}-py3.10.patch"
-)



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

2022-03-15 Thread Jakov Smolić
commit: 07a6b1ecfad3f3e424c975ed37f4bfce58beaf6f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Mar 15 11:08:28 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Mar 15 11:08:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a6b1ec

dev-python/dicttoxml: Stabilize 1.7.4-r3 ALLARCHES, #835190

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

 dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild
index 5f65f5b39908..e9afd3ab5d7c 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 PATCHES=(
# https://github.com/quandyfactory/dicttoxml/pull/73/files



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

2022-03-15 Thread Michał Górny
commit: 103371a325276c329440b7e8f94ff819ca0203b7
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 15 09:06:25 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 15 09:22:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=103371a3

dev-python/dicttoxml: Mark ALLARCHES

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

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

diff --git a/dev-python/dicttoxml/metadata.xml 
b/dev-python/dicttoxml/metadata.xml
index 0f0559266bf8..7834b72e5bb3 100644
--- a/dev-python/dicttoxml/metadata.xml
+++ b/dev-python/dicttoxml/metadata.xml
@@ -9,6 +9,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 dicttoxml
 quandyfactory/dicttoxml



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

2022-01-29 Thread Michał Górny
commit: 2ef08fa78e9d8eca4eb022b0b9a22cde7f6a7bd1
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 29 12:34:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 29 12:35:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ef08fa7

dev-python/dicttoxml: Switch to PEP 517 build

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

 dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild
new file mode 100644
index ..5f65f5b39908
--- /dev/null
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r3.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Converts a Python dictionary or other data type to a valid XML 
string"
+HOMEPAGE="https://github.com/quandyfactory/dicttoxml 
https://pypi.org/project/dicttoxml/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+PATCHES=(
+   # https://github.com/quandyfactory/dicttoxml/pull/73/files
+   "${FILESDIR}/${P}-py3.10.patch"
+)



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

2021-09-25 Thread Sam James
commit: 0a23346bfaf22f641ead4258d99e248f7cb41244
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 26 05:00:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 26 05:00:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a23346b

dev-python/dicttoxml: Stabilize 1.7.4-r2 x86, #814692

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

 dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
index 960efd4df9c..d5a2d0fdd11 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 PATCHES=(
# https://github.com/quandyfactory/dicttoxml/pull/73/files



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

2021-09-25 Thread Michał Górny
commit: f1d8151813aa96b8c807ac611387d329c6427e05
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep 25 22:01:05 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep 25 22:01:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1d81518

dev-python/dicttoxml: Remove old

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

 dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
deleted file mode 100644
index 528b6d92c7d..000
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( pypy3 python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=no
-inherit distutils-r1
-
-DESCRIPTION="Converts a Python dictionary or other data type to a valid XML 
string"
-HOMEPAGE="https://github.com/quandyfactory/dicttoxml 
https://pypi.org/project/dicttoxml/;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"



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

2021-09-25 Thread Sam James
commit: 44ff534f663be016f2b51388454bd32c4853f4b3
Author: Sam James  gentoo  org>
AuthorDate: Sat Sep 25 19:54:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Sep 25 19:54:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44ff534f

dev-python/dicttoxml: Stabilize 1.7.4-r2 amd64, #814692

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

 dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
index a6882bd1903..960efd4df9c 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 
 PATCHES=(
# https://github.com/quandyfactory/dicttoxml/pull/73/files



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

2021-08-23 Thread Louis Sautier
commit: 27c3aaec24b9f604673bf84e6cafb7d50d0de8fa
Author: Louis Sautier  gentoo  org>
AuthorDate: Mon Aug 23 22:29:51 2021 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Mon Aug 23 22:44:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27c3aaec

dev-python/dicttoxml: enable py3.10

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

 dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild | 22 
 .../dicttoxml/files/dicttoxml-1.7.4-py3.10.patch   | 58 ++
 2 files changed, 80 insertions(+)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
new file mode 100644
index 000..a6882bd1903
--- /dev/null
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r2.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+DISTUTILS_USE_SETUPTOOLS=no
+
+inherit distutils-r1
+
+DESCRIPTION="Converts a Python dictionary or other data type to a valid XML 
string"
+HOMEPAGE="https://github.com/quandyfactory/dicttoxml 
https://pypi.org/project/dicttoxml/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+PATCHES=(
+   # https://github.com/quandyfactory/dicttoxml/pull/73/files
+   "${FILESDIR}/${P}-py3.10.patch"
+)

diff --git a/dev-python/dicttoxml/files/dicttoxml-1.7.4-py3.10.patch 
b/dev-python/dicttoxml/files/dicttoxml-1.7.4-py3.10.patch
new file mode 100644
index 000..5b3fe172949
--- /dev/null
+++ b/dev-python/dicttoxml/files/dicttoxml-1.7.4-py3.10.patch
@@ -0,0 +1,58 @@
+From 2b7b4522b7255fbc8f1e04304d2e440d333909d5 Mon Sep 17 00:00:00 2001
+From: Kier von Konigslow 
+Date: Sat, 28 Dec 2019 14:08:46 -0500
+Subject: [PATCH] Fix deprecation with collections abc
+
+---
+ dicttoxml.py | 10 +-
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/dicttoxml.py b/dicttoxml.py
+index ae1384a..5d2dd54 100755
+--- a/dicttoxml.py
 b/dicttoxml.py
+@@ -15,7 +15,7 @@
+ version = __version__
+ 
+ from random import randint
+-import collections
++import collections.abc
+ import numbers
+ import logging
+ from xml.dom.minidom import parseString
+@@ -96,7 +96,7 @@ def get_xml_type(val):
+ return 'null'
+ if isinstance(val, dict):
+ return 'dict'
+-if isinstance(val, collections.Iterable):
++if isinstance(val, collections.abc.Iterable):
+ return 'list'
+ return type(val).__name__
+ 
+@@ -188,7 +188,7 @@ def convert(obj, ids, attr_type, item_func, cdata, 
parent='root'):
+ if isinstance(obj, dict):
+ return convert_dict(obj, ids, parent, attr_type, item_func, cdata)
+ 
+-if isinstance(obj, collections.Iterable):
++if isinstance(obj, collections.abc.Iterable):
+ return convert_list(obj, ids, parent, attr_type, item_func, cdata)
+ 
+ raise TypeError('Unsupported data type: %s (%s)' % (obj, 
type(obj).__name__))
+@@ -232,7 +232,7 @@ def convert_dict(obj, ids, parent, attr_type, item_func, 
cdata):
+ )
+ )
+ 
+-elif isinstance(val, collections.Iterable):
++elif isinstance(val, collections.abc.Iterable):
+ if attr_type:
+ attr['type'] = get_xml_type(val)
+ addline('<%s%s>%s' % (
+@@ -295,7 +295,7 @@ def convert_list(items, ids, parent, attr_type, item_func, 
cdata):
+ )
+ )
+ 
+-elif isinstance(item, collections.Iterable):
++elif isinstance(item, collections.abc.Iterable):
+ if not attr_type:
+ addline('<%s %s>%s' % (
+ item_name, make_attrstring(attr), 



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

2021-03-04 Thread Louis Sautier
commit: 2108769574b66fd5b44e238d06db6d2e5ca897f6
Author: Louis Sautier  gentoo  org>
AuthorDate: Thu Mar  4 13:39:25 2021 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Mar  4 14:41:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21087695

dev-python/dicttoxml: add PyPy3 support

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

 dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
index 9b6dbebc525..528b6d92c7d 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( pypy3 python3_{7..9} )
 DISTUTILS_USE_SETUPTOOLS=no
 inherit distutils-r1
 



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

2020-07-05 Thread Michał Górny
commit: 96a86925b35b9f07bde8f70738094062c4988557
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul  5 15:30:39 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul  5 15:39:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a86925

dev-python/dicttoxml: Stabilize 1.7.4-r1 amd64, #730944

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

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

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
index 5544ba09be8..e66ba0e7cee 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
@@ -12,4 +12,4 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"



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

2020-06-14 Thread Michał Górny
commit: 7b9f475cd588d4a7f2d0a28a0cff7268c79c0332
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 14 10:06:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 14 11:09:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b9f475c

dev-python/dicttoxml: Port to py3.9

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

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

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
index cd25c58130e..5544ba09be8 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_USE_SETUPTOOLS=no
 inherit distutils-r1
 



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

2020-04-29 Thread Patrick McLean
commit: dab48188eb2a77ec0ba75b65620a4e53c3ba81aa
Author: Patrick McLean  sony  com>
AuthorDate: Wed Apr 29 17:32:47 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Apr 29 17:33:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dab48188

dev-python/dicttoxml-1.7.4-r1: revbump, modernize a bit, py38

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Patrick McLean  gentoo.org>

 dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
new file mode 100644
index 000..cd25c58130e
--- /dev/null
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4-r1.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8} )
+DISTUTILS_USE_SETUPTOOLS=no
+inherit distutils-r1
+
+DESCRIPTION="Converts a Python dictionary or other data type to a valid XML 
string"
+HOMEPAGE="https://github.com/quandyfactory/dicttoxml 
https://pypi.org/project/dicttoxml/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"



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

2020-02-04 Thread Michał Górny
commit: 5f6b026f12b9f5ac88177daa916880d3859818ae
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  5 05:26:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  5 05:50:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6b026f

dev-python/dicttoxml: Remove py2

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

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

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
index 78d47ad9bf8..de6fc339e26 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7} )
 
 inherit distutils-r1
 



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

2017-05-22 Thread Manuel Rüger
commit: 08a4b5704d2130ae26cbe2fa7ad222168f6e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon May 22 15:13:29 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon May 22 15:13:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08a4b333

dev-python/dicttoxml: Add python3_6

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/dicttoxml/dicttoxml-1.7.4.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
index dce303eaff9..ea8acad65ff 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit distutils-r1
 
-DESCRIPTION="Converts a Python dictionary or other  ata type to a valid XML 
string"
+DESCRIPTION="Converts a Python dictionary or other data type to a valid XML 
string"
 HOMEPAGE="https://github.com/quandyfactory/dicttoxml 
https://pypi.python.org/pypi/dicttoxml/;
 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 



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

2016-08-21 Thread Tim Harder
commit: 71cc112830d0d63cf2fc99517246dfd3317433c2
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Aug 21 18:28:18 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Aug 21 18:29:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71cc1128

dev-python/dicttoxml: re-add python3_3 support

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

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
index 5de427b..e0099ff 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit distutils-r1
 



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

2016-08-21 Thread Tim Harder
commit: 9ff9963eb984f247f1b83e1d2da620f3d9ec92f9
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Aug 21 17:54:53 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Aug 21 17:54:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ff9963e

dev-python/dicttoxml: add pypi site to HOMEPAGE and bump to EAPI 6

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

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
index 2d49d88..316a1a9 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
@@ -2,13 +2,13 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 
 inherit distutils-r1
 
 DESCRIPTION="Converts a Python dictionary or other  ata type to a valid XML 
string"
-HOMEPAGE="https://github.com/quandyfactory/dicttoxml;
+HOMEPAGE="https://github.com/quandyfactory/dicttoxml 
https://pypi.python.org/pypi/dicttoxml/;
 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"



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

2016-08-21 Thread Tim Harder
commit: 2fcd294a2db457f524779f1a52a9b8daeaba4a9c
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Aug 21 17:55:53 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Aug 21 17:55:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fcd294a

dev-python/dicttoxml: remove old

 dev-python/dicttoxml/Manifest   |  2 --
 dev-python/dicttoxml/dicttoxml-1.5.6.ebuild | 16 
 dev-python/dicttoxml/dicttoxml-1.6.6.ebuild | 16 
 3 files changed, 34 deletions(-)

diff --git a/dev-python/dicttoxml/Manifest b/dev-python/dicttoxml/Manifest
index f8fc5be..9d28374 100644
--- a/dev-python/dicttoxml/Manifest
+++ b/dev-python/dicttoxml/Manifest
@@ -1,3 +1 @@
-DIST dicttoxml-1.5.6.tar.gz 14627 SHA256 
7b7375b1721cb64e5c69927335bf8dc8e0c83ebe9ed120526fe7043f0b70c52a SHA512 
53f54c929afae4f84b532e96ab9876b19d24eb4ff2e6347f689257e582bc155e3552e1482118ed3f38f62d70b4f463441268d89b5c14f43ef16a2287c25aeef1
 WHIRLPOOL 
f2ba052b486f84cf9a1c55812ebc94cf84c1d11f1ad26c16836349e0bd36747fb1bcbf8884cc253e38f32c7af62f9590248a464981a1f2e2219be47b0d8908a4
-DIST dicttoxml-1.6.6.tar.gz 15790 SHA256 
8229dcbadbe8a417b5e221b0bd56dff8a8ffd250951e6e95d51d5c5e2a77cc68 SHA512 
d2bf83f107b5d81a4fd04e9a5beb162db65808f7bb97d15de5d34beb8a4a2f68fce9e4c46f9c0c56d56c4fcce48181b3175a821834e4fb18d1ee4bc1ac952c8b
 WHIRLPOOL 
3f9f9e96b7cc6185c1e170fab54088686765a04c9fab52bcbcf117716cfc7f3795dee48d1b6e92619924aed8c19261071030fe7b13349a84bd25c3acb0fd5304
 DIST dicttoxml-1.7.4.tar.gz 18190 SHA256 
ea44cc4ec6c0f85098c57a431a1ee891b3549347b07b7414c8a24611ecf37e45 SHA512 
91abcf2b9b248717618e9fc1c8694e881b9deaa16438dd4674f94a22b4aabfdab3b13f95c3d44a60577d49eca82fb268f59b33d1312cf5388bdaf949a2865cbf
 WHIRLPOOL 
a07a6115b76e56184ba3c4dae212638eb30e6e0ea7cd5135b991b567477a06349d06a39a9ea35b4bf838b411977f8ea6cca8fba6fc24f666ade1eda48b345e7d

diff --git a/dev-python/dicttoxml/dicttoxml-1.5.6.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.5.6.ebuild
deleted file mode 100644
index 4bbf598..000
--- a/dev-python/dicttoxml/dicttoxml-1.5.6.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=(python{2_7,3_3,3_4})
-
-inherit distutils-r1
-
-DESCRIPTION="Converts a Python dictionary or other native data type into a 
valid XML string"
-HOMEPAGE="https://github.com/quandyfactory/dicttoxml;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"

diff --git a/dev-python/dicttoxml/dicttoxml-1.6.6.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.6.6.ebuild
deleted file mode 100644
index 4748994..000
--- a/dev-python/dicttoxml/dicttoxml-1.6.6.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Converts a Python dictionary or other  ata type to a valid XML 
string"
-HOMEPAGE="https://github.com/quandyfactory/dicttoxml;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"



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

2016-08-21 Thread Tim Harder
commit: 304d7f4ba133de3affcb10a61b696da79428bfae
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Aug 21 17:55:27 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sun Aug 21 17:55:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=304d7f4b

dev-python/dicttoxml: stabilize 1.7.4

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

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
index 316a1a9..5de427b 100644
--- a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
@@ -13,4 +13,4 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"



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

2016-07-18 Thread Patrick Lauer
commit: e391bf957d180a537e0c78fc6d21b9daf9e160ed
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Jul 18 09:31:53 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Jul 18 09:32:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e391bf95

dev-python/dicttoxml: Bump

Package-Manager: portage-2.3.0

 dev-python/dicttoxml/Manifest   |  1 +
 dev-python/dicttoxml/dicttoxml-1.7.4.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/dev-python/dicttoxml/Manifest b/dev-python/dicttoxml/Manifest
index 8defe75..f8fc5be 100644
--- a/dev-python/dicttoxml/Manifest
+++ b/dev-python/dicttoxml/Manifest
@@ -1,2 +1,3 @@
 DIST dicttoxml-1.5.6.tar.gz 14627 SHA256 
7b7375b1721cb64e5c69927335bf8dc8e0c83ebe9ed120526fe7043f0b70c52a SHA512 
53f54c929afae4f84b532e96ab9876b19d24eb4ff2e6347f689257e582bc155e3552e1482118ed3f38f62d70b4f463441268d89b5c14f43ef16a2287c25aeef1
 WHIRLPOOL 
f2ba052b486f84cf9a1c55812ebc94cf84c1d11f1ad26c16836349e0bd36747fb1bcbf8884cc253e38f32c7af62f9590248a464981a1f2e2219be47b0d8908a4
 DIST dicttoxml-1.6.6.tar.gz 15790 SHA256 
8229dcbadbe8a417b5e221b0bd56dff8a8ffd250951e6e95d51d5c5e2a77cc68 SHA512 
d2bf83f107b5d81a4fd04e9a5beb162db65808f7bb97d15de5d34beb8a4a2f68fce9e4c46f9c0c56d56c4fcce48181b3175a821834e4fb18d1ee4bc1ac952c8b
 WHIRLPOOL 
3f9f9e96b7cc6185c1e170fab54088686765a04c9fab52bcbcf117716cfc7f3795dee48d1b6e92619924aed8c19261071030fe7b13349a84bd25c3acb0fd5304
+DIST dicttoxml-1.7.4.tar.gz 18190 SHA256 
ea44cc4ec6c0f85098c57a431a1ee891b3549347b07b7414c8a24611ecf37e45 SHA512 
91abcf2b9b248717618e9fc1c8694e881b9deaa16438dd4674f94a22b4aabfdab3b13f95c3d44a60577d49eca82fb268f59b33d1312cf5388bdaf949a2865cbf
 WHIRLPOOL 
a07a6115b76e56184ba3c4dae212638eb30e6e0ea7cd5135b991b567477a06349d06a39a9ea35b4bf838b411977f8ea6cca8fba6fc24f666ade1eda48b345e7d

diff --git a/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild 
b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
new file mode 100644
index 000..2d49d88
--- /dev/null
+++ b/dev-python/dicttoxml/dicttoxml-1.7.4.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Converts a Python dictionary or other  ata type to a valid XML 
string"
+HOMEPAGE="https://github.com/quandyfactory/dicttoxml;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"