Hello community,

here is the log from the commit of package python-apptools for openSUSE:Factory 
checked in at 2018-05-29 16:47:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-apptools (Old)
 and      /work/SRC/openSUSE:Factory/.python-apptools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-apptools"

Tue May 29 16:47:26 2018 rev:1 rq:605797 version:4.4.0

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

--- /dev/null   2018-05-24 09:31:19.417470950 +0200
+++ /work/SRC/openSUSE:Factory/.python-apptools.new/python-apptools.changes     
2018-05-29 16:47:29.682372118 +0200
@@ -0,0 +1,58 @@
+-------------------------------------------------------------------
+Wed May  9 14:08:07 UTC 2018 - [email protected]
+
+- Use license tag
+
+-------------------------------------------------------------------
+Wed Aug 23 20:31:50 UTC 2017 - [email protected]
+
+- Implement single-spec version
+- Update to 4.4.0
+  * Apptools now works with Python-3.x. (#54)
+  * Travis-ci support with testing on Python 2.6, 2.7 and 3.4. (#55)
+
+-------------------------------------------------------------------
+Sun May 24 11:09:57 UTC 2015 - [email protected]
+
+- Update to 4.3.0
+  * Apptools now have a changelog!
+  * Preferences system defaults to utf-8 encoded string with ConfigObj 
providing
+    better support for unicode in the PreferenceHelper (#41, #45).
+  * Added a traitsified backport of Python 3's lru_cache (#39).
+  * Added PyTables support to the io submodule (#19, #20, and #24 through #34).
+  * Added a SelectionService for managing selections within an application 
(#15, #16, #17,
+    #23).
+
+-------------------------------------------------------------------
+Mon Oct 13 15:40:37 UTC 2014 - [email protected]
+
+- Update to 4.2.1
+  * no changelog
+- Update source to pypi url.
+
+-------------------------------------------------------------------
+Thu Oct 24 10:58:48 UTC 2013 - [email protected]
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+-------------------------------------------------------------------
+Sat Apr 20 15:35:16 UTC 2013 - [email protected]
+
+- Added a note about being part of the Enthought Tool Suite (ETS).
+
+-------------------------------------------------------------------
+Thu Apr 18 12:12:24 UTC 2013 - [email protected]
+
+- Update to 4.2.0
+  * no changelog
+
+-------------------------------------------------------------------
+Tue May 22 10:23:36 UTC 2012 - [email protected]
+
+- Update to 4.1.0
+
+-------------------------------------------------------------------
+Thu Jan 12 14:55:33 UTC 2012 - [email protected]
+
+- Initial version
+

New:
----
  apptools-4.4.0.tar.gz
  python-apptools.changes
  python-apptools.spec

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

Other differences:
------------------
++++++ python-apptools.spec ++++++
#
# spec file for package python-apptools
#
# Copyright (c) 2018 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/
#


%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define         X_display         ":98"
%bcond_with     test
Name:           python-apptools
Version:        4.4.0
Release:        0
Summary:        Application tools in Python
License:        BSD-3-Clause and LGPL-2.1 and LGPL-3.0
# Source code is under BSD but images are under different licenses
# and details are inside image_LICENSE.txt
Group:          Development/Libraries/Python
Url:            https://github.enthought.com/apptools
Source:         
https://files.pythonhosted.org/packages/source/a/apptools/apptools-%{version}.tar.gz
BuildRequires:  %{python_module configobj}
BuildRequires:  %{python_module devel}
BuildRequires:  %{python_module setuptools}
BuildRequires:  %{python_module traits}
BuildRequires:  fdupes
BuildRequires:  python-rpm-macros
%if %{with test}
BuildRequires:  %{python_module Pygments}
BuildRequires:  %{python_module nose}
BuildRequires:  %{python_module pandas}
BuildRequires:  %{python_module tables}
BuildRequires:  %{python_module traitsui}
BuildRequires:  xorg-x11-server
%endif
Requires:       python-configobj
Requires:       python-traits
Recommends:     python-pandas
Recommends:     python-tables
BuildArch:      noarch

%python_subpackages

%description
The apptools project includes a set of packages that Enthought has found
useful in creating a number of applications.  They implement functionality
that is commonly needed by many applications.

Part of the Enthought Tool Suite (ETS).

%prep
%setup -q -n apptools-%{version}
# Fix wrong-script-interpreter
sed -i "s|#!/usr/bin/env python|#!%__python3|" examples/permissions/server/*.py
%fdupes examples/

%build
%python_build

%install
%python_install
%{python_expand chmod a+x 
%{buildroot}%{$python_sitelib}/apptools/lru_cache/tests/test_lru_cache.py
sed -i "s|^#!/usr/bin/env python$|#!%__$python|" 
%{buildroot}%{$python_sitelib}/apptools/lru_cache/tests/test_lru_cache.py
%fdupes %{buildroot}%{$python_sitelib}
$python -m compileall -d %{$python_sitelib} 
%{buildroot}%{$python_sitelib}/apptools/
$python -O -m compileall -d %{$python_sitelib} 
%{buildroot}%{$python_sitelib}/apptools/
%fdupes %{buildroot}%{$python_sitelib}/apptools/lru_cache/tests/
}

%if %{with test}
%check
export DISPLAY=%{X_display}
Xvfb %{X_display} >& Xvfb.log &
trap "kill $! || true" EXIT
sleep 10

%{python_expand mkdir tester_%{$python_bin_suffix}
pushd tester_%{$python_bin_suffix}
export PYTHONPATH=%{buildroot}%{$python_sitelib}
$python -B -m nose.core -v apptools
popd
}
%endif

%files %{python_files}
%defattr(-,root,root,-)
%doc README.rst TODO.txt CHANGES.txt
%doc examples/
%license LICENSE.txt image_LICENSE*.txt
%{python_sitelib}/apptools/
%{python_sitelib}/apptools-%{version}-py*.egg-info

%changelog

Reply via email to