[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2024-05-13 Thread Julien Roy
commit: 80682dd4e94d6ccf8a18268335362fcf8ab02650
Author: Julien Roy  jroy  ca>
AuthorDate: Mon May 13 20:46:49 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Mon May 13 22:18:16 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=80682dd4

dev-python/cx-oracle: treeclean

Closes: https://bugs.gentoo.org/921792
Signed-off-by: Julien Roy  jroy.ca>

 dev-python/cx-oracle/Manifest  |  1 -
 dev-python/cx-oracle/cx-oracle-8.3.0-r1.ebuild | 37 --
 dev-python/cx-oracle/metadata.xml  | 15 ---
 3 files changed, 53 deletions(-)

diff --git a/dev-python/cx-oracle/Manifest b/dev-python/cx-oracle/Manifest
deleted file mode 100644
index 8fc09e49f9..00
--- a/dev-python/cx-oracle/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST cx_Oracle-8.3.0.tar.gz 363886 BLAKE2B 
a58b9cd201e8bd6038a0f7e50031c76197c1739ac2f022a7f91bd77f44032bc87d551c88e8b54c38dcb6b1fcd565e2220d4115ddd195c5f8b8b390590076fe57
 SHA512 
9a2f50b929802311271e5270f118c96968886c6fd3c8677d2e08949d61e9d4d26846bc9e44c674e0bd12a7f8b57bcced9b979f3622a37656e0969ad8ea4e7f70

diff --git a/dev-python/cx-oracle/cx-oracle-8.3.0-r1.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.3.0-r1.ebuild
deleted file mode 100644
index 8e6594f85d..00
--- a/dev-python/cx-oracle/cx-oracle-8.3.0-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-DISTUTILS_USE_PEP517=setuptools
-DISTUTILS_EXT=1
-PYTHON_COMPAT=( python3_{10..12} )
-PYPI_PN="cx_Oracle"
-PYPI_NO_NORMALIZE=1
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python interface to Oracle"
-HOMEPAGE="
-   https://oracle.github.io/python-cx_Oracle/
-   https://pypi.org/project/cx-Oracle/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="examples"
-
-# Tests require local instance of Oracle DB
-RESTRICT="test"
-
-DEPEND="dev-db/oracle-instantclient"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   # do not install LICENSE and README to /usr/
-   sed -i -e '/data_files/d' setup.py || die
-
-   distutils-r1_src_prepare
-}

diff --git a/dev-python/cx-oracle/metadata.xml 
b/dev-python/cx-oracle/metadata.xml
deleted file mode 100644
index 1bd9e6aad7..00
--- a/dev-python/cx-oracle/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   https://cx-oracle.readthedocs.io
-   
https://cx-oracle.readthedocs.io/en/latest/release_notes.html#releasenotes
-   
https://github.com/oracle/python-cx_Oracle/issues
-   oracle/python-cx_Oracle
-   cx-Oracle
-   
-   
-   rozstrojenie.ja...@gmail.com
-   Michał Gasewicz
-   
-



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2024-04-13 Thread Julien Roy
commit: 82f4a1240be9d391e064d0b0d2f19732872ea24a
Author: Julien Roy  jroy  ca>
AuthorDate: Sat Apr 13 16:57:25 2024 +
Commit: Julien Roy  jroy  ca>
CommitDate: Sat Apr 13 17:09:17 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=82f4a124

dev-python/cx-oracle: enable py3.12

Closes: https://bugs.gentoo.org/897412
Signed-off-by: Julien Roy  jroy.ca>b

 ...acle-8.3.0.ebuild => cx-oracle-8.3.0-r1.ebuild} | 23 ++
 1 file changed, 6 insertions(+), 17 deletions(-)

diff --git a/dev-python/cx-oracle/cx-oracle-8.3.0.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.3.0-r1.ebuild
similarity index 65%
rename from dev-python/cx-oracle/cx-oracle-8.3.0.ebuild
rename to dev-python/cx-oracle/cx-oracle-8.3.0-r1.ebuild
index 79c2596804..8e6594f85d 100644
--- a/dev-python/cx-oracle/cx-oracle-8.3.0.ebuild
+++ b/dev-python/cx-oracle/cx-oracle-8.3.0-r1.ebuild
@@ -1,9 +1,11 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="8"
 
