[packages/python3-path] - updated to 15.1.0 for python 3.6+ (now egg package name is path, not path.py) as python3-path.spec
qboosh
qboosh at pld-linux.org
Sun Feb 7 18:33:39 CET 2021
commit ef7bdd8f8961e3b49d311b5feead071ec16a04ca
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sun Feb 7 18:34:05 2021 +0100
- updated to 15.1.0 for python 3.6+ (now egg package name is path, not path.py) as python3-path.spec
path.py | 807 -----------------------------------------------
python-path-sphinx.patch | 11 -
python-path.spec | 171 ----------
python3-path.spec | 101 ++++++
4 files changed, 101 insertions(+), 989 deletions(-)
---
diff --git a/python-path.spec b/python-path.spec
deleted file mode 100644
index 32d2b78..0000000
--- a/python-path.spec
+++ /dev/null
@@ -1,171 +0,0 @@
-#
-# Conditional build:
-%bcond_without python2 # CPython 2.x module
-%bcond_without python3 # CPython 3.x module
-%bcond_without doc # Sphinx documentation
-%bcond_without tests # py.test unit tests
-
-Summary: Python 2 module wrapper for os.path
-Summary(pl.UTF-8): Moduł Pythona 2 obudowujący os.path
-Name: python-path
-# keep 11.x here for python2 support
-Version: 11.5.2
-Release: 1
-License: MIT
-Group: Libraries/Python
-#Source0Download: https://pypi.python.org/simple/path-py/
-Source0: https://files.pythonhosted.org/packages/source/p/path.py/path.py-%{version}.tar.gz
-# Source0-md5: f7330990e70574d917630c157eeb639a
-URL: https://github.com/jaraco/path.py
-%if %{with tests} && %(locale -a | grep -q '^C\.utf8$'; echo $?)
-BuildRequires: glibc-localedb-all
-%endif
-%if %{with python2}
-BuildRequires: python >= 1:2.7
-BuildRequires: python-modules >= 1:2.7
-BuildRequires: python-setuptools >= 1:31.0.1
-BuildRequires: python-setuptools_scm >= 1.15.0
-%if %{with tests}
-BuildRequires: python-appdirs
-BuildRequires: python-backports.os
-BuildRequires: python-importlib_metadata >= 0.5
-BuildRequires: python-packaging
-BuildRequires: python-pygments
-BuildRequires: python-pytest >= 3.5
-BuildRequires: python-pytest-flake8
-%endif
-%endif
-%if %{with python3}
-BuildRequires: python3 >= 1:3.4
-BuildRequires: python3-modules >= 1:3.4
-BuildRequires: python3-setuptools >= 1:31.0.1
-BuildRequires: python3-setuptools_scm >= 1.15.0
-%if %{with tests}
-BuildRequires: python3-appdirs
-BuildRequires: python3-importlib_metadata >= 0.5
-BuildRequires: python3-packaging
-BuildRequires: python3-pygments
-BuildRequires: python3-pytest >= 3.5
-BuildRequires: python3-pytest-flake8
-%endif
-%endif
-BuildRequires: rpm-pythonprov
-BuildRequires: rpmbuild(macros) >= 1.714
-%if %{with doc}
-BuildRequires: sphinx-pdg-2
-BuildRequires: python-alabaster
-BuildRequires: python-jaraco.packaging >= 3.2
-BuildRequires: python-rst.linker >= 1.9
-%endif
-Requires: python-modules >= 1:2.7
-BuildArch: noarch
-BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-
-%description
-path.py implements a path objects as first-class entities, allowing
-common operations on files to be invoked on those path objects
-directly.
-
-%description -l pl.UTF-8
-path.py implementuje obiekty ścieżek jako instancje pierwszoklasowe,
-pozwalające na wykonywanie ogólnych operacji na plikach bezpośrednio
-na tych ścieżkach.
-
-%package -n python3-path
-Summary: Python 3 module wrapper for os.path
-Summary(pl.UTF-8): Moduł Pythona 3 obudowujący os.path
-Group: Libraries/Python
-Requires: python3-modules >= 1:3.4
-
-%description -n python3-path
-path.py implements a path objects as first-class entities, allowing
-common operations on files to be invoked on those path objects
-directly.
-
-%description -n python3-path -l pl.UTF-8
-path.py implementuje obiekty ścieżek jako instancje pierwszoklasowe,
-pozwalające na wykonywanie ogólnych operacji na plikach bezpośrednio
-na tych ścieżkach.
-
-%package apidocs
-Summary: Documentation for Python path.py module
-Summary(pl.UTF-8): Dokumentacja modułu Pythona path.py
-Group: Documentation
-
-%description apidocs
-Documentation for Python path.py module.
-
-%description apidocs -l pl.UTF-8
-Dokumentacja modułu Pythona path.py.
-
-%prep
-%setup -q -n path.py-%{version}
-
-%build
-%if %{with python2}
-%py_build
-
-%if %{with tests}
-LC_ALL=C.UTF-8 \
-PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
-PYTEST_PLUGINS="pytest_flake8" \
-%{__python} -m pytest test_path.py
-%endif
-%endif
-
-%if %{with python3}
-%py3_build
-
-%if %{with tests}
-LC_ALL=C.UTF-8 \
-PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
-PYTEST_PLUGINS="pytest_flake8" \
-%{__python3} -m pytest test_path.py
-%endif
-%endif
-
-%if %{with doc}
-# disable warnings (-W in SPHINXOPTS) to ignore objects.inv fetching error on builders
-%{__make} -C docs html \
- SPHINXBUILD=sphinx-build-2 \
- SPHINXOPTS=
-%endif
-
-%install
-rm -rf $RPM_BUILD_ROOT
-
-%if %{with python2}
-%py_install
-
-%py_postclean
-%endif
-
-%if %{with python3}
-%py3_install
-%endif
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%if %{with python2}
-%files
-%defattr(644,root,root,755)
-%doc CHANGES.rst LICENSE README.rst
-%{py_sitescriptdir}/path.py[co]
-%{py_sitescriptdir}/path.py-%{version}-py*.egg-info
-%endif
-
-%if %{with python3}
-%files -n python3-path
-%defattr(644,root,root,755)
-%doc CHANGES.rst LICENSE README.rst
-%{py3_sitescriptdir}/path.py
-%{py3_sitescriptdir}/__pycache__/path.cpython-*.py[co]
-%{py3_sitescriptdir}/path.py-%{version}-py*.egg-info
-%endif
-
-%if %{with doc}
-%files apidocs
-%defattr(644,root,root,755)
-%doc docs/_build/html/{_static,*.html,*.js}
-%endif
diff --git a/python3-path.spec b/python3-path.spec
new file mode 100644
index 0000000..9ab8ec5
--- /dev/null
+++ b/python3-path.spec
@@ -0,0 +1,101 @@
+#
+# Conditional build:
+%bcond_without doc # Sphinx documentation
+%bcond_without tests # py.test unit tests
+
+Summary: Python 2 module wrapper for os.path
+Summary(pl.UTF-8): Moduł Pythona 2 obudowujący os.path
+Name: python3-path
+Version: 15.1.0
+Release: 1
+License: MIT
+Group: Libraries/Python
+#Source0Download: https://pypi.python.org/simple/path/
+Source0: https://files.pythonhosted.org/packages/source/p/path/path-%{version}.tar.gz
+# Source0-md5: 7fa391550400e7aa47849386d99598a7
+URL: https://github.com/jaraco/path
+BuildRequires: python3 >= 1:3.6
+BuildRequires: python3-modules >= 1:3.6
+BuildRequires: python3-setuptools >= 1:31.0.1
+BuildRequires: python3-setuptools_scm >= 3.4.1
+BuildRequires: python3-toml
+%if %{with tests}
+BuildRequires: python3-appdirs
+BuildRequires: python3-packaging
+BuildRequires: python3-pygments
+BuildRequires: python3-pytest >= 3.5
+BuildRequires: python3-pytest-black >= 0.3.7
+BuildRequires: python3-pytest-cov
+BuildRequires: python3-pytest-flake8
+%endif
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.714
+%if %{with doc}
+BuildRequires: sphinx-pdg-3
+BuildRequires: python3-alabaster
+BuildRequires: python3-jaraco.packaging >= 8.2
+BuildRequires: python3-rst.linker >= 1.9
+%endif
+Requires: python3-modules >= 1:3.6
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+path implements a path objects as first-class entities, allowing
+common operations on files to be invoked on those path objects
+directly.
+
+%description -l pl.UTF-8
+path implementuje obiekty ścieżek jako instancje pierwszoklasowe,
+pozwalające na wykonywanie ogólnych operacji na plikach bezpośrednio
+na tych ścieżkach.
+
+%package apidocs
+Summary: Documentation for Python path module
+Summary(pl.UTF-8): Dokumentacja modułu Pythona path
+Group: Documentation
+
+%description apidocs
+Documentation for Python path module.
+
+%description apidocs -l pl.UTF-8
+Dokumentacja modułu Pythona path.
+
+%prep
+%setup -q -n path-%{version}
+
+%build
+%py3_build
+
+%if %{with tests}
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+PYTEST_PLUGINS="pytest_black,pytest_cov.plugin,pytest_flake8" \
+%{__python3} -m pytest test_path.py
+%endif
+
+%if %{with doc}
+# disable warnings (-W in SPHINXOPTS) to ignore objects.inv fetching error on builders
+%{__make} -C docs html \
+ SPHINXBUILD=sphinx-build-3 \
+ SPHINXOPTS=
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%py3_install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc CHANGES.rst LICENSE README.rst
+%{py3_sitescriptdir}/path
+%{py3_sitescriptdir}/path-%{version}-py*.egg-info
+
+%if %{with doc}
+%files apidocs
+%defattr(644,root,root,755)
+%doc docs/_build/html/{_static,*.html,*.js}
+%endif
diff --git a/path.py b/path.py
deleted file mode 100644
index 66baff9..0000000
--- a/path.py
+++ /dev/null
@@ -1,807 +0,0 @@
-""" path.py - An object representing a path to a file or directory.
-
-Example:
-
-from path import path
-d = path('/home/guido/bin')
-for f in d.files('*.py'):
- f.chmod(0755)
-
-This module requires Python 2.2 or later.
-
-
-URL: http://www.jorendorff.com/articles/python/path
-Author: Jason Orendorff <jason at jorendorff.com> (and others - see the url!)
-Date: 7 Mar 2004
-"""
-
-
-# TODO
-# - Bug in write_text(). It doesn't support Universal newline mode.
-# - Better error message in listdir() when self isn't a
-# directory. (On Windows, the error message really sucks.)
-# - Make sure everything has a good docstring.
-# - Add methods for regex find and replace.
-# - guess_content_type() method?
-# - Perhaps support arguments to touch().
-# - Could add split() and join() methods that generate warnings.
-# - Note: __add__() technically has a bug, I think, where
-# it doesn't play nice with other types that implement
-# __radd__(). Test this.
-
-from __future__ import generators
-
-import sys, os, fnmatch, glob, shutil, codecs
-
-__version__ = '2.0.4'
-__all__ = ['path']
-
-# Pre-2.3 support. Are unicode filenames supported?
-_base = str
-try:
- if os.path.supports_unicode_filenames:
- _base = unicode
-except AttributeError:
- pass
-
-# Pre-2.3 workaround for basestring.
-try:
- basestring
-except NameError:
- basestring = (str, unicode)
-
-# Universal newline support
-_textmode = 'r'
-if hasattr(file, 'newlines'):
- _textmode = 'U'
-
-
-class path(_base):
- """ Represents a filesystem path.
-
- For documentation on individual methods, consult their
- counterparts in os.path.
- """
-
- # --- Special Python methods.
-
- def __repr__(self):
- return 'path(%s)' % _base.__repr__(self)
-
- # Adding a path and a string yields a path.
- def __add__(self, more):
- return path(_base(self) + more)
-
- def __radd__(self, other):
- return path(other + _base(self))
-
- # The / operator joins paths.
- def __div__(self, rel):
- """ fp.__div__(rel) == fp / rel == fp.joinpath(rel)
-
- Join two path components, adding a separator character if
- needed.
- """
- return path(os.path.join(self, rel))
-
- # Make the / operator work even when true division is enabled.
- __truediv__ = __div__
-
- def getcwd():
- """ Return the current working directory as a path object. """
- return path(os.getcwd())
- getcwd = staticmethod(getcwd)
-
-
- # --- Operations on path strings.
-
- def abspath(self): return path(os.path.abspath(self))
- def normcase(self): return path(os.path.normcase(self))
- def normpath(self): return path(os.path.normpath(self))
- def realpath(self): return path(os.path.realpath(self))
- def expanduser(self): return path(os.path.expanduser(self))
- def expandvars(self): return path(os.path.expandvars(self))
- def dirname(self): return path(os.path.dirname(self))
- basename = os.path.basename
-
- def expand(self):
- """ Clean up a filename by calling expandvars(),
- expanduser(), and normpath() on it.
-
- This is commonly everything needed to clean up a filename
- read from a configuration file, for example.
- """
- return self.expandvars().expanduser().normpath()
-
- def _get_namebase(self):
- base, ext = os.path.splitext(self.name)
- return base
-
- def _get_ext(self):
- f, ext = os.path.splitext(_base(self))
- return ext
-
- def _get_drive(self):
- drive, r = os.path.splitdrive(self)
- return path(drive)
-
- parent = property(
- dirname, None, None,
- """ This path's parent directory, as a new path object.
-
- For example, path('/usr/local/lib/libpython.so').parent == path('/usr/local/lib')
- """)
-
- name = property(
- basename, None, None,
- """ The name of this file or directory without the full path.
-
- For example, path('/usr/local/lib/libpython.so').name == 'libpython.so'
- """)
-
- namebase = property(
- _get_namebase, None, None,
- """ The same as path.name, but with one file extension stripped off.
-
- For example, path('/home/guido/python.tar.gz').name == 'python.tar.gz',
- but path('/home/guido/python.tar.gz').namebase == 'python.tar'
- """)
-
- ext = property(
- _get_ext, None, None,
- """ The file extension, for example '.py'. """)
-
- drive = property(
- _get_drive, None, None,
- """ The drive specifier, for example 'C:'.
- This is always empty on systems that don't use drive specifiers.
- """)
-
- def splitpath(self):
- """ p.splitpath() -> Return (p.parent, p.name). """
- parent, child = os.path.split(self)
- return path(parent), child
-
- def splitdrive(self):
- """ p.splitdrive() -> Return (p.drive, <the rest of p>).
-
- Split the drive specifier from this path. If there is
- no drive specifier, p.drive is empty, so the return value
- is simply (path(''), p). This is always the case on Unix.
- """
- drive, rel = os.path.splitdrive(self)
- return path(drive), rel
-
- def splitext(self):
- """ p.splitext() -> Return (p.stripext(), p.ext).
-
- Split the filename extension from this path and return
- the two parts. Either part may be empty.
-
- The extension is everything from '.' to the end of the
- last path segment. This has the property that if
- (a, b) == p.splitext(), then a + b == p.
- """
- filename, ext = os.path.splitext(self)
- return path(filename), ext
-
- def stripext(self):
- """ p.stripext() -> Remove one file extension from the path.
-
- For example, path('/home/guido/python.tar.gz').stripext()
- returns path('/home/guido/python.tar').
- """
- return self.splitext()[0]
-
- if hasattr(os.path, 'splitunc'):
- def splitunc(self):
- unc, rest = os.path.splitunc(self)
- return path(unc), rest
-
- def _get_uncshare(self):
- unc, r = os.path.splitunc(self)
- return path(unc)
-
- uncshare = property(
- _get_uncshare, None, None,
- """ The UNC mount point for this path.
- This is empty for paths on local drives. """)
-
- def joinpath(self, *args):
- """ Join two or more path components, adding a separator
- character (os.sep) if needed. Returns a new path
- object.
- """
- return path(os.path.join(self, *args))
-
- def splitall(self):
- """ Return a list of the path components in this path.
-
- The first item in the list will be a path. Its value will be
- either os.curdir, os.pardir, empty, or the root directory of
- this path (for example, '/' or 'C:\\'). The other items in
- the list will be strings.
-
- path.path.joinpath(*result) will yield the original path.
- """
- parts = []
- loc = self
- while loc != os.curdir and loc != os.pardir:
- prev = loc
- loc, child = prev.splitpath()
- if loc == prev:
- break
- parts.append(child)
- parts.append(loc)
- parts.reverse()
- return parts
-
- def relpath(self):
- """ Return this path as a relative path,
- based from the current working directory.
- """
- cwd = path(os.getcwd())
- return cwd.relpathto(self)
-
- def relpathto(self, dest):
- """ Return a relative path from self to dest.
-
- If there is no relative path from self to dest, for example if
- they reside on different drives in Windows, then this returns
- dest.abspath().
- """
- origin = self.abspath()
- dest = path(dest).abspath()
-
- orig_list = origin.normcase().splitall()
- # Don't normcase dest! We want to preserve the case.
- dest_list = dest.splitall()
-
- if orig_list[0] != os.path.normcase(dest_list[0]):
- # Can't get here from there.
- return dest
-
- # Find the location where the two paths start to differ.
- i = 0
- for start_seg, dest_seg in zip(orig_list, dest_list):
- if start_seg != os.path.normcase(dest_seg):
- break
- i += 1
-
- # Now i is the point where the two paths diverge.
- # Need a certain number of "os.pardir"s to work up
- # from the origin to the point of divergence.
- segments = [os.pardir] * (len(orig_list) - i)
- # Need to add the diverging part of dest_list.
- segments += dest_list[i:]
- if len(segments) == 0:
- # If they happen to be identical, use os.curdir.
- return path(os.curdir)
- else:
- return path(os.path.join(*segments))
-
-
- # --- Listing, searching, walking, and matching
-
- def listdir(self, pattern=None):
- """ D.listdir() -> List of items in this directory.
-
- Use D.files() or D.dirs() instead if you want a listing
- of just files or just subdirectories.
-
- The elements of the list are path objects.
-
- With the optional 'pattern' argument, this only lists
- items whose names match the given pattern.
- """
- names = os.listdir(self)
- if pattern is not None:
- names = fnmatch.filter(names, pattern)
- return [self / child for child in names]
-
- def dirs(self, pattern=None):
- """ D.dirs() -> List of this directory's subdirectories.
-
- The elements of the list are path objects.
- This does not walk recursively into subdirectories
- (but see path.walkdirs).
-
- With the optional 'pattern' argument, this only lists
- directories whose names match the given pattern. For
- example, d.dirs('build-*').
- """
- return [p for p in self.listdir(pattern) if p.isdir()]
-
- def files(self, pattern=None):
- """ D.files() -> List of the files in this directory.
-
- The elements of the list are path objects.
- This does not walk into subdirectories (see path.walkfiles).
-
- With the optional 'pattern' argument, this only lists files
- whose names match the given pattern. For example,
- d.files('*.pyc').
- """
-
- return [p for p in self.listdir(pattern) if p.isfile()]
-
- def walk(self, pattern=None):
- """ D.walk() -> iterator over files and subdirs, recursively.
-
- The iterator yields path objects naming each child item of
- this directory and its descendants. This requires that
- D.isdir().
-
- This performs a depth-first traversal of the directory tree.
- Each directory is returned just before all its children.
- """
- for child in self.listdir():
- if pattern is None or child.fnmatch(pattern):
- yield child
- if child.isdir():
- for item in child.walk(pattern):
- yield item
-
- def walkdirs(self, pattern=None):
- """ D.walkdirs() -> iterator over subdirs, recursively.
-
- With the optional 'pattern' argument, this yields only
- directories whose names match the given pattern. For
- example, mydir.walkdirs('*test') yields only directories
- with names ending in 'test'.
- """
- for child in self.dirs():
- if pattern is None or child.fnmatch(pattern):
- yield child
- for subsubdir in child.walkdirs(pattern):
- yield subsubdir
-
- def walkfiles(self, pattern=None):
- """ D.walkfiles() -> iterator over files in D, recursively.
-
- The optional argument, pattern, limits the results to files
- with names that match the pattern. For example,
- mydir.walkfiles('*.tmp') yields only files with the .tmp
- extension.
- """
- for child in self.listdir():
- if child.isfile():
- if pattern is None or child.fnmatch(pattern):
- yield child
- elif child.isdir():
- for f in child.walkfiles(pattern):
- yield f
-
- def fnmatch(self, pattern):
- """ Return True if self.name matches the given pattern.
-
- pattern - A filename pattern with wildcards,
- for example '*.py'.
- """
- return fnmatch.fnmatch(self.name, pattern)
-
- def glob(self, pattern):
- """ Return a list of path objects that match the pattern.
-
- pattern - a path relative to this directory, with wildcards.
-
- For example, path('/users').glob('*/bin/*') returns a list
- of all the files users have in their bin directories.
- """
- return map(path, glob.glob(_base(self / pattern)))
-
-
- # --- Reading or writing an entire file at once.
-
- def open(self, mode='r'):
- """ Open this file. Return a file object. """
- return file(self, mode)
-
- def bytes(self):
- """ Open this file, read all bytes, return them as a string. """
- f = self.open('rb')
- try:
- return f.read()
- finally:
- f.close()
-
- def write_bytes(self, bytes, append=False):
- """ Open this file and write the given bytes to it.
-
- Default behavior is to overwrite any existing file.
- Call this with write_bytes(bytes, append=True) to append instead.
- """
- if append:
- mode = 'ab'
- else:
- mode = 'wb'
- f = self.open(mode)
- try:
- f.write(bytes)
- finally:
- f.close()
-
- def text(self, encoding=None, errors='strict'):
- """ Open this file, read it in, return the content as a string.
-
- This uses 'U' mode in Python 2.3 and later, so '\r\n' and '\r'
- are automatically translated to '\n'.
-
- Optional arguments:
-
- encoding - The Unicode encoding (or character set) of
- the file. If present, the content of the file is
- decoded and returned as a unicode object; otherwise
- it is returned as an 8-bit str.
- errors - How to handle Unicode errors; see help(str.decode)
- for the options. Default is 'strict'.
- """
- if encoding is None:
- # 8-bit
- f = self.open(_textmode)
- try:
- return f.read()
- finally:
- f.close()
- else:
- # Unicode
- f = codecs.open(self, 'r', encoding, errors)
- # (Note - Can't use 'U' mode here, since codecs.open
- # doesn't support 'U' mode, even in Python 2.3.)
- try:
- t = f.read()
- finally:
- f.close()
- return (t.replace(u'\r\n', u'\n')
- .replace(u'\r\x85', u'\n')
- .replace(u'\r', u'\n')
- .replace(u'\x85', u'\n')
- .replace(u'\u2028', u'\n'))
-
- def write_text(self, text, encoding=None, errors='strict', linesep=os.linesep, append=False):
- """ Write the given text to this file.
-
- The default behavior is to overwrite any existing file;
- to append instead, use the 'append=True' keyword argument.
-
- There are two differences between path.write_text() and
- path.write_bytes(): newline handling and Unicode handling.
- See below.
-
- Parameters:
-
- - text - str/unicode - The text to be written.
-
- - encoding - str - The Unicode encoding that will be used.
- This is ignored if 'text' isn't a Unicode string.
-
- - errors - str - How to handle Unicode encoding errors.
- Default is 'strict'. See help(unicode.encode) for the
- options. This is ignored if 'text' isn't a Unicode
- string.
-
- - linesep - keyword argument - str/unicode - The sequence of
- characters to be used to mark end-of-line. The default is
- os.linesep. You can also specify None; this means to
- leave all newlines as they are in 'text'.
-
- - append - keyword argument - bool - Specifies what to do if
- the file already exists (True: append to the end of it;
- False: overwrite it.) The default is False.
-
-
- --- Newline handling.
-
- write_text() converts all standard end-of-line sequences
- ('\n', '\r', and '\r\n') to your platform's default end-of-line
- sequence (see os.linesep; on Windows, for example, the
- end-of-line marker is '\r\n').
-
- If you don't like your platform's default, you can override it
- using the 'linesep=' keyword argument. If you specifically want
- write_text() to preserve the newlines as-is, use 'linesep=None'.
-
- This applies to Unicode text the same as to 8-bit text, except
- there are three additional standard Unicode end-of-line sequences:
- u'\x85', u'\r\x85', and u'\u2028'.
-
- (This is slightly different from when you open a file for
- writing with fopen(filename, "w") in C or file(filename, 'w')
- in Python.)
-
-
- --- Unicode
-
- If 'text' isn't Unicode, then apart from newline handling, the
- bytes are written verbatim to the file. The 'encoding' and
- 'errors' arguments are not used and must be omitted.
-
- If 'text' is Unicode, it is first converted to bytes using the
- specified 'encoding' (or the default encoding if 'encoding'
- isn't specified). The 'errors' argument applies only to this
- conversion.
-
- """
- if isinstance(text, unicode):
- if linesep is not None:
- # Convert all standard end-of-line sequences to
- # ordinary newline characters.
- text = (text.replace(u'\r\n', u'\n')
- .replace(u'\r\x85', u'\n')
- .replace(u'\r', u'\n')
- .replace(u'\x85', u'\n')
- .replace(u'\u2028', u'\n'))
- text = text.replace(u'\n', linesep)
- if encoding is None:
- encoding = sys.getdefaultencoding()
- bytes = text.encode(encoding, errors)
- else:
- # It is an error to specify an encoding if 'text' is
- # an 8-bit string.
- assert encoding is None
-
- if linesep is not None:
- text = (text.replace('\r\n', '\n')
- .replace('\r', '\n'))
- bytes = text.replace('\n', linesep)
-
- self.write_bytes(bytes, append)
-
- def lines(self, encoding=None, errors='strict', retain=True):
- """ Open this file, read all lines, return them in a list.
-
- Optional arguments:
- encoding - The Unicode encoding (or character set) of
- the file. The default is None, meaning the content
- of the file is read as 8-bit characters and returned
- as a list of (non-Unicode) str objects.
- errors - How to handle Unicode errors; see help(str.decode)
- for the options. Default is 'strict'
- retain - If true, retain newline characters; but all newline
- character combinations ('\r', '\n', '\r\n') are
- translated to '\n'. If false, newline characters are
- stripped off. Default is True.
-
- This uses 'U' mode in Python 2.3 and later.
- """
- if encoding is None and retain:
- f = self.open(_textmode)
- try:
- return f.readlines()
- finally:
- f.close()
- else:
- return self.text(encoding, errors).splitlines(retain)
-
- def write_lines(self, lines, encoding=None, errors='strict',
- linesep=os.linesep, append=False):
- """ Write the given lines of text to this file.
-
- By default this overwrites any existing file at this path.
-
- This puts a platform-specific newline sequence on every line.
- See 'linesep' below.
-
- lines - A list of strings.
-
- encoding - A Unicode encoding to use. This applies only if
- 'lines' contains any Unicode strings.
-
- errors - How to handle errors in Unicode encoding. This
- also applies only to Unicode strings.
-
- linesep - The desired line-ending. This line-ending is
- applied to every line. If a line already has any
- standard line ending ('\r', '\n', '\r\n', u'\x85',
- u'\r\x85', u'\u2028'), that will be stripped off and
- this will be used instead. The default is os.linesep,
- which is platform-dependent ('\r\n' on Windows, '\n' on
- Unix, etc.) Specify None to write the lines as-is,
- like file.writelines().
-
- Use the keyword argument append=True to append lines to the
- file. The default is to overwrite the file. Warning:
- When you use this with Unicode data, if the encoding of the
- existing data in the file is different from the encoding
- you specify with the encoding= parameter, the result is
- mixed-encoding data, which can really confuse someone trying
- to read the file later.
- """
- if append:
- mode = 'ab'
- else:
- mode = 'wb'
- f = self.open(mode)
- try:
- for line in lines:
- isUnicode = isinstance(line, unicode)
- if linesep is not None:
- # Strip off any existing line-end and add the
- # specified linesep string.
- if isUnicode:
- if line[-2:] in (u'\r\n', u'\x0d\x85'):
- line = line[:-2]
- elif line[-1:] in (u'\r', u'\n',
- u'\x85', u'\u2028'):
- line = line[:-1]
- else:
- if line[-2:] == '\r\n':
- line = line[:-2]
- elif line[-1:] in ('\r', '\n'):
- line = line[:-1]
- line += linesep
- if isUnicode:
- if encoding is None:
- encoding = sys.getdefaultencoding()
- line = line.encode(encoding, errors)
- f.write(line)
- finally:
- f.close()
-
-
- # --- Methods for querying the filesystem.
-
- exists = os.path.exists
- isabs = os.path.isabs
- isdir = os.path.isdir
- isfile = os.path.isfile
- islink = os.path.islink
- ismount = os.path.ismount
-
- if hasattr(os.path, 'samefile'):
- samefile = os.path.samefile
-
- getatime = os.path.getatime
- atime = property(
- getatime, None, None,
- """ Last access time of the file. """)
-
- getmtime = os.path.getmtime
- mtime = property(
- getmtime, None, None,
- """ Last-modified time of the file. """)
-
- if hasattr(os.path, 'getctime'):
- getctime = os.path.getctime
- ctime = property(
- getctime, None, None,
- """ Creation time of the file. """)
-
- getsize = os.path.getsize
- size = property(
- getsize, None, None,
- """ Size of the file, in bytes. """)
-
- if hasattr(os, 'access'):
- def access(self, mode):
- """ Return true if current user has access to this path.
-
- mode - One of the constants os.F_OK, os.R_OK, os.W_OK, os.X_OK
- """
- return os.access(self, mode)
-
- def stat(self):
- """ Perform a stat() system call on this path. """
- return os.stat(self)
-
- def lstat(self):
- """ Like path.stat(), but do not follow symbolic links. """
- return os.lstat(self)
-
- if hasattr(os, 'statvfs'):
- def statvfs(self):
- """ Perform a statvfs() system call on this path. """
- return os.statvfs(self)
-
- if hasattr(os, 'pathconf'):
- def pathconf(self, name):
- return os.pathconf(self, name)
-
-
- # --- Modifying operations on files and directories
-
- def utime(self, times):
- """ Set the access and modified times of this file. """
- os.utime(self, times)
-
- def chmod(self, mode):
- os.chmod(self, mode)
-
- if hasattr(os, 'chown'):
- def chown(self, uid, gid):
- os.chown(self, uid, gid)
-
- def rename(self, new):
- os.rename(self, new)
-
- def renames(self, new):
- os.renames(self, new)
-
-
- # --- Create/delete operations on directories
-
- def mkdir(self, mode=0777):
- os.mkdir(self, mode)
-
- def makedirs(self, mode=0777):
- os.makedirs(self, mode)
-
- def rmdir(self):
- os.rmdir(self)
-
- def removedirs(self):
- os.removedirs(self)
-
-
- # --- Modifying operations on files
-
- def touch(self):
- """ Set the access/modified times of this file to the current time.
- Create the file if it does not exist.
- """
- fd = os.open(self, os.O_WRONLY | os.O_CREAT, 0666)
- os.close(fd)
- os.utime(self, None)
-
- def remove(self):
- os.remove(self)
-
- def unlink(self):
- os.unlink(self)
-
-
- # --- Links
-
- if hasattr(os, 'link'):
- def link(self, newpath):
- """ Create a hard link at 'newpath', pointing to this file. """
- os.link(self, newpath)
-
- if hasattr(os, 'symlink'):
- def symlink(self, newlink):
- """ Create a symbolic link at 'newlink', pointing here. """
- os.symlink(self, newlink)
-
- if hasattr(os, 'readlink'):
- def readlink(self):
- """ Return the path to which this symbolic link points.
-
- The result may be an absolute or a relative path.
- """
- return path(os.readlink(self))
-
- def readlinkabs(self):
- """ Return the path to which this symbolic link points.
-
- The result is always an absolute path.
- """
- p = self.readlink()
- if p.isabs():
- return p
- else:
- return (self.parent / p).abspath()
-
-
- # --- High-level functions from shutil
-
- copyfile = shutil.copyfile
- copymode = shutil.copymode
- copystat = shutil.copystat
- copy = shutil.copy
- copy2 = shutil.copy2
- copytree = shutil.copytree
- if hasattr(shutil, 'move'):
- move = shutil.move
- rmtree = shutil.rmtree
-
-
- # --- Special stuff from os
-
- if hasattr(os, 'chroot'):
- def chroot(self):
- os.chroot(self)
-
- if hasattr(os, 'startfile'):
- def startfile(self):
- os.startfile(self)
-
diff --git a/python-path-sphinx.patch b/python-path-sphinx.patch
deleted file mode 100644
index 89c3230..0000000
--- a/python-path-sphinx.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- path.py-10.1/CHANGES.rst.orig 2017-01-23 13:23:35.000000000 +0100
-+++ path.py-10.1/CHANGES.rst 2017-03-11 16:24:13.470127210 +0100
-@@ -39,7 +39,7 @@
- ---
-
- - Refreshed project metadata based on `jaraco's project
-- skeleton <https://github.com/jaraco/skeleton/tree/spaces>_.
-+ skeleton <https://github.com/jaraco/skeleton/tree/spaces>`_.
- - Releases are now automatically published via Travis-CI.
- - #111: More aggressively trap errors when importing
- ``pkg_resources``.
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python3-path.git/commitdiff/ef7bdd8f8961e3b49d311b5feead071ec16a04ca
More information about the pld-cvs-commit
mailing list