Hello community,
here is the log from the commit of package python-simplekml for
openSUSE:Factory checked in at 2020-04-16 23:01:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-simplekml (Old)
and /work/SRC/openSUSE:Factory/.python-simplekml.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-simplekml"
Thu Apr 16 23:01:47 2020 rev:4 rq:794252 version:1.3.5
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-simplekml/python-simplekml.changes
2020-03-18 12:45:59.308977301 +0100
+++
/work/SRC/openSUSE:Factory/.python-simplekml.new.2738/python-simplekml.changes
2020-04-16 23:02:10.215623895 +0200
@@ -1,0 +2,7 @@
+Wed Apr 15 14:30:56 UTC 2020 - Marketa Calabkova <[email protected]>
+
+- update to 1.3.5
+ * moved from Bitbucket to GitHub
+ * Python 3.8 support
+
+-------------------------------------------------------------------
Old:
----
simplekml-1.3.3.tar.gz
New:
----
simplekml-1.3.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-simplekml.spec ++++++
--- /var/tmp/diff_new_pack.slQ0OY/_old 2020-04-16 23:02:11.211624645 +0200
+++ /var/tmp/diff_new_pack.slQ0OY/_new 2020-04-16 23:02:11.215624648 +0200
@@ -19,14 +19,13 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-simplekml
-Version: 1.3.3
+Version: 1.3.5
Release: 0
Summary: A Simple KML creator
-#HG-Clone: https://bitbucket.org/KyleLancaster/simplekml
License: LGPL-3.0-or-later
URL: http://readthedocs.org/projects/simplekml/
Source:
https://files.pythonhosted.org/packages/source/s/simplekml/simplekml-%{version}.tar.gz
-Source1:
https://bitbucket.org/KyleLancaster/simplekml/raw/76ac20169865b793aa0ed574f12651e96562570d/LICENSE.txt
+Source1:
https://raw.githubusercontent.com/eisoldt/simplekml/master/LICENSE.txt
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -42,7 +41,7 @@
%prep
%setup -q -n simplekml-%{version}
-sed -i 's/\r$//' README.txt
+sed -i 's/\r$//' README.md
cp %{SOURCE1} .
%build
@@ -57,7 +56,7 @@
%files %{python_files}
%license LICENSE.txt
-%doc README.txt
+%doc README.md
%{python_sitelib}/simplekml
%{python_sitelib}/simplekml-%{version}-py%{python_version}.egg-info
++++++ simplekml-1.3.3.tar.gz -> simplekml-1.3.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/PKG-INFO new/simplekml-1.3.5/PKG-INFO
--- old/simplekml-1.3.3/PKG-INFO 2020-01-28 15:53:55.000000000 +0100
+++ new/simplekml-1.3.5/PKG-INFO 2020-04-02 14:19:10.123836500 +0200
@@ -1,32 +1,33 @@
-Metadata-Version: 1.1
-Name: simplekml
-Version: 1.3.3
-Summary: A Simple KML creator
-Home-page: http://readthedocs.org/projects/simplekml/
-Author: 2011-2016 Kyle Lancaster | 2019 Patrick Eisoldt
-Author-email: [email protected]
-License: GNU Lesser General Public License v3+
-Description: Simplekml is a python package which enables you to generate KML
with as little effort as possible.
-
- At the time of making this package nothing was available (at least I
could not find anything) that could create KML files easily. You needed a lot
of bloated code to even create a simple point. This is understandable because
the KML standard is quite extensive, but what if you just work with the simple
elements of KML like Document, Folder, Point, LineString and Polygon? This
package supports those elements and everything documented in the KML Reference.
With simplekml creating a KML file containing a point as simple as::
-
- import simplekml
- kml = simplekml.Kml()
- kml.newpoint(name="Kirstenbosch", coords=[(18.432314,-33.988862)])
- kml.save("botanicalgarden.kml")
-
- See the Homepage_ for usage, documentation and a reference.
-
- .. _Homepage: http://readthedocs.org/projects/simplekml/
-
-
-Platform: UNKNOWN
-Classifier: Development Status :: 5 - Production/Stable
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.8
-Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or
later (LGPLv3+)
-Classifier: Operating System :: OS Independent
-Classifier: Topic :: Scientific/Engineering :: GIS
-Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Metadata-Version: 2.1
+Name: simplekml
+Version: 1.3.5
+Summary: A Simple KML creator
+Home-page: http://readthedocs.org/projects/simplekml/
+Author: 2011-2016 Kyle Lancaster | 2019 Patrick Eisoldt
+Author-email: [email protected]
+License: GNU Lesser General Public License v3+
+Description: Simplekml is a python package which enables you to generate KML
with as little effort as possible.
+
+ At the time of making this package nothing was available (at least I
could not find anything) that could create KML files easily. You needed a lot
of bloated code to even create a simple point. This is understandable because
the KML standard is quite extensive, but what if you just work with the simple
elements of KML like Document, Folder, Point, LineString and Polygon? This
package supports those elements and everything documented in the KML Reference.
With simplekml creating a KML file containing a point as simple as:
+
+ ```python
+ import simplekml
+ kml = simplekml.Kml()
+ kml.newpoint(name="Kirstenbosch", coords=[(18.432314,-33.988862)])
+ kml.save("botanicalgarden.kml")
+ ```
+
+ See the [Homepage](http://readthedocs.org/projects/simplekml/) for
usage, documentation and a reference.
+
+
+Platform: UNKNOWN
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.8
+Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or
later (LGPLv3+)
+Classifier: Operating System :: OS Independent
+Classifier: Topic :: Scientific/Engineering :: GIS
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/README.md
new/simplekml-1.3.5/README.md
--- old/simplekml-1.3.3/README.md 1970-01-01 01:00:00.000000000 +0100
+++ new/simplekml-1.3.5/README.md 2020-04-02 14:13:57.000000000 +0200
@@ -0,0 +1,13 @@
+Simplekml is a python package which enables you to generate KML with as little
effort as possible.
+
+At the time of making this package nothing was available (at least I could not
find anything) that could create KML files easily. You needed a lot of bloated
code to even create a simple point. This is understandable because the KML
standard is quite extensive, but what if you just work with the simple elements
of KML like Document, Folder, Point, LineString and Polygon? This package
supports those elements and everything documented in the KML Reference. With
simplekml creating a KML file containing a point as simple as:
+
+```python
+import simplekml
+kml = simplekml.Kml()
+kml.newpoint(name="Kirstenbosch", coords=[(18.432314,-33.988862)])
+kml.save("botanicalgarden.kml")
+```
+
+See the [Homepage](http://readthedocs.org/projects/simplekml/) for usage,
documentation and a reference.
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/README.txt
new/simplekml-1.3.5/README.txt
--- old/simplekml-1.3.3/README.txt 2020-01-28 13:17:24.000000000 +0100
+++ new/simplekml-1.3.5/README.txt 1970-01-01 01:00:00.000000000 +0100
@@ -1,13 +0,0 @@
-Simplekml is a python package which enables you to generate KML with as little
effort as possible.
-
-At the time of making this package nothing was available (at least I could not
find anything) that could create KML files easily. You needed a lot of bloated
code to even create a simple point. This is understandable because the KML
standard is quite extensive, but what if you just work with the simple elements
of KML like Document, Folder, Point, LineString and Polygon? This package
supports those elements and everything documented in the KML Reference. With
simplekml creating a KML file containing a point as simple as::
-
- import simplekml
- kml = simplekml.Kml()
- kml.newpoint(name="Kirstenbosch", coords=[(18.432314,-33.988862)])
- kml.save("botanicalgarden.kml")
-
-See the Homepage_ for usage, documentation and a reference.
-
-.. _Homepage: http://readthedocs.org/projects/simplekml/
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/setup.cfg
new/simplekml-1.3.5/setup.cfg
--- old/simplekml-1.3.3/setup.cfg 1970-01-01 01:00:00.000000000 +0100
+++ new/simplekml-1.3.5/setup.cfg 2020-04-02 14:19:10.124836200 +0200
@@ -0,0 +1,4 @@
+[egg_info]
+tag_build =
+tag_date = 0
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/setup.py new/simplekml-1.3.5/setup.py
--- old/simplekml-1.3.3/setup.py 2020-01-28 15:53:47.000000000 +0100
+++ new/simplekml-1.3.5/setup.py 2020-04-02 14:14:29.000000000 +0200
@@ -16,12 +16,12 @@
"""
-from distutils.core import setup
+import setuptools
-setup(
+setuptools.setup(
name = 'simplekml',
packages = ['simplekml'],
- version = '1.3.3',
+ version = '1.3.5',
description = 'A Simple KML creator',
author='2011-2016 Kyle Lancaster | 2019 Patrick Eisoldt',
author_email='[email protected]',
@@ -38,5 +38,6 @@
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules'
],
- long_description=open('README.txt').read()
+ long_description=open('README.md').read(),
+ long_description_content_type='text/markdown'
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/simplekml/constants.py
new/simplekml-1.3.5/simplekml/constants.py
--- old/simplekml-1.3.3/simplekml/constants.py 2020-01-28 14:01:44.000000000
+0100
+++ new/simplekml-1.3.5/simplekml/constants.py 2020-04-02 11:11:55.000000000
+0200
@@ -61,7 +61,7 @@
class Units(object):
"""Units constants."""
- pixel = 'pixel'
+ pixels = 'pixels'
fraction = 'fraction'
insetpixels = 'insetPixels'
@@ -82,7 +82,7 @@
class RefreshMode(object):
"""RefreshMode constants."""
onchange = 'onChange'
- oninterval = 'onInterval '
+ oninterval = 'onInterval'
onexpire = 'onExpire'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/simplekml/featgeom.py
new/simplekml-1.3.5/simplekml/featgeom.py
--- old/simplekml-1.3.3/simplekml/featgeom.py 2020-01-28 14:02:04.000000000
+0100
+++ new/simplekml-1.3.5/simplekml/featgeom.py 2020-04-02 11:09:02.000000000
+0200
@@ -1770,7 +1770,7 @@
screen.icon.href =
'http://simplekml.googlecode.com/hg/samples/resources/simplekml-logo.png'
screen.overlayxy =
simplekml.OverlayXY(x=0,y=1,xunits=simplekml.Units.fraction,
yunits=simplekml.Units.fraction)
- screen.screenxy =
simplekml.ScreenXY(x=15,y=15,xunits=simplekml.Units.pixel,
+ screen.screenxy =
simplekml.ScreenXY(x=15,y=15,xunits=simplekml.Units.pixels,
yunits=simplekml.Units.insetpixels)
screen.size.x = -1
screen.size.y = -1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/simplekml.egg-info/PKG-INFO
new/simplekml-1.3.5/simplekml.egg-info/PKG-INFO
--- old/simplekml-1.3.3/simplekml.egg-info/PKG-INFO 1970-01-01
01:00:00.000000000 +0100
+++ new/simplekml-1.3.5/simplekml.egg-info/PKG-INFO 2020-04-02
14:19:09.000000000 +0200
@@ -0,0 +1,33 @@
+Metadata-Version: 2.1
+Name: simplekml
+Version: 1.3.5
+Summary: A Simple KML creator
+Home-page: http://readthedocs.org/projects/simplekml/
+Author: 2011-2016 Kyle Lancaster | 2019 Patrick Eisoldt
+Author-email: [email protected]
+License: GNU Lesser General Public License v3+
+Description: Simplekml is a python package which enables you to generate KML
with as little effort as possible.
+
+ At the time of making this package nothing was available (at least I
could not find anything) that could create KML files easily. You needed a lot
of bloated code to even create a simple point. This is understandable because
the KML standard is quite extensive, but what if you just work with the simple
elements of KML like Document, Folder, Point, LineString and Polygon? This
package supports those elements and everything documented in the KML Reference.
With simplekml creating a KML file containing a point as simple as:
+
+ ```python
+ import simplekml
+ kml = simplekml.Kml()
+ kml.newpoint(name="Kirstenbosch", coords=[(18.432314,-33.988862)])
+ kml.save("botanicalgarden.kml")
+ ```
+
+ See the [Homepage](http://readthedocs.org/projects/simplekml/) for
usage, documentation and a reference.
+
+
+Platform: UNKNOWN
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.8
+Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or
later (LGPLv3+)
+Classifier: Operating System :: OS Independent
+Classifier: Topic :: Scientific/Engineering :: GIS
+Classifier: Topic :: Software Development :: Libraries :: Python Modules
+Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/simplekml.egg-info/SOURCES.txt
new/simplekml-1.3.5/simplekml.egg-info/SOURCES.txt
--- old/simplekml-1.3.3/simplekml.egg-info/SOURCES.txt 1970-01-01
01:00:00.000000000 +0100
+++ new/simplekml-1.3.5/simplekml.egg-info/SOURCES.txt 2020-04-02
14:19:09.000000000 +0200
@@ -0,0 +1,24 @@
+README.md
+setup.py
+simplekml/__init__.py
+simplekml/abstractview.py
+simplekml/base.py
+simplekml/constants.py
+simplekml/coordinates.py
+simplekml/featgeom.py
+simplekml/icon.py
+simplekml/kml.py
+simplekml/makeunicode.py
+simplekml/model.py
+simplekml/networklinkcontrol.py
+simplekml/overlay.py
+simplekml/region.py
+simplekml/schema.py
+simplekml/styleselector.py
+simplekml/substyle.py
+simplekml/timeprimitive.py
+simplekml/tour.py
+simplekml.egg-info/PKG-INFO
+simplekml.egg-info/SOURCES.txt
+simplekml.egg-info/dependency_links.txt
+simplekml.egg-info/top_level.txt
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/simplekml-1.3.3/simplekml.egg-info/dependency_links.txt
new/simplekml-1.3.5/simplekml.egg-info/dependency_links.txt
--- old/simplekml-1.3.3/simplekml.egg-info/dependency_links.txt 1970-01-01
01:00:00.000000000 +0100
+++ new/simplekml-1.3.5/simplekml.egg-info/dependency_links.txt 2020-04-02
14:19:09.000000000 +0200
@@ -0,0 +1 @@
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplekml-1.3.3/simplekml.egg-info/top_level.txt
new/simplekml-1.3.5/simplekml.egg-info/top_level.txt
--- old/simplekml-1.3.3/simplekml.egg-info/top_level.txt 1970-01-01
01:00:00.000000000 +0100
+++ new/simplekml-1.3.5/simplekml.egg-info/top_level.txt 2020-04-02
14:19:09.000000000 +0200
@@ -0,0 +1 @@
+simplekml