Hello community,

here is the log from the commit of package nested for openSUSE:Factory checked 
in at 2012-01-27 15:22:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nested (Old)
 and      /work/SRC/openSUSE:Factory/.nested.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nested", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2010-08-26 16:28:41.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.nested.new/nested.changes       2012-01-27 
15:22:36.000000000 +0100
@@ -0,0 +1,72 @@
+-------------------------------------------------------------------
+Thu Jan 12 11:53:40 UTC 2012 - cfarr...@suse.com
+
+- license update: GPL-2.0+ and Apache-2.0
+  There are numerous Apache-2.0 licensed javascript files
+
+-------------------------------------------------------------------
+Wed Jan 11 09:29:07 UTC 2012 - jorge.iz...@gmail.com
+
+- added man page fix  
+
+-------------------------------------------------------------------
+Fri Dec 30 19:04:00 UTC 2011 - jorge.iz...@gmail.com
+
+- fixed distro version check in first BuildRequires
+- moved texlive and netpbm from BuildRequires to Requires
+
+-------------------------------------------------------------------
+Thu Dec 29 20:23:45 UTC 2011 - jorge.iz...@gmail.com
+
+- including pyo files as per 
http://fedoraproject.org/wiki/Packaging:Python#Files_to_include 
+
+-------------------------------------------------------------------
+Thu Dec 29 01:23:17 UTC 2011 - jorge.iz...@gmail.com
+
+- opensuse 11.3 uses python 2.6 so egg-info needs to be explicitly added
+
+-------------------------------------------------------------------
+Wed Dec 28 21:56:13 UTC 2011 - jorge.iz...@gmail.com
+
+- exception cases for older opensuse versions
+
+-------------------------------------------------------------------
+Wed Dec 28 20:52:28 UTC 2011 - jorge.iz...@gmail.com
+
+- fixed missing directories rpm ownership
+
+-------------------------------------------------------------------
+Wed Dec 28 20:41:07 UTC 2011 - jorge.iz...@gmail.com
+
+- no more warnings of files listed twice
+- more verbosity in %files section
+- %fdupes pointing to wrong location. FIXED
+- added tex libraries to Requires
+
+-------------------------------------------------------------------
+Tue Dec 27 18:36:58 UTC 2011 - jorge.iz...@gmail.com
+
+- wrong source filename in spec file fixed 
+
+-------------------------------------------------------------------
+Tue Dec 27 18:22:59 UTC 2011 - jorge.iz...@gmail.com
+
+- changed source code compression method  
+
+-------------------------------------------------------------------
+Tue Dec 27 18:09:37 UTC 2011 - jorge.iz...@gmail.com
+
+- distro version control in some statements 
+- updated rpmlintrc adding filter for suse_update_desktop_file
+
+-------------------------------------------------------------------
+Tue Dec 27 16:43:52 UTC 2011 - jorge.iz...@gmail.com
+
+- added nested.rpmlintrc to filter known warnings
+- missing update-desktop-files in BuildRequires
+- changed png dinamically in spec also some syntax clean up
+- rpmlint checks passed
+- fixed numerous listed twice files warnings
+- CHANGELOG.txt and LICENSE.txt added to %doc
+- python-distribute not present in suse_version < 1210
+

New:
----
  _service
  _service:download_files:nested-1.2.2.tar.gz
  nested.changes
  nested.desktop
  nested.rpmlintrc
  nested.spec

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

Other differences:
------------------
++++++ nested.spec ++++++
#
# spec file for package nested
#
# Copyright (c) Copyright 2011 Izaac Zavaleta
#
# 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/
#


%define name nested
%define version 1.2.2
%define unmangled_version 1.2.2
%define release 1
Summary:        Specialized editor for structured documents

Name:           %{name}
Version:        %{version}
Release:        %{release}
License:        GPL-2.0+ and Apache-2.0
Group:          Productivity/Editors/Other
Url:            http://nestededitor.sourceforge.net/
Source0:        
http://prdownloads.sourceforge.net/nestededitor/files/%{name}-%{unmangled_version}.tar.gz
Source1:        %{name}.desktop
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
Prefix:         %{_prefix}
%if 0%{?suse_version} >= 1210
BuildRequires:  fdupes python-devel python-distribute update-desktop-files
%else
BuildRequires:  fdupes python-devel update-desktop-files
%endif
Requires:       python-gtk, python-webkitgtk texlive texlive-latex netpbm
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch:      noarch
%else
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(True)")}
%endif
%endif

