[python26-sqlalchemy] initial import, package review #606557

derks derks at fedoraproject.org
Mon Oct 4 16:46:20 UTC 2010


commit 0ad1662817cdb0f3cbacd65b9a457dbe5117f01c
Author: BJ Dierkes <wdierkes at 5dollarwhitebox.org>
Date:   Mon Oct 4 11:46:07 2010 -0500

    initial import, package review #606557

 .gitignore               |    1 +
 python26-sqlalchemy.spec |  215 ++++++++++++++++++++++++++++++++++++++++++++++
 sources                  |    1 +
 3 files changed, 217 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..e2977a3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/SQLAlchemy-0.6.4.tar.gz
diff --git a/python26-sqlalchemy.spec b/python26-sqlalchemy.spec
new file mode 100644
index 0000000..d7a1612
--- /dev/null
+++ b/python26-sqlalchemy.spec
@@ -0,0 +1,215 @@
+
+%global pyver 26
+%global pybasever 2.6
+
+%global __python /usr/bin/python%{pybasever}
+%global __os_install_post %{__python26_os_install_post}
+
+%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%endif
+
+%global srcname SQLAlchemy
+
+# Have to wait until python26-nose is in the EPEL 5 stable repo
+%global _with_tests 0
+
+Name:           python%{pyver}-sqlalchemy
+Version:        0.6.4 
+Release:        1%{?dist}
+Summary:        Modular and flexible ORM library for python26
+
+Group:          Development/Libraries
+License:        MIT
+URL:            http://www.sqlalchemy.org/
+Source0:        http://pypi.python.org/packages/source/S/%{srcname}/%{srcname}-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch:      noarch
+Requires:       python(abi) = %{pybasever}
+BuildRequires:  python%{pyver}-devel
+BuildRequires:  python%{pyver}-distribute
+%if 0%{?_with_tests}
+BuildRequires:  python%{pyver}-nose
+%endif
+
+%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.
+
+%prep
+%setup -q -n %{srcname}-%{version}
+sed -i 's/\r//' examples/dynamic_dict/dynamic_dict.py
+
+%build
+%{__python} setup.py build
+ 
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}%{python_sitelib}
+%{__python} setup.py install --skip-build --root %{buildroot}
+
+# remove unnecessary scripts for building documentation
+rm -rf doc/build
+
+%clean
+rm -rf %{buildroot}
+
+%check
+export PYTHONPATH=.
+%{__python} setup.py develop -d .
+%if 0%{?_with_tests}
+nosetests-%{pybasever}
+%endif
+
+%files
+%defattr(-,root,root,-)
+%doc README LICENSE PKG-INFO CHANGES doc examples
+%{python_sitelib}/%{srcname}-%{version}-py%{pybasever}.egg-info/
+%{python_sitelib}/sqlalchemy
+
+%changelog
+* Tue Sep 28 2010 BJ Dierkes <wdierkes at rackspace.com> - 0.6.4-1
+- Latest sources from upstream.  Full ChangeLog available at:
+  http://www.sqlalchemy.org/changelog/CHANGES_0_6_4
+- Removed CFLAGS (noarch)
+- Added Requires: python(abi) = 2.6
+
+* Mon Jun 21 2010 BJ Dierkes <wdierkes at rackspace.com> - 0.5.8-4
+- Porting to EL5 for python26 set
+- Disable tests temporarily until python26-nose is in EPEL 5 stable
+
+* Tue Feb 2 2010 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5.8-3
+- One last cleanup
+
+* Tue Feb 2 2010 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5.8-2
+- just some cleanups to older styles of building packages.
+
+* Mon Feb 1 2010 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5.8-1
+- Upstream bugfix release 0.5.8
+
+* Fri Aug 14 2009 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5.5-2
+- Upstream bugfix release 0.5.5
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.5.4-2.p2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Fri Jun 12 2009 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5.4-1.p2
+- Upstream bugfix release 0.5.4p2.
+
+* Thu Apr 16 2009 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5.3-1
+- Upstream bugfix release.
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.5.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Wed Feb 11 2009 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5.2-1
+- Update to 0.5.2
+
+* Wed Jan 21 2009 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5.1-1
+- Update to 0.5.1.
+
+* Mon Dec 1 2008 Toshio Kuratomi <toshio at fedoraproject.org> - 0.5-0.1.rc4
+- Update to 0.5.0rc4 which works with the new pysqlite
+- And update test cases to work with the new pysqlite
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm at gmail.com> - 0.4.7-2
+- Rebuild for Python 2.6
+
+* Sun Jul 27 2008 Toshio Kuratomi <toshio at fedoraproject.org> 0.4.7-1
+- Update to 0.4.7.
+
+* Sun Jun 1 2008 Toshio Kuratomi <toshio at fedoraproject.org> 0.4.6-1
+- Update to 0.4.6.
+
+* Tue Apr 8 2008 Toshio Kuratomi <toshio at fedoraproject.org> 0.4.5-1
+- Update to 0.4.5.
+
+* Fri Feb 22 2008 Toshio Kuratomi <toshio at fedoraproject.org> 0.4.3-1
+- Update to 0.4.3.
+
+* Tue Dec 11 2007 Toshio Kuratomi <a.badger at gmail.com> 0.4.2-1.p3
+- Update to 0.4.2p3.
+
+* Tue Dec 11 2007 Toshio Kuratomi <a.badger at gmail.com> 0.4.1-1
+- Update to 0.4.1.
+
+* Wed Oct 17 2007 Toshio Kuratomi <a.badger at gmail.com> 0.4.0-1
+- SQLAlchemy-0.4.0 final
+- Run the testsuite
+
+* Wed Oct  3 2007 Luke Macken <lmacken at redhat.com> 0.4.0-0.4.beta6
+- SQLAlchemy-0.4.0beta6
+
+* Tue Sep 11 2007 Toshio Kuratomi <a.badger at gmail.com> - 0.4.0-0.4.beta5
+- Update to 0.4beta5.
+
+* Fri Sep 06 2007 Toshio Kuratomi <a.badger at gmail.com> - 0.4.0-0.4.beta4
+- setuptools has been fixed.
+
+* Fri Aug 31 2007 Toshio Kuratomi <a.badger at gmail.com> - 0.4.0-0.3.beta4
+- setuptools seems to be broken WRT having an active and inactive version
+  of an egg.  Have to make both versions inactive and manually setup a copy
+  that can be started via import. (Necessary for the sqlalchemy0.3 compat
+  package.)
+
+* Tue Aug 28 2007 Toshio Kuratomi <a.badger at gmail.com> - 0.4.0-0.2.beta4
+- Modify setuptools to handle the -devel subpackage split in F-8.
+
+* Mon Aug 27 2007 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.4.0-0.1.beta4
+- Update to 0.4 beta4.
+
+* Tue Jul 24 2007 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.10-2
+- Remove python-abi Requires.  This is automatic since FC4+.
+
+* Tue Jul 24 2007 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.10-1
+- Update to new upstream version 0.3.10
+
+* Fri Mar 23 2007 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.6-1
+- Update to new upstream version 0.3.6
+
+* Sat Mar 10 2007 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.5-1
+- Update to new upstream version 0.3.5
+- Simplify the files listing
+
+* Tue Jan 23 2007 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.4-2
+- Remember to upload the source tarball to the lookaside cache.
+
+* Tue Jan 23 2007 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.4-1
+- Update to new upstream version 0.3.4
+
+* Mon Jan 01 2007 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.3-1
+- Update to new upstream version 0.3.3
+
+* Sat Dec 09 2006 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.1-2
+- Bump and rebuild for python 2.5 on devel.
+- BuildRequire: python-devel as a header is missing otherwise.
+
+* Fri Nov 24 2006 Toshio Kuratomi <toshio at tiki-lounge.com> - 0.3.1-1
+- Update to new upstream version 0.3.1
+
+* Sat Sep 16 2006 Shahms E. King <shahms at shahms.com> 0.2.7-2
+- Rebuild for FC6
+
+* Thu Aug 17 2006 Shahms E. King <shahms at shahms.com> 0.2.7-1
+- Update to new upstream version
+
+* Fri Aug 11 2006 Shahms E. King <shahms at shahms.com> 0.2.6-2
+- Include, don't ghost .pyo files per new guidelines
+
+* Tue Aug 08 2006 Shahms E. King <shahms at shahms.com> 0.2.6-1
+- Update to new upstream version
+
+* Fri Jul 07 2006 Shahms E. King <shahms at shahms.com> 0.2.4-1
+- Update to new upstream version
+
+* Mon Jun 26 2006 Shahms E. King <shahms at shahms.com> 0.2.3-1
+- Update to new upstream version
+
+* Wed May 31 2006 Shahms E. King <shahms at shahms.com> 0.2.1-1
+- Update to new upstream version
diff --git a/sources b/sources
index e69de29..73eab0d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+f1e553e73ca989c162ea039b55bd93f5  SQLAlchemy-0.6.4.tar.gz


More information about the scm-commits mailing list