Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-xattr for openSUSE:Factory 
checked in at 2022-10-31 10:44:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-xattr (Old)
 and      /work/SRC/openSUSE:Factory/.python-xattr.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-xattr"

Mon Oct 31 10:44:39 2022 rev:24 rq:1032327 version:0.10.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-xattr/python-xattr.changes        
2022-01-05 13:39:41.849522979 +0100
+++ /work/SRC/openSUSE:Factory/.python-xattr.new.2275/python-xattr.changes      
2022-10-31 10:44:43.468861220 +0100
@@ -1,0 +2,11 @@
+Sat Oct 29 17:58:43 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com>
+
+- Update to 0.10.0 
+  * Remove exec flag from tool.py
+  https://github.com/xattr/xattr/pull/106
+  * Update the documentation to mention
+  the attr package and its getfattr and
+  setfattr tools
+  https://github.com/xattr/xattr/pull/103
+
+-------------------------------------------------------------------

Old:
----
  xattr-0.9.9.tar.gz

New:
----
  xattr-0.10.0.tar.gz

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

Other differences:
------------------
++++++ python-xattr.spec ++++++
--- /var/tmp/diff_new_pack.bZdqac/_old  2022-10-31 10:44:44.036864082 +0100
+++ /var/tmp/diff_new_pack.bZdqac/_new  2022-10-31 10:44:44.040864102 +0100
@@ -16,9 +16,8 @@
 #
 
 
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-xattr
-Version:        0.9.9
+Version:        0.10.0
 Release:        0
 Summary:        Python wrapper for extended filesystem attributes
 License:        MIT
@@ -63,7 +62,7 @@
 
 %check
 export LC_ALL=en_US.utf-8
-%python_exec -m unittest discover
+%pyunittest discover -v
 
 %post
 %python_install_alternative xattr

++++++ xattr-0.9.9.tar.gz -> xattr-0.10.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xattr-0.9.9/CHANGES.txt new/xattr-0.10.0/CHANGES.txt
--- old/xattr-0.9.9/CHANGES.txt 2021-12-11 18:49:54.000000000 +0100
+++ new/xattr-0.10.0/CHANGES.txt        2022-10-24 19:05:48.000000000 +0200
@@ -1,3 +1,12 @@
+Version 0.10.0 released 2022-10-24
+
+* Remove exec flag from tool.py
+  https://github.com/xattr/xattr/pull/106
+* Update the documentation to mention
+  the attr package and its getfattr and
+  setfattr tools
+  https://github.com/xattr/xattr/pull/103
+
 Version 0.9.9 released 2021-12-11
 
 * Fix regression in xattr console script
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xattr-0.9.9/PKG-INFO new/xattr-0.10.0/PKG-INFO
--- old/xattr-0.9.9/PKG-INFO    2021-12-11 18:49:57.204231700 +0100
+++ new/xattr-0.10.0/PKG-INFO   2022-10-24 19:05:57.890291200 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: xattr
-Version: 0.9.9
+Version: 0.10.0
 Summary: Python wrapper for extended filesystem attributes
 Home-page: http://github.com/xattr/xattr
 Author: Bob Ippolito
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xattr-0.9.9/README.rst new/xattr-0.10.0/README.rst
--- old/xattr-0.9.9/README.rst  2021-12-11 18:49:54.000000000 +0100
+++ new/xattr-0.10.0/README.rst 2022-10-24 19:05:48.000000000 +0200
@@ -6,6 +6,11 @@
 
 xattr is a Python wrapper for extended filesystem attributes.
 
+xattr also ships with an `xattr` command line tool for viewing and
+editing extended filesystem attributes. On platforms that support or
+ship with the attr package, you may prefer to use the `getfattr`
+and `setfattr` command line tools from the attr package.
+
 Extended attributes extend the basic attributes of files and directories
 in the file system.  They are stored as name:data pairs associated with
 file system objects (files, directories, symlinks, etc).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xattr-0.9.9/setup.py new/xattr-0.10.0/setup.py
--- old/xattr-0.9.9/setup.py    2021-12-11 18:49:54.000000000 +0100
+++ new/xattr-0.10.0/setup.py   2022-10-24 19:05:48.000000000 +0200
@@ -5,7 +5,7 @@
 
 from setuptools import setup
 
-VERSION = '0.9.9'
+VERSION = '0.10.0'
 DESCRIPTION = "Python wrapper for extended filesystem attributes"
 LONG_DESCRIPTION = """
 Extended attributes extend the basic attributes of files and directories
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xattr-0.9.9/xattr/__init__.py 
new/xattr-0.10.0/xattr/__init__.py
--- old/xattr-0.9.9/xattr/__init__.py   2021-12-11 18:49:54.000000000 +0100
+++ new/xattr-0.10.0/xattr/__init__.py  2022-10-24 19:05:48.000000000 +0200
@@ -7,7 +7,7 @@
 that exposes these extended attributes.
 """
 
-__version__ = '0.9.9'
+__version__ = '0.10.0'
 
 from .compat import integer_types
 from .lib import (XATTR_NOFOLLOW, XATTR_CREATE, XATTR_REPLACE,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xattr-0.9.9/xattr/tool.py 
new/xattr-0.10.0/xattr/tool.py
--- old/xattr-0.9.9/xattr/tool.py       2021-12-11 18:49:54.000000000 +0100
+++ new/xattr-0.10.0/xattr/tool.py      2022-10-24 19:05:48.000000000 +0200
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-
 ##
 # Copyright (c) 2007 Apple Inc.
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xattr-0.9.9/xattr.egg-info/PKG-INFO 
new/xattr-0.10.0/xattr.egg-info/PKG-INFO
--- old/xattr-0.9.9/xattr.egg-info/PKG-INFO     2021-12-11 18:49:57.000000000 
+0100
+++ new/xattr-0.10.0/xattr.egg-info/PKG-INFO    2022-10-24 19:05:57.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: xattr
-Version: 0.9.9
+Version: 0.10.0
 Summary: Python wrapper for extended filesystem attributes
 Home-page: http://github.com/xattr/xattr
 Author: Bob Ippolito

Reply via email to