Hello community,

here is the log from the commit of package python3-python-editor for 
openSUSE:Factory checked in at 2016-07-15 12:48:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-python-editor (Old)
 and      /work/SRC/openSUSE:Factory/.python3-python-editor.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-python-editor"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python3-python-editor/python3-python-editor.changes  
    2016-05-25 21:25:55.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-python-editor.new/python3-python-editor.changes
 2016-07-15 12:48:38.000000000 +0200
@@ -1,0 +2,9 @@
+Sat Jun 25 15:40:20 UTC 2016 - [email protected]
+
+- update to version 1.0.1:
+  * Bump version to 1.0.1
+  * Bump release classifier from beta -> stable
+  * Postprocess README.md with pypandoc if available for
+    `long_description`
+
+-------------------------------------------------------------------
@@ -6 +14,0 @@
-

Old:
----
  python-editor-1.0.tar.gz

New:
----
  python-editor-1.0.1.tar.gz

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

Other differences:
------------------
++++++ python3-python-editor.spec ++++++
--- /var/tmp/diff_new_pack.v3GXa3/_old  2016-07-15 12:48:41.000000000 +0200
+++ /var/tmp/diff_new_pack.v3GXa3/_new  2016-07-15 12:48:41.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           python3-python-editor
-Version:        1.0
+Version:        1.0.1
 Release:        0
 Summary:        Programmatically open an editor, capture the result
 License:        Apache-2.0

++++++ python-editor-1.0.tar.gz -> python-editor-1.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-editor-1.0/PKG-INFO 
new/python-editor-1.0.1/PKG-INFO
--- old/python-editor-1.0/PKG-INFO      2016-04-01 17:14:52.000000000 +0200
+++ new/python-editor-1.0.1/PKG-INFO    2016-06-14 21:28:03.000000000 +0200
@@ -1,15 +1,55 @@
 Metadata-Version: 1.1
 Name: python-editor
-Version: 1.0
+Version: 1.0.1
 Summary: Programmatically open an editor, capture the result.
 Home-page: https://github.com/fmoo/python-editor
 Author: Peter Ruibal
 Author-email: [email protected]
 License: Apache
-Description: UNKNOWN
+Description: ``python-editor`` is a library that provides the ``editor`` 
module for
+        programmatically interfacing with your system's $EDITOR.
+        
+        Examples
+        --------
+        
+        .. code:: python
+        
+            import editor
+            commit_msg = editor.edit(contents="# Enter commit message here")
+        
+        Opens an editor, prefilled with the contents,
+        ``# Enter commit message here``. When the editor is closed, returns the
+        contents in variable ``commit_msg``.
+        
+        .. code:: python
+        
+            import editor
+            editor.edit(file="README.txt")
+        
+        Opens README.txt in an editor. Changes are saved in place.
+        
+        How it Works
+        ------------
+        
+        ``editor`` first looks for the ${EDITOR} environment variable. If set,
+        it uses the value as-is, without fallbacks.
+        
+        If no $EDITOR is set, editor will search through a list of known
+        editors, and use the first one that exists on the system.
+        
+        For example, on Linux, ``editor`` will look for the following editors 
in
+        order:
+        
+        -  vim
+        -  emacs
+        -  nano
+        
+        When calling the ``edit()`` function, ``editor`` will open the editor 
in
+        a subprocess, inheriting the parent process's stdin, stdout
+        
 Keywords: editor library vim emacs
 Platform: UNKNOWN
-Classifier: Development Status :: 4 - Beta
+Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: Apache Software License
 Classifier: Operating System :: OS Independent
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-editor-1.0/python_editor.egg-info/PKG-INFO 
new/python-editor-1.0.1/python_editor.egg-info/PKG-INFO
--- old/python-editor-1.0/python_editor.egg-info/PKG-INFO       2016-04-01 
17:14:52.000000000 +0200
+++ new/python-editor-1.0.1/python_editor.egg-info/PKG-INFO     2016-06-14 
21:28:03.000000000 +0200
@@ -1,15 +1,55 @@
 Metadata-Version: 1.1
 Name: python-editor
-Version: 1.0
+Version: 1.0.1
 Summary: Programmatically open an editor, capture the result.
 Home-page: https://github.com/fmoo/python-editor
 Author: Peter Ruibal
 Author-email: [email protected]
 License: Apache
-Description: UNKNOWN
+Description: ``python-editor`` is a library that provides the ``editor`` 
module for
+        programmatically interfacing with your system's $EDITOR.
+        
+        Examples
+        --------
+        
+        .. code:: python
+        
+            import editor
+            commit_msg = editor.edit(contents="# Enter commit message here")
+        
+        Opens an editor, prefilled with the contents,
+        ``# Enter commit message here``. When the editor is closed, returns the
+        contents in variable ``commit_msg``.
+        
+        .. code:: python
+        
+            import editor
+            editor.edit(file="README.txt")
+        
+        Opens README.txt in an editor. Changes are saved in place.
+        
+        How it Works
+        ------------
+        
+        ``editor`` first looks for the ${EDITOR} environment variable. If set,
+        it uses the value as-is, without fallbacks.
+        
+        If no $EDITOR is set, editor will search through a list of known
+        editors, and use the first one that exists on the system.
+        
+        For example, on Linux, ``editor`` will look for the following editors 
in
+        order:
+        
+        -  vim
+        -  emacs
+        -  nano
+        
+        When calling the ``edit()`` function, ``editor`` will open the editor 
in
+        a subprocess, inheriting the parent process's stdin, stdout
+        
 Keywords: editor library vim emacs
 Platform: UNKNOWN
-Classifier: Development Status :: 4 - Beta
+Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: Apache Software License
 Classifier: Operating System :: OS Independent
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-editor-1.0/setup.py 
new/python-editor-1.0.1/setup.py
--- old/python-editor-1.0/setup.py      2016-04-01 17:13:24.000000000 +0200
+++ new/python-editor-1.0.1/setup.py    2016-06-14 18:45:56.000000000 +0200
@@ -1,14 +1,19 @@
-from setuptools import setup
+__VERSION__ = '1.0.1'
 
-version = '1.0'
+from setuptools import setup
+try:
+    import pypandoc
+    long_description = pypandoc.convert('README.md', 'rst')
+except ImportError:
+    long_description = None
 
 setup(
     name='python-editor',
-    version=version,
+    version=__VERSION__,
     description="Programmatically open an editor, capture the result.",
-    #long_description='',
+    long_description=long_description,
     classifiers=[
-        'Development Status :: 4 - Beta',
+        'Development Status :: 5 - Production/Stable',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: Apache Software License',
         'Operating System :: OS Independent',


Reply via email to