Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f9fdde3a5 |
6 changed files with 249 additions and 1 deletions
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/0.2.0.tar.gz
|
||||
/0.2.1.tar.gz
|
||||
/0.2.3.tar.gz
|
||||
/v0.3.0.tar.gz
|
||||
/0.3.4.tar.gz
|
||||
/v0.3.5.tar.gz
|
||||
/0.3.6.tar.gz
|
||||
/0.4.5.tar.gz
|
||||
/0.4.6.tar.gz
|
||||
/0.5.0.tar.gz
|
||||
/0.5.1.tar.gz
|
||||
/0.5.4.tar.gz
|
||||
/0.5.5.tar.gz
|
||||
/0.6.14.tar.gz
|
||||
/0.7.3.tar.gz
|
||||
/0.7.4.tar.gz
|
||||
/0.8.2.tar.gz
|
||||
|
|
@ -1 +0,0 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
SHA512 (0.8.2.tar.gz) = dc4a633033c425d08c3dcfce036affe232ef210ae22f8a8e8582fd525d8b8e46f9b3c0dc19bef1972710964609f73f92aee2d5feb1c4d06d577796eaafd948ef
|
||||
12
vertica-python-0.5.0-crypt_windows.patch
Normal file
12
vertica-python-0.5.0-crypt_windows.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff --git a/vertica_python/vertica/messages/frontend_messages/crypt_windows.py b/vertica_python/vertica/messages/frontend_messages/crypt_windows.py
|
||||
index 3a8276d..faa558f 100755
|
||||
--- a/vertica_python/vertica/messages/frontend_messages/crypt_windows.py
|
||||
+++ b/vertica_python/vertica/messages/frontend_messages/crypt_windows.py
|
||||
@@ -1,5 +1,3 @@
|
||||
-#!/usr/bin/env python
|
||||
-
|
||||
# Initial permutation
|
||||
IP = (
|
||||
58, 50, 42, 34, 26, 18, 10, 2,
|
||||
--
|
||||
2.4.3
|
||||
16
vertica-python-0.7.3-dateutil15.patch
Normal file
16
vertica-python-0.7.3-dateutil15.patch
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
diff -ru vertica-python-0.7.3.orig/vertica_python/vertica/column.py vertica-python-0.7.3/vertica_python/vertica/column.py
|
||||
--- vertica-python-0.7.3.orig/vertica_python/vertica/column.py 2017-06-18 22:10:16.000000000 +0200
|
||||
+++ vertica-python-0.7.3/vertica_python/vertica/column.py 2017-09-25 09:31:01.837062159 +0200
|
||||
@@ -5,6 +5,12 @@
|
||||
from datetime import date, datetime
|
||||
from decimal import Decimal
|
||||
|
||||
+from pkg_resources import require,VersionConflict
|
||||
+try:
|
||||
+ require("python_dateutil>=1.5")
|
||||
+except VersionConflict:
|
||||
+ pass
|
||||
+
|
||||
import pytz
|
||||
# noinspection PyCompatibility,PyUnresolvedReferences
|
||||
from builtins import str
|
||||
203
vertica-python.spec
Normal file
203
vertica-python.spec
Normal file
|
|
@ -0,0 +1,203 @@
|
|||
%if 0%{?fedora} || 0%{?rhel} >= 7
|
||||
%global with_python3 1
|
||||
%endif
|
||||
|
||||
%{!?__python2: %global __python2 /usr/bin/python2}
|
||||
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||
%{!?py2_build: %global py2_build %{expand: CFLAGS="%{optflags}" %{__python2} setup.py %{?py_setup_args} build --executable="%{__python2} -s"}}
|
||||
%{!?py2_install: %global py2_install %{expand: CFLAGS="%{optflags}" %{__python2} setup.py %{?py_setup_args} install -O1 --skip-build --root $RPM_BUILD_ROOT}}
|
||||
|
||||
Name: vertica-python
|
||||
Version: 0.8.2
|
||||
Release: 1%{?dist}
|
||||
Summary: A native Python adapter for the Vertica database
|
||||
|
||||
Group: Development/Languages
|
||||
License: MIT
|
||||
URL: https://github.com/uber/vertica-python
|
||||
Source0: https://github.com/uber/vertica-python/archive/%{version}.tar.gz
|
||||
# EPEL 6 patch
|
||||
Patch0: vertica-python-0.7.3-dateutil15.patch
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
|
||||
|
||||
|
||||
%global _description\
|
||||
vertica-python is a native Python adapter for the Vertica\
|
||||
(http://www.vertica.com) database.\
|
||||
|
||||
|
||||
%description %_description
|
||||
|
||||
%package -n python2-vertica
|
||||
Summary: %summary
|
||||
%if 0%{?rhel} && 0%{?rhel} <= 6
|
||||
Requires: python-dateutil15
|
||||
Requires: python-setuptools
|
||||
%else
|
||||
Requires: python2-dateutil >= 1.5
|
||||
%endif
|
||||
Requires: python2-pytz
|
||||
Requires: python2-psycopg2
|
||||
Requires: python2-future
|
||||
%{?python_provide:%python_provide python2-vertica}
|
||||
# Remove before F30
|
||||
Provides: vertica-python = %{version}-%{release}
|
||||
Obsoletes: vertica-python < %{version}-%{release}
|
||||
|
||||
%description -n python2-vertica %_description
|
||||
|
||||
%if 0%{?with_python3}
|
||||
|
||||
%package -n python%{python3_pkgversion}-vertica
|
||||
Summary: %summary
|
||||
BuildRequires: python%{python3_pkgversion}-devel
|
||||
BuildRequires: python%{python3_pkgversion}-setuptools
|
||||
Requires: python%{python3_pkgversion}-dateutil >= 1.5
|
||||
Requires: python%{python3_pkgversion}-setuptools
|
||||
Requires: python%{python3_pkgversion}-pytz
|
||||
Requires: python%{python3_pkgversion}-psycopg2
|
||||
Requires: python%{python3_pkgversion}-future
|
||||
%{?python_provide:%python_provide python%{python3_pkgversion}-vertica}
|
||||
# Remove before F30
|
||||
Provides: vertica-python%{python3_pkgversion} = %{version}-%{release}
|
||||
Obsoletes: vertica-python%{python3_pkgversion} < %{version}-%{release}
|
||||
|
||||
%description -n python%{python3_pkgversion}-vertica %_description
|
||||
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n vertica-python-%{version}
|
||||
|
||||
%if 0%{?rhel} && 0%{?rhel} <= 6
|
||||
%patch0 -p1
|
||||
%endif
|
||||
|
||||
|
||||
%build
|
||||
%py2_build
|
||||
%if 0%{?with_python3}
|
||||
%py3_build
|
||||
%endif
|
||||
|
||||
|
||||
%install
|
||||
%py2_install
|
||||
%if 0%{?with_python3}
|
||||
%py3_install
|
||||
%endif
|
||||
|
||||
|
||||
%files -n python2-vertica
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{python2_sitelib}/*.egg-info
|
||||
%dir %{python2_sitelib}/vertica_python
|
||||
%{python2_sitelib}/vertica_python/*
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%files -n python%{python3_pkgversion}-vertica
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{python3_sitelib}/*.egg-info
|
||||
%dir %{python3_sitelib}/vertica_python
|
||||
%{python3_sitelib}/vertica_python/*
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Feb 19 2019 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.8.2-1
|
||||
- Upgrade to version 0.8.2
|
||||
|
||||
* Mon Sep 03 2018 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.7.4-1
|
||||
- Upgrade to version 0.7.4
|
||||
- Build python 3 subpackage even on RHEL >= 7
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.7.3-2
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Tue Mar 27 2018 Jan Beran <jberan@redhat.com> - 0.7.3-1
|
||||
- Update to version 0.7.3 including Python 3 subpackage
|
||||
|
||||
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.6.14-5
|
||||
- Update Python 2 dependency declarations to new packaging standards
|
||||
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.14-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sun Dec 17 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.6.14-3
|
||||
- Python 2 binary package renamed to python2-vertica
|
||||
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.14-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Apr 21 2017 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.6.14-1
|
||||
- Update to version 0.6.14
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.5-3
|
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Dec 11 2015 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.5.5-1
|
||||
- update to version 0.5.5
|
||||
|
||||
* Tue Dec 01 2015 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.5.4-1
|
||||
- update to version 0.5.4
|
||||
|
||||
* Wed Sep 23 2015 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.5.1-1
|
||||
- update to version 0.5.1
|
||||
|
||||
* Fri Jul 03 2015 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.5.0-1
|
||||
- update to version 0.5.0
|
||||
|
||||
* Mon Jun 22 2015 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.4.6-1
|
||||
- update to version 0.4.6
|
||||
|
||||
* Tue Jun 16 2015 Jakub Jedelsky <jakub.jedelsky@gamil.com> - 0.4.5-1
|
||||
- update to version 0.4.5
|
||||
|
||||
* Wed Apr 15 2015 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.3.6-1
|
||||
- update to version 0.3.6
|
||||
|
||||
* Wed Apr 08 2015 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.3.5-1
|
||||
- update to version 0.3.5
|
||||
|
||||
* Wed Jan 21 2015 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.3.4-1
|
||||
- update to version 0.3.4
|
||||
|
||||
* Wed Oct 15 2014 Jakub Jedelsky <jakub.jedelsky@gooddata.com> - 0.3.0-1
|
||||
- update to version 0.3.0
|
||||
|
||||
* Fri Jun 13 2014 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.2.3-1
|
||||
- update to new version
|
||||
|
||||
* Thu Apr 24 2014 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.2.1-1
|
||||
- new version update
|
||||
|
||||
* Fri Mar 28 2014 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.2.0-4
|
||||
- remove buildrood tag
|
||||
- edit dateutil patch for el6
|
||||
|
||||
* Wed Mar 26 2014 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.2.0-3
|
||||
- package is not ready for python3
|
||||
|
||||
* Wed Mar 26 2014 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.2.0-2
|
||||
- python-setuptools is required only on rhel<=6
|
||||
|
||||
* Mon Mar 24 2014 Jakub Jedelsky <jakub.jedelsky@gmail.com> - 0.2.0-1
|
||||
- Initial package
|
||||
Loading…
Add table
Add a link
Reference in a new issue