-PYTHON_COMPAT=( python3_10 )
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_EXT=1
+PYTHON_COMPAT=( python3_{10..12} )
 PYPI_PN="cx_Oracle"
 PYPI_NO_NORMALIZE=1
 
@@ -27,22 +29,9 @@ RESTRICT="test"
 DEPEND="dev-db/oracle-instantclient"
 RDEPEND="${DEPEND}"
 
-python_prepare_all() {
+src_prepare() {
# do not install LICENSE and README to /usr/
sed -i -e '/data_files/d' setup.py || die
 
-   distutils-r1_python_prepare_all
-}
-
-pkg_postinst() {
-   return
-   # no python_mod_optimize
-}
-
-src_install() {
-   distutils-r1_src_install
-   if use examples; then
-   docinto examples
-   dodoc -r samples/. || die
-   fi
+   distutils-r1_src_prepare
 }



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2022-06-28 Thread Michal Gasewicz
commit: b6f7729de682c1ace7b4606379011907b24901f0
Author: Michał Gasewicz  gmail  com>
AuthorDate: Tue Jun 28 09:56:54 2022 +
Commit: Michal Gasewicz  gmail  com>
CommitDate: Tue Jun 28 09:56:54 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b6f7729d

dev-python/cx-oracle: add 8.3.0, drop 8.2.1

Closes: https://bugs.gentoo.org/848156
Signed-off-by: Michał Gasewicz  gmail.com>

 dev-python/cx-oracle/Manifest   | 2 +-
 dev-python/cx-oracle/{cx-oracle-8.2.1.ebuild => cx-oracle-8.3.0.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/cx-oracle/Manifest b/dev-python/cx-oracle/Manifest
index 6c7e35094..8fc09e49f 100644
--- a/dev-python/cx-oracle/Manifest
+++ b/dev-python/cx-oracle/Manifest
@@ -1 +1 @@
-DIST cx_Oracle-8.2.1.tar.gz 359269 BLAKE2B 
ad972b6607a7e77794b5642bce49f494715e32e989fd7c12c3a64ea556e6967bda02f0d937e42e1dd2dae931f75c33e63fa8c13a9dcd439e85b751720773c3d1
 SHA512 
879f25323ea037499c773be860d7c9a4f9bc675f7107a79a1ac027db45f6a4d71b47579b656fba267b85dacb76316f012de238ffda66ea33395ce5989b982116
+DIST cx_Oracle-8.3.0.tar.gz 363886 BLAKE2B 
a58b9cd201e8bd6038a0f7e50031c76197c1739ac2f022a7f91bd77f44032bc87d551c88e8b54c38dcb6b1fcd565e2220d4115ddd195c5f8b8b390590076fe57
 SHA512 
9a2f50b929802311271e5270f118c96968886c6fd3c8677d2e08949d61e9d4d26846bc9e44c674e0bd12a7f8b57bcced9b979f3622a37656e0969ad8ea4e7f70

diff --git a/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.3.0.ebuild
similarity index 96%
rename from dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
rename to dev-python/cx-oracle/cx-oracle-8.3.0.ebuild
index 216938ef4..e7ca2440b 100644
--- a/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
+++ b/dev-python/cx-oracle/cx-oracle-8.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="8"
 
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8,9,10} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2021-07-19 Thread Michal Gasewicz
commit: 7e602b4a81499d20ab9594a42eadfae3675f6990
Author: Michał Gasewicz  gmail  com>
AuthorDate: Mon Jul 19 14:00:09 2021 +
Commit: Michal Gasewicz  gmail  com>
CommitDate: Mon Jul 19 14:07:48 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7e602b4a

dev-python/cx-oracle: fix license and metadata

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Michał Gasewicz  gmail.com>

 dev-python/cx-oracle/cx-oracle-8.2.1.ebuild | 4 ++--
 dev-python/cx-oracle/metadata.xml   | 3 ---
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
index 26471d887..216938ef4 100644
--- a/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
+++ b/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="8"
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8,9} )
 
 inherit distutils-r1
 
