Hello community,

here is the log from the commit of package python-Jinja2 for openSUSE:Factory 
checked in at 2012-05-07 22:49:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-Jinja2 (Old)
 and      /work/SRC/openSUSE:Factory/.python-Jinja2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-Jinja2", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-Jinja2/python-Jinja2.changes      
2012-02-24 06:53:32.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-Jinja2.new/python-Jinja2.changes 
2012-05-07 22:49:52.000000000 +0200
@@ -1,0 +2,20 @@
+Mon Apr 30 13:06:58 UTC 2012 - toddrme2...@gmail.com
+
+- Fix building python 3 package on openSUSE 11.4 x86_64
+
+-------------------------------------------------------------------
+Thu Apr 26 14:08:18 UTC 2012 - toddrme2...@gmail.com
+
+- Add 2to3 buildrequires to allow for proper conversion of python 3
+  version
+
+-------------------------------------------------------------------
+Mon Apr 23 12:00:49 UTC 2012 - toddrme2...@gmail.com
+
+- Add python 3 package
+- Simplify vim plugin packaging
+- Add suggests for vim and emacs in their respective 
+  packages
+- Removed test for obsolete openSUSE version
+
+-------------------------------------------------------------------
New Changes file:

--- /dev/null   2012-05-03 01:24:41.895590051 +0200
+++ /work/SRC/openSUSE:Factory/.python-Jinja2.new/python3-Jinja2.changes        
2012-05-07 22:49:52.000000000 +0200
@@ -0,0 +1,19 @@
+-------------------------------------------------------------------
+Mon Apr 30 13:06:58 UTC 2012 - toddrme2...@gmail.com
+
+- Fix building python 3 package on openSUSE 11.4 x86_64
+
+-------------------------------------------------------------------
+Thu Apr 26 14:08:18 UTC 2012 - toddrme2...@gmail.com
+
+- Add 2to3 buildrequires to allow for proper conversion of python 3
+  version
+
+-------------------------------------------------------------------
+Mon Apr 23 12:00:49 UTC 2012 - toddrme2...@gmail.com
+
+- Add python 3 package
+- Simplify vim plugin packaging
+- Add suggests for vim and emacs in their respective 
+  packages
+- Removed test for obsolete openSUSE version

New:
----
  python3-Jinja2.changes
  python3-Jinja2.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-Jinja2.spec ++++++
--- /var/tmp/diff_new_pack.uON1Az/_old  2012-05-07 22:49:53.000000000 +0200
+++ /var/tmp/diff_new_pack.uON1Az/_new  2012-05-07 22:49:53.000000000 +0200
@@ -27,6 +27,7 @@
 BuildRequires:  fdupes
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
+BuildRequires:  vim
 Provides:       python-jinja2 = %{version}
 Obsoletes:      python-jinja2 < %{version}
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -56,6 +57,7 @@
 License:        BSD-3-Clause
 Group:          Productivity/Text/Editors
 Requires:       %{name} = %{version}
+Recommends:     vim
 
 %description vim
 Vim syntax highlighting scheme for Jinja2 templates.
@@ -65,6 +67,7 @@
 License:        GPL-2.0+
 Group:          Productivity/Text/Editors
 Requires:       %{name} = %{version}
+Recommends:     emacs
 
 %description emacs
 Emacs syntax highlighting scheme for Jinja2 templates.
@@ -80,7 +83,7 @@
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 install -Dm644 ext/Vim/jinja.vim 
%{buildroot}%{_datadir}/vim/site/syntax/jinja.vim # Install VIM syntax file
 install -Dm644 ext/jinja.el %{buildroot}%{_datadir}/emacs/site-lisp/jinja.el # 
Install Emacs syntax file
-%if 0%{?suse_version} > 1010
+%if 0%{?suse_version}
 %fdupes %{buildroot}%{_prefix}
 %endif
 
@@ -91,7 +94,7 @@
 
 %files vim
 %defattr(-,root,root,-)
-%{_datadir}/vim
+%{_datadir}/vim/site/syntax/jinja.vim
 
 %files emacs
 %defattr(-,root,root,-)

++++++ python3-Jinja2.spec ++++++
#
# spec file for package python3-Jinja2
#
# Copyright (c) 2012 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-Jinja2
Version:        2.6
Release:        0
Summary:        A fast and easy to use template engine written in pure Python
License:        BSD-3-Clause
Group:          Development/Languages/Python
Url:            http://jinja.pocoo.org/
Source:         
http://pypi.python.org/packages/source/J/Jinja2/Jinja2-%{version}.tar.gz
BuildRequires:  fdupes
BuildRequires:  python3
BuildRequires:  python3-2to3
BuildRequires:  python3-devel
BuildRequires:  python3-distribute
BuildRequires:  vim
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
%if 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)}
%ifarch x86_64
# to allow ownership of noarch python directories
BuildRequires:  python3-32bit
%endif
%endif
BuildArch:      noarch
Requires:       python3 >= %{py3_ver}

%description
Jinja2 is a template engine written in pure Python.  It provides a Django
inspired non-XML syntax but supports inline expressions and an optional
sandboxed environment.  Here a small example of a Jinja template:

    {% extends 'base.html' %}
    {% block title %}Memberlist{% endblock %}
    {% block content %}
      <ul>
      {% for user in users %}
        <li><a href="{{ user.url }}">{{ user.username }}</a></li>
      {% endfor %}
      </ul>
    {% endblock %}

%package vim
Summary:        Jinja2 syntax files for Vim
License:        BSD-3-Clause
Group:          Productivity/Text/Editors
Requires:       %{name} = %{version}
Recommends:     vim

%description vim
Vim syntax highlighting scheme for Jinja2 templates.

%package emacs
Summary:        Jinja2 syntax files for Emacs
License:        GPL-2.0+
Group:          Productivity/Text/Editors
Requires:       %{name} = %{version}
Recommends:     emacs

%description emacs
Emacs syntax highlighting scheme for Jinja2 templates.

%prep
%setup -q -n Jinja2-%{version}

%build
python3 setup.py build
sed -i 's/\r$//' LICENSE # Fix wrong EOL encoding

%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
install -Dm644 ext/Vim/jinja.vim 
%{buildroot}%{_datadir}/vim/site/syntax/jinja-python%{py3_ver}.vim # Install 
VIM syntax file
install -Dm644 ext/jinja.el 
%{buildroot}%{_datadir}/emacs/site-lisp/jinja-python%{py3_ver}.el # Install 
Emacs syntax file
%fdupes %{buildroot}%{_prefix}

%files
%defattr(-,root,root,-)
%doc AUTHORS CHANGES LICENSE artwork examples ext/JinjaTemplates.tmbundle.tar.gz
%{python3_sitelib}/*

%files vim
%defattr(-,root,root,-)
%{_datadir}/vim/site/syntax/jinja-python%{py3_ver}.vim

%files emacs
%defattr(-,root,root,-)
%{_datadir}/emacs/site-lisp/jinja-python%{py3_ver}.el

%changelog
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to