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-12-09 13:16:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-xattr (Old) and /work/SRC/openSUSE:Factory/.python-xattr.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-xattr" Fri Dec 9 13:16:36 2022 rev:25 rq:1041377 version:0.10.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-xattr/python-xattr.changes 2022-10-31 10:44:43.468861220 +0100 +++ /work/SRC/openSUSE:Factory/.python-xattr.new.1835/python-xattr.changes 2022-12-09 13:16:39.686644849 +0100 @@ -1,0 +2,9 @@ +Wed Dec 7 22:43:52 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to v0.10.1 + * Update github actions + * https://github.com/xattr/xattr/issues/112 + * Updated README to add reference to osxmetadata + * https://github.com/xattr/xattr/pull/110 + +------------------------------------------------------------------- Old: ---- xattr-0.10.0.tar.gz New: ---- xattr-0.10.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-xattr.spec ++++++ --- /var/tmp/diff_new_pack.a5fd2v/_old 2022-12-09 13:16:40.178647462 +0100 +++ /var/tmp/diff_new_pack.a5fd2v/_new 2022-12-09 13:16:40.182647483 +0100 @@ -17,7 +17,7 @@ Name: python-xattr -Version: 0.10.0 +Version: 0.10.1 Release: 0 Summary: Python wrapper for extended filesystem attributes License: MIT ++++++ xattr-0.10.0.tar.gz -> xattr-0.10.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xattr-0.10.0/CHANGES.txt new/xattr-0.10.1/CHANGES.txt --- old/xattr-0.10.0/CHANGES.txt 2022-10-24 19:05:48.000000000 +0200 +++ new/xattr-0.10.1/CHANGES.txt 2022-12-04 01:11:15.000000000 +0100 @@ -1,3 +1,10 @@ +Version 0.10.1 released 2022-12-03 + +* Update github actions + https://github.com/xattr/xattr/issues/112 +* Updated README to add reference to osxmetadata + https://github.com/xattr/xattr/pull/110 + Version 0.10.0 released 2022-10-24 * Remove exec flag from tool.py diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xattr-0.10.0/PKG-INFO new/xattr-0.10.1/PKG-INFO --- old/xattr-0.10.0/PKG-INFO 2022-10-24 19:05:57.890291200 +0200 +++ new/xattr-0.10.1/PKG-INFO 2022-12-04 01:11:27.651918000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: xattr -Version: 0.10.0 +Version: 0.10.1 Summary: Python wrapper for extended filesystem attributes Home-page: http://github.com/xattr/xattr Author: Bob Ippolito @@ -30,5 +30,3 @@ Extended attributes are currently only available on Darwin 8.0+ (Mac OS X 10.4) and Linux 2.6+. Experimental support is included for Solaris and FreeBSD. - - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xattr-0.10.0/README.rst new/xattr-0.10.1/README.rst --- old/xattr-0.10.0/README.rst 2022-10-24 19:05:48.000000000 +0200 +++ new/xattr-0.10.1/README.rst 2022-12-04 01:11:15.000000000 +0100 @@ -20,3 +20,10 @@ Note: On Linux, custom xattr keys need to be prefixed with the `user` namespace, ie: `user.your_attr`. + +Note: If you need to read or write Spotlight metadata attributes on macOS, +see osxmetadata_ which provides a native macOS means to do so without +directly manipulating extended attributes. osxmetadata also provides access +to other macOS metadata attributes and extended attributes via xattr. + +.. _osxmetadata: https://github.com/RhetTbull/osxmetadata diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xattr-0.10.0/setup.py new/xattr-0.10.1/setup.py --- old/xattr-0.10.0/setup.py 2022-10-24 19:05:48.000000000 +0200 +++ new/xattr-0.10.1/setup.py 2022-12-04 01:11:15.000000000 +0100 @@ -5,7 +5,7 @@ from setuptools import setup -VERSION = '0.10.0' +VERSION = '0.10.1' 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.10.0/xattr/__init__.py new/xattr-0.10.1/xattr/__init__.py --- old/xattr-0.10.0/xattr/__init__.py 2022-10-24 19:05:48.000000000 +0200 +++ new/xattr-0.10.1/xattr/__init__.py 2022-12-04 01:11:15.000000000 +0100 @@ -7,7 +7,7 @@ that exposes these extended attributes. """ -__version__ = '0.10.0' +__version__ = '0.10.1' 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.10.0/xattr.egg-info/PKG-INFO new/xattr-0.10.1/xattr.egg-info/PKG-INFO --- old/xattr-0.10.0/xattr.egg-info/PKG-INFO 2022-10-24 19:05:57.000000000 +0200 +++ new/xattr-0.10.1/xattr.egg-info/PKG-INFO 2022-12-04 01:11:27.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: xattr -Version: 0.10.0 +Version: 0.10.1 Summary: Python wrapper for extended filesystem attributes Home-page: http://github.com/xattr/xattr Author: Bob Ippolito @@ -30,5 +30,3 @@ Extended attributes are currently only available on Darwin 8.0+ (Mac OS X 10.4) and Linux 2.6+. Experimental support is included for Solaris and FreeBSD. - - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xattr-0.10.0/xattr.egg-info/entry_points.txt new/xattr-0.10.1/xattr.egg-info/entry_points.txt --- old/xattr-0.10.0/xattr.egg-info/entry_points.txt 2022-10-24 19:05:57.000000000 +0200 +++ new/xattr-0.10.1/xattr.egg-info/entry_points.txt 2022-12-04 01:11:27.000000000 +0100 @@ -1,3 +1,2 @@ [console_scripts] xattr = xattr.tool:main -