@@ -17,7 +17,7 @@ HOMEPAGE="
 "
 SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
-LICENSE="Computronix"
+LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
 

diff --git a/dev-python/cx-oracle/metadata.xml 
b/dev-python/cx-oracle/metadata.xml
index e2266eaab..4f0a4f1df 100644
--- a/dev-python/cx-oracle/metadata.xml
+++ b/dev-python/cx-oracle/metadata.xml
@@ -11,7 +11,4 @@
rozstrojenie.ja...@gmail.com
Michał Gasewicz

-   
-   Install examples, usually source 
code
-   
 



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2021-07-16 Thread Michal Gasewicz
commit: ec2d1033053a7689480eba97c0c93cf7950fb038
Author: Michał Gasewicz  gmail  com>
AuthorDate: Fri Jul 16 13:20:38 2021 +
Commit: Michal Gasewicz  gmail  com>
CommitDate: Fri Jul 16 13:20:38 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ec2d1033

dev-python/cx-oracle: version bump, fix QA warnings

Closes: https://bugs.gentoo.org/800127
Closes: https://bugs.gentoo.org/800129
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Michał Gasewicz  gmail.com>

 dev-python/cx-oracle/Manifest  |  2 +-
 .../{cx-oracle-8.1.0.ebuild => cx-oracle-8.2.1.ebuild} | 14 --
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/dev-python/cx-oracle/Manifest b/dev-python/cx-oracle/Manifest
index 3904e8d00..6c7e35094 100644
--- a/dev-python/cx-oracle/Manifest
+++ b/dev-python/cx-oracle/Manifest
@@ -1 +1 @@
-DIST cx_Oracle-8.1.0.tar.gz 343864 BLAKE2B 
77d5adfe6fcc599416ba9971ae88fe7b2318440a92beb976639dfcfe4d86b1cf4c97190dccfb5d23445fce82073b276aa77c4c73d52815842f8b5aaa8c88fc62
 SHA512 
21dbaec1facfa38c82cd8bba788953ada098bfcdfddd29c4c6278d3c757b5b64b547a2e8e39fc998eec826f8447f07d6d48649c8dc8edc7c7244e9113d4345cc
+DIST cx_Oracle-8.2.1.tar.gz 359269 BLAKE2B 
ad972b6607a7e77794b5642bce49f494715e32e989fd7c12c3a64ea556e6967bda02f0d937e42e1dd2dae931f75c33e63fa8c13a9dcd439e85b751720773c3d1
 SHA512 
879f25323ea037499c773be860d7c9a4f9bc675f7107a79a1ac027db45f6a4d71b47579b656fba267b85dacb76316f012de238ffda66ea33395ce5989b982116

diff --git a/dev-python/cx-oracle/cx-oracle-8.1.0.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
similarity index 72%
rename from dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
rename to dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
index c17333427..26471d887 100644
--- a/dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
+++ b/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
+EAPI="8"
 
 PYTHON_COMPAT=( python3_{7,8,9} )
 
@@ -23,11 +23,21 @@ KEYWORDS="~amd64"
 
 IUSE="examples"
 
+# Tests require local instance of Oracle DB
+RESTRICT="test"
+
 DEPEND="dev-db/oracle-instantclient"
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${MY_P}
 
