Compare commits
39 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
960f27b66e | ||
|
|
c88706c7cc | ||
|
|
d7d3e5949c | ||
|
|
16a1cbbde4 |
||
|
|
d424ebc1c6 |
||
|
|
a5b4e68800 | ||
|
|
36fa962ec4 | ||
|
|
2f11499bd2 | ||
|
|
12ce02250d | ||
|
|
06fbdd6cc5 | ||
|
|
d567ed9cf2 | ||
|
|
ddce2d39ba | ||
|
|
26d14dc914 | ||
|
|
57a0a41e8f | ||
|
|
65248eb3cd | ||
|
|
8e74df4951 | ||
|
|
549e1fa51e | ||
|
|
a614547812 | ||
|
|
ec555bef4e | ||
|
|
d84794ac01 | ||
|
|
bcb61afbb2 | ||
|
|
7581571e47 | ||
|
|
f78853a196 | ||
|
|
6fcd979d25 | ||
|
|
df99c096a5 | ||
|
|
f55207f9ad | ||
|
|
49d39f5d0a | ||
| fbc60ae972 | |||
|
|
17b1f1da23 | ||
|
|
8d91a0bd8e | ||
|
|
ecbba72ec8 | ||
|
|
2d06d0cd7d | ||
|
|
bfa644b0fa | ||
|
|
fad456e308 | ||
|
|
f43c0926b4 | ||
|
|
2218cea3b2 | ||
|
|
4e39e4a03f | ||
| 311096b9f0 | |||
|
|
9d9da86945 |
6 changed files with 1 additions and 165 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
|
@ -1,14 +0,0 @@
|
|||
/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
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
SHA512 (0.6.14.tar.gz) = 8dd046eed23fdd7d88fcc971dde185edcb5d2610a01e1749e23518b9f5146f753623c28b123b86a2e0308110fdd826fea47743d1cf1139dc7527ade449339973
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
diff --git a/vertica_python/vertica/column.py b/vertica_python/vertica/column.py
|
||||
index cc0bb27..3266d74 100644
|
||||
--- a/vertica_python/vertica/column.py
|
||||
+++ b/vertica_python/vertica/column.py
|
||||
@@ -5,6 +5,11 @@ from collections import namedtuple
|
||||
from decimal import Decimal
|
||||
from datetime import date
|
||||
from datetime import datetime
|
||||
+from pkg_resources import require,VersionConflict
|
||||
+try:
|
||||
+ require("python_dateutil>=1.5")
|
||||
+except VersionConflict:
|
||||
+ pass
|
||||
from dateutil import parser
|
||||
from vertica_python import errors
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
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
|
||||
|
|
@ -1,123 +0,0 @@
|
|||
%{!?__python2: %global __python2 /usr/bin/python2}
|
||||
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||
|
||||
Name: vertica-python
|
||||
Version: 0.6.14
|
||||
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.2.0-dateutil15.patch
|
||||
Patch1: vertica-python-0.5.0-crypt_windows.patch
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python-setuptools
|
||||
|
||||
%if 0%{?rhel} && 0%{?rhel} <= 6
|
||||
Requires: python-dateutil15
|
||||
Requires: python-setuptools
|
||||
%else
|
||||
Requires: python-dateutil >= 1.5
|
||||
%endif
|
||||
|
||||
Requires: pytz
|
||||
Requires: python-psycopg2
|
||||
Requires: python2-future
|
||||
|
||||
|
||||
%description
|
||||
vertica-python is a native Python adapter for the Vertica
|
||||
(http://www.vertica.com) database.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n vertica-python-%{version}
|
||||
|
||||
%if 0%{?rhel} && 0%{?rhel} <= 6
|
||||
%patch0 -p1
|
||||
%endif
|
||||
|
||||
%patch1 -p1
|
||||
|
||||
|
||||
%build
|
||||
%{__python2} setup.py build
|
||||
|
||||
|
||||
%install
|
||||
%{__python2} setup.py install --skip-build --root $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%doc README.md LICENSE
|
||||
%{python2_sitelib}/*.egg-info
|
||||
%dir %{python2_sitelib}/vertica_python
|
||||
%{python2_sitelib}/vertica_python/*
|
||||
|
||||
|
||||
%changelog
|
||||
* 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