forked from pool/python-Beaker
Accepting request 136485 from devel:languages:python
Update to 1.6.4, fix sed script for exec. file, update URL in spec file. (forwarded request 135402 from poorboywilly) OBS-URL: https://build.opensuse.org/request/show/136485 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Beaker?expand=0&rev=10
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3db8badfbbb6891159303201d4c876442cd3dbc22ec92144b5666f05ea62faa8
|
||||
size 52159
|
||||
3
Beaker-1.6.4.tar.gz
Normal file
3
Beaker-1.6.4.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b06dcc9f7b1921bc962235c4051aa5f3f5d3609f42faa6064dc614ace031a3a
|
||||
size 54480
|
||||
@@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 22 20:26:45 UTC 2012 - os-dev@jacraig.com
|
||||
|
||||
- Update to 1.6.4:
|
||||
* Warning: Session hashing for encrypted sessions using PyCrypto has
|
||||
changed. This will result in sessions being invalidated upon upgrading
|
||||
if PyCrypto is used.
|
||||
* Fix bug with key_length not being coerced to a int for comparison.
|
||||
* Fix bug with cookie invalidation not clearing the cookie data.
|
||||
* Added ability to pass in cookie_path for the Session.
|
||||
* Add NSS crypto support to Beaker.
|
||||
* Fix security bug with pycrypto not securing data such that an attacker
|
||||
could possibly determine parts of the encrypted payload. See CVE-2012-3458
|
||||
<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-3458>.
|
||||
* Add ability to specify schema for database-backed sessions.
|
||||
* Fix issue with long key names in memcached backend.
|
||||
- Fix sed script so it removes the shebang instead of inserting "d" throughout
|
||||
the pbkdf2.py file.
|
||||
- Test suite now succeeds (for Python 2 package) but didn't add it to build
|
||||
because it takes too long.
|
||||
- Update URL to what is given in setup.py.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 23 03:08:32 UTC 2012 - highwaystar.ru@gmail.com
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
|
||||
|
||||
Name: python-Beaker
|
||||
Version: 1.6.3
|
||||
Version: 1.6.4
|
||||
Release: 0
|
||||
Url: http://beaker.groovie.org
|
||||
Url: http://beaker.rtfd.org/
|
||||
Summary: A Session and Caching library with WSGI Middleware
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
@@ -68,7 +68,7 @@ Features:
|
||||
|
||||
%prep
|
||||
%setup -q -n Beaker-%{version}
|
||||
sed -i "id" beaker/crypto/pbkdf2.py # Fix non-executable script
|
||||
sed -i "1d" beaker/crypto/pbkdf2.py # Fix non-executable script
|
||||
|
||||
%build
|
||||
python setup.py build
|
||||
|
||||
@@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 22 20:26:45 UTC 2012 - os-dev@jacraig.com
|
||||
|
||||
- Update to 1.6.4:
|
||||
* Warning: Session hashing for encrypted sessions using PyCrypto has
|
||||
changed. This will result in sessions being invalidated upon upgrading
|
||||
if PyCrypto is used.
|
||||
* Fix bug with key_length not being coerced to a int for comparison.
|
||||
* Fix bug with cookie invalidation not clearing the cookie data.
|
||||
* Added ability to pass in cookie_path for the Session.
|
||||
* Add NSS crypto support to Beaker.
|
||||
* Fix security bug with pycrypto not securing data such that an attacker
|
||||
could possibly determine parts of the encrypted payload. See CVE-2012-3458
|
||||
<http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-3458>.
|
||||
* Add ability to specify schema for database-backed sessions.
|
||||
* Fix issue with long key names in memcached backend.
|
||||
- Fix sed script so it removes the shebang instead of inserting "d" throughout
|
||||
the pbkdf2.py file.
|
||||
- Test suite now succeeds (for Python 2 package) but didn't add it to build
|
||||
because it takes too long.
|
||||
- Update URL to what is given in setup.py.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 6 09:28:27 UTC 2012 - toddrme2178@gmail.com
|
||||
|
||||
|
||||
@@ -15,19 +15,20 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: python3-Beaker
|
||||
Version: 1.6.3
|
||||
Version: 1.6.4
|
||||
Release: 0
|
||||
Url: http://beaker.groovie.org
|
||||
Url: http://beaker.rtfd.org/
|
||||
Summary: A Session and Caching library with WSGI Middleware
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
Source: http://pypi.python.org/packages/source/B/Beaker/Beaker-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python3
|
||||
BuildRequires: python3-2to3
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-distribute
|
||||
BuildRequires: python3-2to3
|
||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1140
|
||||
%{!?python3_sitelib: %global python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||
%{!?py3_ver: %global py3_ver %(python3 -c "import sys; version=str(sys.version_info[0]) + '.' + str(sys.version_info[1]); print(version)" 2>/dev/null || echo PYTHON-NOT-FOUND)}
|
||||
@@ -35,7 +36,7 @@ BuildRequires: python3-2to3
|
||||
BuildRequires: python3-base
|
||||
%endif
|
||||
Requires: python(abi) = %{py3_ver}
|
||||
BuildArch: noarch
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Beaker is a web session and general caching library that includes WSGI
|
||||
@@ -70,7 +71,7 @@ Features:
|
||||
|
||||
%prep
|
||||
%setup -q -n Beaker-%{version}
|
||||
sed -i "id" beaker/crypto/pbkdf2.py # Fix non-executable script
|
||||
sed -i "1d" beaker/crypto/pbkdf2.py # Fix non-executable script
|
||||
|
||||
%build
|
||||
python3 setup.py build
|
||||
|
||||
Reference in New Issue
Block a user