Hello community,

here is the log from the commit of package python-d2to1 for openSUSE:Factory 
checked in at 2013-01-17 15:19:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-d2to1 (Old)
 and      /work/SRC/openSUSE:Factory/.python-d2to1.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-d2to1", Maintainer is ""

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

--- /dev/null   2013-01-09 19:40:42.352580873 +0100
+++ /work/SRC/openSUSE:Factory/.python-d2to1.new/python-d2to1.changes   
2013-01-17 15:19:27.000000000 +0100
@@ -0,0 +1,12 @@
+-------------------------------------------------------------------
+Tue Aug 21 03:07:01 UTC 2012 - highwaystar...@gmail.com
+
+- update to new release 0.2.7
+- python3 package added
+- spec improved
+
+-------------------------------------------------------------------
+Thu Nov 03 11:49:53 +0400 2011 - matwey.korni...@gmail.com
+
+ - initial version
+ 
New Changes file:

--- /dev/null   2013-01-09 19:40:42.352580873 +0100
+++ /work/SRC/openSUSE:Factory/.python-d2to1.new/python3-d2to1.changes  
2013-01-17 15:19:27.000000000 +0100
@@ -0,0 +1,13 @@
+-------------------------------------------------------------------
+Thu Sep  6 09:28:27 UTC 2012 - toddrme2...@gmail.com
+
+- Restore BuildRequires: python3  This package depends on hash
+  algorithms that are only available if python3 is installed,
+  python3-devel will not pull them in.  Building will fail if 
+  BuildRequires: python3 is removed.
+
+-------------------------------------------------------------------
+Tue Aug 21 03:06:47 UTC 2012 - highwaystar...@gmail.com
+
+- python3 package added 
+

New:
----
  d2to1-0.2.7.tar.gz
  python-d2to1.changes
  python-d2to1.spec
  python3-d2to1.changes
  python3-d2to1.spec

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

Other differences:
------------------
++++++ python-d2to1.spec ++++++
#
# spec file for package python-d2to1
#
# 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/
#

# norootforbuild
%{!?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(1)")}

%define mod_name d2to1

Name:           python-%{mod_name}
Version:        0.2.7
Release:        0
Url:            http://pypi.python.org/pypi/d2to1
Summary:        Allows using distutils2-like setup.cfg with a 
distribute/setuptools
License:        BSD-3-Clause
Group:          Development/Languages/Python
Source:         %{mod_name}-%{version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python-devel python-distribute
BuildRequires:  fdupes
%if 0%{?suse_version}
%py_requires
%if %{?suse_version: %{suse_version} > 1110}
BuildArch:      noarch
%endif
%endif

%description
d2to1 (the 'd' is for 'distutils') allows using distutils2-like setup.cfg files 
for a package's metadata with a distribute/setuptools setup.py script.  It 
works by providing a distutils2-formatted setup.cfg file containing all of a 
package's metadata, and a very minimal setup.py which will slurp its arguments 
from the setup.cfg.

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

%build
export CFLAGS="%{optflags}"
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%fdupes %{buildroot}%{py_sitedir}

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc CHANGES LICENSE README
%{python_sitelib}/%{mod_name}/
%{python_sitelib}/%{mod_name}-%{version}-py%{py_ver}.egg-info
++++++ python3-d2to1.spec ++++++
#
# spec file for package python-d2to1
#
# 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/
#

# norootforbuild

%define mod_name d2to1

Name:           python3-%{mod_name}
Version:        0.2.7
Release:        0
Url:            http://pypi.python.org/pypi/d2to1
Summary:        Allows using distutils2-like setup.cfg with a 
distribute/setuptools
License:        BSD-3-Clause
Group:          Development/Languages/Python
Source:         %{mod_name}-%{version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  python3
BuildRequires:  python3-devel 
BuildRequires:  python3-2to3
BuildRequires:  python3-distribute
BuildRequires:  fdupes

%if 0%{?suse_version} && 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)}
%endif
Requires:       python(abi) = %{py3_ver}
%if 0%{?suse_version} && 0%{?suse_version} > 1140
BuildRequires:  python3-base
%endif

%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
BuildArchitectures: noarch
%endif

%description
d2to1 (the 'd' is for 'distutils') allows using distutils2-like setup.cfg files 
for a package's metadata with a distribute/setuptools setup.py script.  It 
works by providing a distutils2-formatted setup.cfg file containing all of a 
package's metadata, and a very minimal setup.py which will slurp its arguments 
from the setup.cfg.

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

%build
export CFLAGS="%{optflags}"
python3 setup.py build

%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%fdupes $RPM_BUILD_ROOT%{py_sitedir}

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc CHANGES LICENSE README
%{python3_sitelib}/%{mod_name}/
%{python3_sitelib}/%{mod_name}-%{version}-py%{py3_ver}.egg-info
%if 0%{?suse_version} <= 1140
%dir %{_prefix}/lib/python%{py3_ver}
%dir %{python3_sitelib}
%endif--
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to