python3-python-daemon-2.3.0-bp156.4.3.1<>,Iȉg8I%z lutL)X!Xf7>)wEm$RFts[xxoU*VA*^@۳laX?mBiqh%򱛻eod a;<\ b*jA^Mc0E Uu$ƫG~/w*c_q?ֱdc~0R0-Ģ>c%AhZ,m*J2fQ(jdeށT|5o\;,+&~+bB]Qn?=]PJb]ŰEHȀ?*K˕~0嚕̀[Oح" sP#,@&JosHiQꊦQjǺ:`ǾpKlWXL1lES-ý6 Ϩ[ٶO ]7XYnL"^J4=W=چGγğDN*_H̺P'' (i~UVyW8SlIv6>><?<d * b&B [x$8$ $ $ X$  <$  `$ $ $X$0L(89X:F2G3$H3$I4($X4LY4P\4d$]4$^7Db8c97d9e9f9l9u:$v:w;$x;$y<(zDirk Müller Matej Cepl Dirk Mueller Jonathan Matej Cepl John Vandenberg John Vandenberg mcepl@suse.comjmatejek@suse.commichael@stroeder.comtbechtold@suse.comtoddrme2178@gmail.comjkeil@suse.combenoit.monin@gmx.fr- build for Python 3.6 and 3.11 (bsc#1228797)- update to 2.3.0: * Remove support for Python versions older than Python 3. Python 2 has been unsupported by the Python project since 2020. * Remove dependency on back-ported `unittest2` and `mock`. Depend instead on standard library `unittest` and `unittest.mock`.- Switch off running of the test suite (https://pagure.io/python-daemon/issue/53).- update to 2.2.4: * Run the Setuptools `egg-info` command as part of the `build` command. * Create the socket and catch “non-socket” errors. * Only deal with a range of file descriptors if the range is not empty. * Declare Twine as a build dependency. * Reformat the change log entries with keepachangelog.com sub-sections.- Skip broken test- Rebuild for jsc#SLE-5706 to be sent to SUSE:SLE-12-SP5:GA.- Add missing GPL license file - Add README to %doc - Drop extra 'doc' subdirectory under %doc - Remove docutils from installed egg-info- Remove unnecessary dependency on python-devel - Remove unnecessary runtime dependency on docutils - Update URL to https://pagure.io/python-daemon/ - Update to v2.2.3 * Use custom fake file type for testing `fileno` behaviour. This works around an incompatibility in Python 2.7 `file` type that caused test cases to fail. * Promote the warning for `runner` module to a `DeprecationWarning`. This has been an unofficial example module from the beginning, and it will be removed in a future version. - from v2.2.2 * Remove from the build system specification a white space character not permitted in TOML format. * Implement test suite automation in virtualenvs, using Tox. - from v2.2.1 * Add a :PEP:`518` conformant build system specification (the ``pyproject.toml`` file). - from v2.2.0 * Correct the description of the return value for `daemon.is_detach_process_context_required`. * Set a sensible default for `Distribution.script_name`. This works around a bug in Setuptools which calls commands before the `Distribution` is initialised. * The test suite now relies on the test discovery feature in ‘unittest’. This feature is in Python version 2.7 and later. * Improve performance of `daemon.close_all_open_files`.- Remove dependency on unittest2- singlespec auto-conversion - update requirements - use pytest as test runner - update to 2.1.2 * Ensure custom types are part of the Python type hierarchy. * Raise a warning that the ‘runner’ module is pending deprecation. This has been an unofficial example module from the beginning, and it will be removed in a future version.- update to 2.1.1 * Default ‘initgroups’ option to False. Using ‘os.initgroups’ requires permission to set process GID, so this now needs to be explicitly requested.- update to 2.1.0: * Add a DaemonContext option, ‘initgroups’, which specifies whether to set the daemon process's supplementary groups. * Set the process groups using ‘os.initgroups’. Thanks to Malcolm Purvis for contributing an implementation of this feature.- Update to 2.0.6 * Lower dependency for unittest2, we can work with an earlier version. * Specify development status Production/Stable in Trove classifiers. * Migrate to mock version 1.3 with corresponding API changes. * Use current Python concept of basestring to test for an attribute name.- Fix License issue- update to version 2.0.5: * Refine compatibility of exceptions for file operations. * Specify the text encoding when opening the changelog file. - additional changes from version 2.0.4 * Record version info via Setuptools commands. * Remove the custom Setuptools entry points. This closes Alioth bug#314948. - additional changes from version 2.0.3 * Break circular import dependency for ‘setup.py’. * Refactor all initial metadata functionality to ‘daemon._metadata’. * Distribute ‘version’ (and its tests) only in source, not install. * Build a “universal” (Python 2 and Python 3) wheel. - additional changes from version 2.0.2 * Declare test-time dependency on recent ‘unittest2’. * Declare packaging-time dependency on ‘docutils’ library. * Include unit tests for ‘version’ module with source distribution. * Record version info consistent with distribution metadata. - additional changes from version 2.0.1 * Include the ‘version’ module with source distribution. - additional changes from version 2.0 * Support both Python 3 (version 3.2 or later) and Python 2 (version 2.7 or later). * Document the API of all functions comprehensively in docstrings. * Add a hacking guide for developers. * Add explicit credit for contributors. * Document the security impact of the default umask. * Specify explicit text or binary mode when opening files. * Preserve exception context in custom exceptions. * Declare compatibility with current Python versions. * Depend on Python 3 compatible libraries. * Update package homepage to Alioth hosted project page. * Use ‘pydoc.splitdoc’ to get package description text. * Remove ASCII translation of package description, not needed now the docstring is a proper Unicode text value. * Include test suite with source distribution. * Move package metadata to ‘daemon/_metadata.py’. * Migrate to JSON (instead of Python) for serialised version info. * Add unit tests for metadata. * Store and retrieve version info in Setuptools metadata. * Migrate to ‘str.format’ for interpolation of values into text. * Migrate to ‘mock’ library for mock objects in tests. * Migrate to ‘testscenarios’ library for unit test scenarios. * Migrate to ‘unittest2’ library for back-ported improvements. Remove custom test suite creation. * Discriminate Python 2-and-3 compatible usage of dict methods. * Discriminate Python 2-and-3 compatible bytes versus text. * Declare explicit absolute and relative imports. * Discriminate between different ‘fileno’ method behaviours. In Python 3, ‘StringIO.fileno’ is callable but raises an exception. * Migrate to built-in ‘next’ function. * Wrap the ‘fromlist’ parameter of ‘__import__’ for Python 3 compatibility. * Wrap function introspection for Python 3 compatibility. * Wrap standard library imports where names changed in Python 3. - additional changes from version 1.6.1 * Use unambiguous “except FooType as foo” syntax. This is to ease the port to Python 3, where the ambiguous comma usage is an error. * Ensure a ‘basestring’ name bound to the base type for strings. This is to allow checks to work on Python 2 and 3. * Specify versions of Python supported, as trove classifiers. * Update copyright notices. * Add editor hints for most files. * Distinguish continuation-line indentation versus block indentation. * Use unicode literals by default, specifying bytes where necessary. This is to ease the port to Python 3, where the default string type is unicode. * Update copyright notices. * Update the GPL license file to version 3, as declared in our copyright notices. * Change license of library code to Apache License 2.0. - additional changes from version 1.6 * Use absolute imports to disambiguate provenance of names. * setup.py: Require ‘lockfile >=0.9’. * daemon/pidfile.py: Renamed from ‘daemon/pidlockfile.py’. Change references elsewhere to use this new name. * test/test_pidfile.py: Renamed from ‘test/test_pidlockfile.py’. Change references elsewhere to use this new name. * daemon/pidfile.py: Remove functionality now migrated to ‘lockfile’ library. * FAQ: Add some entries and re-structure the document. * Use ‘unicode’ data type for all text values. * Prepare for Python 3 upgrade by tweaking some names and imports. * MANIFEST.in: Include the documentation in the distribution. - update package license: changed upstream to apache-2.0 - point the source URL to pypi - set a minimum version for python-devel - remove python-MiniMock from build dependencies - add python-docutils, python-mock, python-testscenarios, python-testtools, python-unittest2 as test dependencies - set a minimum version for python-lockfile - remove sed call to fix non-executable script: fixed upstream - run the test during build - add LICENSE.ASF-2 and doc to package documentationi02-ch2d 1739798689  !"#$2.3.0-bp156.4.3.1daemon__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pyc_metadata.cpython-36.opt-1.pyc_metadata.cpython-36.pycdaemon.cpython-36.opt-1.pycdaemon.cpython-36.pycpidfile.cpython-36.opt-1.pycpidfile.cpython-36.pycrunner.cpython-36.opt-1.pycrunner.cpython-36.pyc_metadata.pydaemon.pypidfile.pyrunner.pypython_daemon-2.3.0-py3.6.egg-infoPKG-INFOSOURCES.txtdependency_links.txtnot-zip-saferequires.txttop_level.txtpython3-python-daemonCREDITSChangeLogFAQREADMETODOhacking.txtmodule.mksphinx.mkpython3-python-daemonLICENSE.ASF-2LICENSE.GPL-3/usr/lib/python3.6/site-packages//usr/lib/python3.6/site-packages/daemon//usr/lib/python3.6/site-packages/daemon/__pycache__//usr/lib/python3.6/site-packages/python_daemon-2.3.0-py3.6.egg-info//usr/share/doc/packages//usr/share/doc/packages/python3-python-daemon//usr/share/licenses//usr/share/licenses/python3-python-daemon/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Maintenance:18790/openSUSE_Backports_SLE-15-SP6_Update/10690a97ce6d9516199be7ea0e7005da-python-python-daemon.openSUSE_Backports_SLE-15-SP6_Updatedrpmxz5noarch-suse-linuxdirectoryPython script, UTF-8 Unicode text executablepython 3.6 byte-compiledUTF-8 Unicode textASCII text RRRRRRRRRRRRRRR@髯\rutf-857ce001827852be7ef5f02cb4e3ae1828d5a8c6757aa558da846552d5451b527? 7zXZ !t/]"k%a ,`oZnE/Y8~.Yn8'u .8%H5O8GSc=߲AN?͡|C }Y) -~9dȣ} A0A0&Kx#;5ArFH]|)j]J&b")2k*ăgQP"]N $lɕfVTds}Y|tu5,//^Ck~ / 6~_2z&ަܦLƉ"zUPwz-j،""1C-! 3]XR8K{)/ƒ;׿"֟T].bߦIh{8O3R RpҒSn\bI iu;d ]kF@.N[Ů} x 9Ձ!maѪhW#uL6YIh۽cyDIw&k Q5=5,dvw7ᄖ?^TpĘC V-|xf7 Rp@XX85N삿k&*㔑Ґ{t XWXg$z6mgoid!1\A~ZӴv^ʖiɛ\eVnW_tPb 9-j~SYi'r]F!N?)rDjmFOH 5Pl @WP{(6[U20{6`o(3[8E%y„L֟]3XgiJ߂)KFTE95FMʳZoSnH<_$=<{W>Z;X%v,#M**+Ttxvo~9D/:N*""h/١/I5'ѱEDZ~^ӺJ |KZ[4^쫋jpⶒͩYpchB>:L,U7FoBY B̦!!5eQȍ]iAx4mg)lE:][6]lO;75mK܇}O|/$.qrWMG{wv]#_1!,@29NhR@HZ\;c=05١<_pBߕ2%doB_ew.%jPJ>gNh5Lyfc87QUaԋt$% XxoM>j\9RKy04ln ad 1 <7x(,Q-3HTvKΛ60k;eR|*(zU}!gBe7 a{'ht$TO1ʟ/pAvJԌȣxꅰfh.GD'T^9vXFx{B̏@/Ag~YȴFBhU{1Wr]ẁkS )EPem{U;,.+MBdƶ YZ