[python-elixir/epel7: 3/5] Revert "Only needed for the TurboGears1 stack which does not have a maintainer in EPEL7"

Dan Callaghan dcallagh at fedoraproject.org
Mon Aug 25 03:07:54 UTC 2014


commit ddf62c9f451002dec4c74a4d806c3f3b096c3338
Author: Dan Callaghan <dcallagh at redhat.com>
Date:   Thu Aug 21 09:15:40 2014 +1000

    Revert "Only needed for the TurboGears1 stack which does not have a maintainer in EPEL7"
    
    This reverts commit 0556ae9f4fb889e28a704f9893b6a3cb1683228a.

 .gitignore         |    1 +
 LICENSE            |   21 +++++++++
 dead.package       |    1 -
 python-elixir.spec |  122 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources            |    1 +
 5 files changed, 145 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..aacd52e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+Elixir-0.7.1.tar.gz
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..675ee2f
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+This is the MIT license: http://www.opensource.org/licenses/mit-license.php
+
+Copyright (c) 2007, 2008 Jonathan LaCour, Daniel Haus, and Gaetan de Menten.
+and contributors. SQLAlchemy is a trademark of Michael Bayer.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/python-elixir.spec b/python-elixir.spec
new file mode 100644
index 0000000..a346d0f
--- /dev/null
+++ b/python-elixir.spec
@@ -0,0 +1,122 @@
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Name:           python-elixir
+Version:        0.7.1
+Release:        11%{?dist}
+Summary:        Declarative mapper for SQLAlchemy
+
+Group:          Development/Languages
+License:        MIT
+URL:            http://elixir.ematia.de/
+Source0:        http://pypi.python.org/packages/source/E/Elixir/Elixir-%{version}.tar.gz
+# Include the license file from upstream
+# Bug to get them to add it to releases http://elixir.ematia.de/trac/ticket/118
+Source1:        http://elixir.ematia.de/trac/export/534/elixir/trunk/LICENSE
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch:      noarch
+BuildRequires:  python2-devel
+BuildRequires:  python-setuptools
+
+Requires:       python-sqlalchemy
+Requires:       python-crypto
+
+
+%description
+Elixir is a declarative layer on top of SQLAlchemy. It is a fairly thin
+wrapper, which provides the ability to define model objects following the
+Active Record design pattern, and using a DSL syntax similar to that of the
+Ruby on Rails ActiveRecord system.
+
+Elixir does not intend to replace SQLAlchemy's core features, but instead
+focuses on providing a simpler syntax for defining model objects when you do
+not need the full expressiveness of SQLAlchemy's manual mapper definitions.
+
+
+%prep
+%setup -q -n Elixir-%{version}
+cp %{SOURCE1} .
+
+%build
+%{__python} setup.py build
+
+
+%install
+rm -rf %{buildroot}
+%{__python} setup.py install --skip-build --root %{buildroot}
+
+ 
+%clean
+rm -rf %{buildroot}
+
+
+%files
+%defattr(-,root,root,-)
+%doc README LICENSE
+%{python_sitelib}/*
+
+
+%changelog
+* Thu Feb 14 2013 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.7.1-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Sat Jul 21 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.7.1-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Wed Feb  8 2012 Toshio Kuratomi <toshio at fedoraproject.org> - 0.7.1-9
+- Use URL to trunk for license.  Comment on upstream bug to include it.
+
+* Wed Feb  8 2012 Toshio Kuratomi <toshio at fedoraproject.org> - 0.7.1-8
+- Include a copy of the License from upstream's revision control system
+
+* Tue Feb  7 2012 Toshio Kuratomi <toshio at fedoraproject.org> - 0.7.1-7
+- Minor cleanups, submit for re-review
+
+* Sat Jan 14 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.7.1-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Tue Feb 08 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.7.1-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Thu Jul 22 2010 David Malcolm <dmalcolm at redhat.com> - 0.7.1-4
+- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
+
+* Thu Apr 29 2010 Stanislav Ochotnicky <sochotnicky at redhat.com> - 0.7.1-3
+- Added missing python-crypto to Requires
+- Fixed Source0 URL
+
+* Tue Apr 13 2010 James Bowes <jbowes at redhat.com> 0.7.1-2
+- Remove non-existant docs
+
+* Tue Apr 13 2010 James Bowes <jbowes at redhat.com> 0.7.1-1
+- Update to 0.7.1
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.6.1-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.6.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm at gmail.com> - 0.6.1-2
+- Rebuild for Python 2.6
+
+* Wed Sep 17 2008 James Bowes <jbowes at redhat.com> 0.6.1-1
+- Update to 0.6.1
+
+* Thu Jul 24 2008 James Bowes <jbowes at redhat.com> 0.6.0-1
+- Update to 0.6.0
+
+* Sat Apr 05 2008 James Bowes <jbowes at redhat.com> 0.5.2-1
+- Update to 0.5.2
+
+* Mon Feb 11 2008 James Bowes <jbowes at redhat.com> 0.5.1-1
+- Update to 0.5.1
+
+* Thu Dec 13 2007 James Bowes <jbowes at redhat.com> - 0.5.0-1
+- Update to 0.5.0
+
+* Wed Nov 14 2007 Steve 'Ashcrow' Milner <me at stevemilner.org> - 0.4.0-1
+- Updated for upstream 0.4.0.
+
+* Sun Jun 24 2007 James Bowes <jbowes at redhat.com> - 0.3.0-1
+- Initial packaging for Fedora.
diff --git a/sources b/sources
new file mode 100644
index 0000000..9a4714a
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+5615ec9693e3a8e44f69623d58f54116  Elixir-0.7.1.tar.gz


More information about the scm-commits mailing list