+python_prepare_all() {
+   # do not install LICENSE and README to /usr/
+   sed -i -e '/data_files/d' setup.py || die
+
+   distutils-r1_python_prepare_all
+}
+
 pkg_postinst() {
return
# no python_mod_optimize



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2021-07-16 Thread Michal Gasewicz
commit: 035de6cb5ebd9ccbdbe82272e2e1f03b93afdf5d
Author: Michał Gasewicz  gmail  com>
AuthorDate: Fri Jul 16 13:16:06 2021 +
Commit: Michal Gasewicz  gmail  com>
CommitDate: Fri Jul 16 13:16:06 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=035de6cb

Revert "dev-python/cx-oracle:"

This reverts commit b00b1a50c3fca0a00b6371aa0f0385a9a3fde5da.

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Michał Gasewicz  gmail.com>

 dev-python/cx-oracle/Manifest|  2 +-
 .../{cx-oracle-8.2.1.ebuild => cx-oracle-8.1.0.ebuild}   | 12 +---
 2 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/dev-python/cx-oracle/Manifest b/dev-python/cx-oracle/Manifest
index 6c7e35094..3904e8d00 100644
--- a/dev-python/cx-oracle/Manifest
+++ b/dev-python/cx-oracle/Manifest
@@ -1 +1 @@
-DIST cx_Oracle-8.2.1.tar.gz 359269 BLAKE2B 
ad972b6607a7e77794b5642bce49f494715e32e989fd7c12c3a64ea556e6967bda02f0d937e42e1dd2dae931f75c33e63fa8c13a9dcd439e85b751720773c3d1
 SHA512 
879f25323ea037499c773be860d7c9a4f9bc675f7107a79a1ac027db45f6a4d71b47579b656fba267b85dacb76316f012de238ffda66ea33395ce5989b982116
+DIST cx_Oracle-8.1.0.tar.gz 343864 BLAKE2B 
77d5adfe6fcc599416ba9971ae88fe7b2318440a92beb976639dfcfe4d86b1cf4c97190dccfb5d23445fce82073b276aa77c4c73d52815842f8b5aaa8c88fc62
 SHA512 
21dbaec1facfa38c82cd8bba788953ada098bfcdfddd29c4c6278d3c757b5b64b547a2e8e39fc998eec826f8447f07d6d48649c8dc8edc7c7244e9113d4345cc

diff --git a/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
similarity index 73%
rename from dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
rename to dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
index dd28d13b5..c17333427 100644
--- a/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
+++ b/dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -23,21 +23,11 @@ KEYWORDS="~amd64"
 
 IUSE="examples"
 
-# Tests require local instance of Oracle DB
-RESTRICT="test"
-
 DEPEND="dev-db/oracle-instantclient"
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${MY_P}
 
-python_prepare_all() {
-   # do not install LICENSE and README to /usr/
-   sed -i -e '/data_files/d' setup.py || die
-
-   distutils-r1_python_prepare_all
-}
-
 pkg_postinst() {
return
# no python_mod_optimize



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2021-07-16 Thread Michal Gasewicz
commit: b00b1a50c3fca0a00b6371aa0f0385a9a3fde5da
Author: Michał Gasewicz  gmail  com>
AuthorDate: Fri Jul 16 11:56:01 2021 +
Commit: Michal Gasewicz  gmail  com>
CommitDate: Fri Jul 16 11:56:01 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b00b1a50

dev-python/cx-oracle:

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Michał Gasewicz  gmail.com>

 dev-python/cx-oracle/Manifest|  2 +-
 .../{cx-oracle-8.1.0.ebuild => cx-oracle-8.2.1.ebuild}   | 12 +++-
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/dev-python/cx-oracle/Manifest b/dev-python/cx-oracle/Manifest
index 3904e8d00..6c7e35094 100644
--- a/dev-python/cx-oracle/Manifest
+++ b/dev-python/cx-oracle/Manifest
@@ -1 +1 @@
-DIST cx_Oracle-8.1.0.tar.gz 343864 BLAKE2B 
77d5adfe6fcc599416ba9971ae88fe7b2318440a92beb976639dfcfe4d86b1cf4c97190dccfb5d23445fce82073b276aa77c4c73d52815842f8b5aaa8c88fc62
 SHA512 
21dbaec1facfa38c82cd8bba788953ada098bfcdfddd29c4c6278d3c757b5b64b547a2e8e39fc998eec826f8447f07d6d48649c8dc8edc7c7244e9113d4345cc
+DIST cx_Oracle-8.2.1.tar.gz 359269 BLAKE2B 
ad972b6607a7e77794b5642bce49f494715e32e989fd7c12c3a64ea556e6967bda02f0d937e42e1dd2dae931f75c33e63fa8c13a9dcd439e85b751720773c3d1
 SHA512 
879f25323ea037499c773be860d7c9a4f9bc675f7107a79a1ac027db45f6a4d71b47579b656fba267b85dacb76316f012de238ffda66ea33395ce5989b982116

diff --git a/dev-python/cx-oracle/cx-oracle-8.1.0.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
similarity index 73%
rename from dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
rename to dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
index c17333427..dd28d13b5 100644
--- a/dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
+++ b/dev-python/cx-oracle/cx-oracle-8.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -23,11 +23,21 @@ KEYWORDS="~amd64"
 
 IUSE="examples"
 
+# Tests require local instance of Oracle DB
+RESTRICT="test"
+
 DEPEND="dev-db/oracle-instantclient"
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${MY_P}
 
+python_prepare_all() {
+   # do not install LICENSE and README to /usr/
+   sed -i -e '/data_files/d' setup.py || die
+
+   distutils-r1_python_prepare_all
+}
+
 pkg_postinst() {
return
# no python_mod_optimize



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2021-03-28 Thread Andrew Ammerlaan
commit: b0f7034896e51c6b86308c47c60d1d46497e433c
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Sun Mar 28 09:41:35 2021 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Sun Mar 28 09:41:35 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b0f70348

dev-python/cx-oracle: remove RedundantLongDescription

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/cx-oracle/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/cx-oracle/metadata.xml 
b/dev-python/cx-oracle/metadata.xml
index 2593817a3..e2266eaab 100644
--- a/dev-python/cx-oracle/metadata.xml
+++ b/dev-python/cx-oracle/metadata.xml
@@ -11,7 +11,6 @@
rozstrojenie.ja...@gmail.com
Michał Gasewicz

-   cx_Oracle is a Python extension module that enables 
access to Oracle Database.

Install examples, usually source 
code




[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2020-12-18 Thread Andrew Ammerlaan
commit: 9e80807fe2b96a3538d3bd860c7712529822a667
Author: Andrew Ammerlaan  riseup  net>
AuthorDate: Fri Dec 18 15:49:42 2020 +
Commit: Andrew Ammerlaan  riseup  net>
CommitDate: Fri Dec 18 15:49:42 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9e80807f

dev-python/cx-oracle: version bump 8.1.0, add py3.8 and py3.9

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan  riseup.net>

 dev-python/cx-oracle/Manifest   | 2 +-
 .../cx-oracle/{cx-oracle-8.0.1.ebuild => cx-oracle-8.1.0.ebuild}| 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/cx-oracle/Manifest b/dev-python/cx-oracle/Manifest
index ac617c7f..3904e8d0 100644
--- a/dev-python/cx-oracle/Manifest
+++ b/dev-python/cx-oracle/Manifest
@@ -1 +1 @@
-DIST cx_Oracle-8.0.1.tar.gz 325704 BLAKE2B 
523296c4746d86307b141f8bb2f3b5611ff6a9ffae88183d0ac5c477cc6aa298a5f4f16bffacc6fd175c47f7fdf2f20c3a4b8959ae8cc774bf9c31fe5282ec5d
 SHA512 
57c907f6ee812f6a58af0437acba927c2d9b3c9c06592d02c22fe4766d063807595a0ececa941ccb24d35f74fe1a53d28a7ba6c5acbe35ea997ad413a8fcd2e2
+DIST cx_Oracle-8.1.0.tar.gz 343864 BLAKE2B 
77d5adfe6fcc599416ba9971ae88fe7b2318440a92beb976639dfcfe4d86b1cf4c97190dccfb5d23445fce82073b276aa77c4c73d52815842f8b5aaa8c88fc62
 SHA512 
21dbaec1facfa38c82cd8bba788953ada098bfcdfddd29c4c6278d3c757b5b64b547a2e8e39fc998eec826f8447f07d6d48649c8dc8edc7c7244e9113d4345cc

diff --git a/dev-python/cx-oracle/cx-oracle-8.0.1.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
similarity index 92%
rename from dev-python/cx-oracle/cx-oracle-8.0.1.ebuild
rename to dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
index 7426529f..c1733342 100644
--- a/dev-python/cx-oracle/cx-oracle-8.0.1.ebuild
+++ b/dev-python/cx-oracle/cx-oracle-8.1.0.ebuild
@@ -3,12 +3,13 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_{5,6,7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1
 
 MY_PN="cx_Oracle"
 MY_P=${MY_PN}-${PV}
+
 DESCRIPTION="Python interface to Oracle"
 HOMEPAGE="
https://oracle.github.io/python-cx_Oracle/
@@ -19,6 +20,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 LICENSE="Computronix"
 SLOT="0"
 KEYWORDS="~amd64"
+
 IUSE="examples"
 
 DEPEND="dev-db/oracle-instantclient"
@@ -26,8 +28,6 @@ RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${MY_P}
 
-DOCS=( README.txt )
-
 pkg_postinst() {
return
# no python_mod_optimize



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/cx-oracle/

2020-12-15 Thread Michal Gasewicz
commit: bba38927d6208179be5737c7a00649310160e81f
Author: Michał Gasewicz  gmail  com>
AuthorDate: Tue Dec 15 18:29:55 2020 +
Commit: Michal Gasewicz  gmail  com>
CommitDate: Tue Dec 15 18:38:24 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bba38927

dev-python/cx-oracle: new package

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Michał Gasewicz  gmail.com>

 dev-python/cx-oracle/Manifest   |  1 +
 dev-python/cx-oracle/cx-oracle-8.0.1.ebuild | 42 +
 dev-python/cx-oracle/metadata.xml   | 18 +
 3 files changed, 61 insertions(+)

diff --git a/dev-python/cx-oracle/Manifest b/dev-python/cx-oracle/Manifest
new file mode 100644
index ..ac617c7f
--- /dev/null
+++ b/dev-python/cx-oracle/Manifest
@@ -0,0 +1 @@
+DIST cx_Oracle-8.0.1.tar.gz 325704 BLAKE2B 
523296c4746d86307b141f8bb2f3b5611ff6a9ffae88183d0ac5c477cc6aa298a5f4f16bffacc6fd175c47f7fdf2f20c3a4b8959ae8cc774bf9c31fe5282ec5d
 SHA512 
57c907f6ee812f6a58af0437acba927c2d9b3c9c06592d02c22fe4766d063807595a0ececa941ccb24d35f74fe1a53d28a7ba6c5acbe35ea997ad413a8fcd2e2

diff --git a/dev-python/cx-oracle/cx-oracle-8.0.1.ebuild 
b/dev-python/cx-oracle/cx-oracle-8.0.1.ebuild
new file mode 100644
index ..7426529f
--- /dev/null
+++ b/dev-python/cx-oracle/cx-oracle-8.0.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{5,6,7,8} )
+
+inherit distutils-r1
+
+MY_PN="cx_Oracle"
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="Python interface to Oracle"
+HOMEPAGE="
+   https://oracle.github.io/python-cx_Oracle/
+   https://pypi.org/project/cx-Oracle/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="Computronix"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples"
+
+DEPEND="dev-db/oracle-instantclient"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/${MY_P}
+
+DOCS=( README.txt )
+
+pkg_postinst() {
+   return
+   # no python_mod_optimize
+}
+
+src_install() {
+   distutils-r1_src_install
+   if use examples; then
+   docinto examples
+   dodoc -r samples/. || die
+   fi
+}

diff --git a/dev-python/cx-oracle/metadata.xml 
b/dev-python/cx-oracle/metadata.xml
new file mode 100644
index ..2593817a
--- /dev/null
+++ b/dev-python/cx-oracle/metadata.xml
@@ -0,0 +1,18 @@
+
+http://www.gentoo.org/dtd/metadata.dtd'>
+
+   
+   https://cx-oracle.readthedocs.io
+   
https://cx-oracle.readthedocs.io/en/latest/release_notes.html#releasenotes
+   
https://github.com/oracle/python-cx_Oracle/issues
+   oracle/python-cx_Oracle
+   
+   
+   rozstrojenie.ja...@gmail.com
+   Michał Gasewicz
+   
+   cx_Oracle is a Python extension module that enables 
access to Oracle Database.
+   
+   Install examples, usually source 
code
+   
+