diff --git a/python3-SQLAlchemy.changes b/python3-SQLAlchemy.changes deleted file mode 100644 index 9b2aa17..0000000 --- a/python3-SQLAlchemy.changes +++ /dev/null @@ -1,48 +0,0 @@ -------------------------------------------------------------------- -Fri Mar 8 08:14:13 UTC 2013 - lars@linux-schulserver.de - -- update to 0.7.10: - * orm - + [bug] Fixed Session accounting bug whereby replacing - a deleted object in the identity map with another - object of the same primary key would raise a - "conflicting state" error on rollback(), - if the replaced primary key were established either - via non-unitofwork-established INSERT statement - or by primary key switch of another instance. - [ticket:2583] - * oracle - + [bug] changed the list of cx_oracle types that are - excluded from the setinputsizes() step to only include - STRING and UNICODE; CLOB and NCLOB are removed. This - is to work around cx_oracle behavior which is broken - for the executemany() call. In 0.8, this same change - is applied however it is also configurable via the - exclude_setinputsizes argument. [ticket:2561] - * mysql - + [feature] Added "raise_on_warnings" flag to OurSQL - dialect. [ticket:2523] - + [feature] Added "read_timeout" flag to MySQLdb - dialect. [ticket:2554] - -------------------------------------------------------------------- -Wed Dec 19 15:48:22 UTC 2012 - saschpe@suse.de - -- The doc package is noarch - -------------------------------------------------------------------- -Thu Nov 22 09:39:27 UTC 2012 - toddrme2178@gmail.com - -- Remove openSUSE 11.4 spec file workarounds - -------------------------------------------------------------------- -Fri May 25 08:33:12 UTC 2012 - toddrme2178@gmail.com - -- Fix building on openSUSE 11.4 -- spec file cleanups - -------------------------------------------------------------------- -Wed May 23 06:45:21 UTC 2012 - highwaystar.ru@gmail.com - -- python3-SQLAlchemy package added - diff --git a/python3-SQLAlchemy.spec b/python3-SQLAlchemy.spec deleted file mode 100644 index 29d0e64..0000000 --- a/python3-SQLAlchemy.spec +++ /dev/null @@ -1,84 +0,0 @@ -# -# spec file for package python3-SQLAlchemy -# -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. -# -# All modifications and additions to the file contributed by third parties -# remain the property of their copyright owners, unless otherwise agreed -# upon. The license for this file, and modifications and additions to the -# file, is the same license as for the pristine package itself (unless the -# license for the pristine package is not an Open Source License, in which -# case the license is the MIT License). An "Open Source License" is a -# license that conforms to the Open Source Definition (Version 1.9) -# published by the Open Source Initiative. - -# Please submit bugfixes or comments via http://bugs.opensuse.org/ -# - - -Name: python3-SQLAlchemy -Version: 0.7.10 -Release: 0 -Url: http://www.sqlalchemy.org -Summary: Database Abstraction Library -License: MIT -Group: Development/Languages/Python -Source0: http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: python3 -BuildRequires: python3-2to3 -BuildRequires: python3-devel -BuildRequires: python3-distribute -BuildRequires: python3-nose -Requires: python(abi) = %{py3_ver} -#cextension not working yet with py3, so build as noarch -BuildArch: noarch - -%description -SQLAlchemy is an Object Relational Mappper (ORM) that provides a flexible, -high-level interface to SQL databases. Database and domain concepts are -decoupled, allowing both sides maximum flexibility and power. SQLAlchemy -provides a powerful mapping layer that can work as automatically or as manually -as you choose, determining relationships based on foreign keys or letting you -define the join conditions explicitly, to bridge the gap between database and -domain. - -%package doc -Summary: Documentation for python-SQLAlchemy -Group: Documentation/Other -BuildArch: noarch -Requires: %{name} = %{version} - -%description doc -This package contains HTML documentation, including tutorials and API -reference for python-SQLAlchemy. - -%prep -%setup -q -n SQLAlchemy-%{version} -rm -rf doc/build # Remove unnecessary scripts for building documentation -sed -i 's/\r$//' examples/dynamic_dict/dynamic_dict.py - -%build -# Convert tests, examples, source to python3 -python3 sa2to3.py --no-diffs -w lib test examples -find examples -name *.bak -exec rm -f {} \; -# Currently the cextension doesn't work with py3 -CFLAGS="%{optflags} -fno-strict-aliasing" python3 setup.py build - -%install -python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} - -%check -python3 ./sqla_nose.py - -%files -%defattr(-,root,root,-) -%doc CHANGES CHANGES_PRE_06 LICENSE README.rst README.py3k README.unittests -%{python3_sitelib}/sqlalchemy/ -%{python3_sitelib}/SQLAlchemy-%{version}-py%{py3_ver}.egg-info - -%files doc -%defattr(-,root,root) -%doc doc examples - -%changelog