%description
Nested is a specialized editor focused on creating structured documents such as 
reports, publications, presentations, books, etc. It is designed to help the 
user concentrate on writing content without been distracted by format or 
markup. It offers a rich WYSIWYM interface where the user writes plain text 
with a lightweight markup language.

%prep
%setup -n %{name}-%{unmangled_version}

%build
%{__python} setup.py build

%install
%{__python} setup.py install -O1 --prefix=%{_prefix} --root=%{buildroot}
mkdir -p %{buildroot}%{_datadir}/applications/
cp %SOURCE1 %{buildroot}%{_datadir}/applications/
mkdir -p %{buildroot}%{_datadir}/pixmaps/
%{__python} l10n/compile_mo.py
mkdir -p %{buildroot}%{_datadir}/locale
mv l10n/mo/* %{buildroot}%{_datadir}/locale
mkdir -p %{buildroot}%{_mandir}/man1
%{__python} -B %{_builddir}/%{name}-%{version}/nested/txt2tags.py --target man \
--infile %{_builddir}/%{name}-%{version}/nested/examples/Manpage/Manpage.t2t \
--outfile %{_builddir}/%{name}-%{version}/nested/nested.1  
cp -p %{_builddir}/%{name}-%{version}/nested/nested.1 
%{buildroot}%{_mandir}/man1
%if 0%{?suse_version} < 1210
cp %{buildroot}%{python_sitelib}/nested/nested.png 
%{buildroot}%{_datadir}/pixmaps/
%else
mv %{buildroot}%{python_sitelib}/nested/nested.png 
%{buildroot}%{_datadir}/pixmaps/
%endif
%suse_update_desktop_file  %{buildroot}%{_datadir}/applications/%{name}.desktop
%fdupes %{buildroot}%{python_sitelib}/nested/

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc CHANGELOG.txt LICENSE.txt
%{_bindir}/nested
%{_datadir}/applications/nested.desktop
%{_datadir}/pixmaps/nested.png
%{_datadir}/locale//es/LC_MESSAGES/%{name}.mo
%dir %{python_sitelib}/nested
%dir %{python_sitelib}/nested/examples
%dir %{python_sitelib}/nested/icons
%dir %{python_sitelib}/nested/libraries
%dir %{python_sitelib}/nested/templates
%dir %{python_sitelib}/nested/themes
%if 0%{?suse_version} >= 1140
%{python_sitelib}/nested-%{version}-py2.7.egg-info
%endif
%if 0%{?suse_version} <= 1130
%{python_sitelib}/nested-%{version}-py2.6.egg-info
%endif
%{python_sitelib}/nested/*.pyc
%{python_sitelib}/nested/*.pyo
%{python_sitelib}/nested/export.py
%{python_sitelib}/nested/config.ini
%{python_sitelib}/nested/__init__.py
%{python_sitelib}/nested/nested_gui.py
%{python_sitelib}/nested/nested.svg
%{python_sitelib}/nested/t2t_highlight.py
%{python_sitelib}/nested/gui.glade
%{python_sitelib}/nested/logos.png
%{python_sitelib}/nested/examples/*
%{python_sitelib}/nested/libraries/*
%{python_sitelib}/nested/icons/*
%{python_sitelib}/nested/templates/*
%{python_sitelib}/nested/themes/*
%{_mandir}/man1/%{name}.1.*
%attr(755,root,root) %{python_sitelib}/nested/txt2tags.py
%if 0%{?suse_version} <= 1140
%{python_sitelib}/nested/nested.png
%endif

%changelog
++++++ _service ++++++
<services>
  <service name="download_files"/>
</services>++++++ nested.desktop ++++++
[Desktop Entry]
Encoding=UTF-8
Type=Application
Exec=nested
Icon=nested
Name=Nested
GenericName=Nested Editor
Categories=Utility;TextEditor;
++++++ nested.rpmlintrc ++++++
addFilter("W: file-not-in-%lang")
addFilter("W: untranslated-desktop-file")
addFilter("W: python-naming-policy-not-applied")
addFilter("W: no-manual-page-for-binary")
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to