All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Steve Sakoman" <steve@sakoman.com>
To: openembedded-core@lists.openembedded.org
Subject: [OE-core][dunfell 12/16] python3-manifest.json: add pathlib to core
Date: Wed, 29 Apr 2020 06:10:57 -1000	[thread overview]
Message-ID: <b67148a0bb8ecaccf5a6dd7116128d85c2e4983e.1588175775.git.steve@sakoman.com> (raw)
In-Reply-To: <cover.1588175775.git.steve@sakoman.com>

From: Tim Orling <timothy.t.orling@linux.intel.com>

The pathlib module is for Object-oriented filesystem paths

It also provides a lot of handy utilities for checking on
paths. This seems to justify adding it to the core package
along side os, sys, and the other *path libraries.

[YOCTO #13670]

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
---
 meta/recipes-devtools/python/python3/python3-manifest.json | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
index 251271cb84..3bcc9b8662 100644
--- a/meta/recipes-devtools/python/python3/python3-manifest.json
+++ b/meta/recipes-devtools/python/python3/python3-manifest.json
@@ -285,6 +285,7 @@
             "${libdir}/python${PYTHON_MAJMIN}/operator.py",
             "${libdir}/python${PYTHON_MAJMIN}/optparse.py",
             "${libdir}/python${PYTHON_MAJMIN}/os.py",
+	    "${libdir}/python${PYTHON_MAJMIN}/pathlib.py",
             "${libdir}/python${PYTHON_MAJMIN}/pkgutil.py",
             "${libdir}/python${PYTHON_MAJMIN}/platform.py",
             "${libdir}/python${PYTHON_MAJMIN}/posixpath.py",
@@ -358,6 +359,7 @@
             "${libdir}/python${PYTHON_MAJMIN}/__pycache__/operator.*.pyc",
             "${libdir}/python${PYTHON_MAJMIN}/__pycache__/optparse.*.pyc",
             "${libdir}/python${PYTHON_MAJMIN}/__pycache__/os.*.pyc",
+	    "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pathlib.*.pyc",
             "${libdir}/python${PYTHON_MAJMIN}/__pycache__/pkgutil.*.pyc",
             "${libdir}/python${PYTHON_MAJMIN}/__pycache__/platform.*.pyc",
             "${libdir}/python${PYTHON_MAJMIN}/__pycache__/posixpath.*.pyc",
-- 
2.17.1


  parent reply	other threads:[~2020-04-29 16:11 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-29 16:10 [OE-core][dunfell 00/16] Patch review Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 01/16] u-boot.inc: install u-boot-initial-env as ${PN}-initial-env in $D and $DEPLOYDIR Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 02/16] bzip2/pbzip2: Correct license information Steve Sakoman
2020-04-29 19:13   ` Andre McCurdy
2020-04-29 22:12     ` Steve Sakoman
     [not found]     ` <160A69FC1635E57D.20868@lists.openembedded.org>
2020-04-30 15:53       ` Steve Sakoman
2020-04-30 19:37         ` Andre McCurdy
2020-04-30 19:44     ` Denys Dmytriyenko
2020-04-30 22:06       ` Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 03/16] kernel-yocto.bbclass: Fix deps when externalsrc is used Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 04/16] qemu-system-native: Fix commented out PACKAGECONFIG Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 05/16] nativesdk-gcc-runtime: enable building libstdc++.a Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 06/16] buildtools-extended-tarball: Add libstc++.a Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 07/16] libucontext: Bring in mips/mips64 support Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 08/16] ruby: Link with libucontext on musl Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 09/16] tzdata: remove exit 0 from pkg_postinst Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 10/16] gnutls: upgrade 3.6.12 -> 3.6.13 Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 11/16] ell: upgrade 0.30 -> 0.31 Steve Sakoman
2020-04-29 16:10 ` Steve Sakoman [this message]
2020-04-29 16:10 ` [OE-core][dunfell 13/16] alsa-state: ignore 'No soundcards found' error in pkg_postinst Steve Sakoman
2020-04-29 16:10 ` [OE-core][dunfell 14/16] buildtools-tarball: add nativesdk-mtools for `wic ls' Steve Sakoman
2020-04-29 16:11 ` [OE-core][dunfell 15/16] parselogs.py: ignore pulseaudio startup warning messages Steve Sakoman
2020-04-29 16:11 ` [OE-core][dunfell 16/16] qemuboot.bbclass: don't redefine IMGDEPLOYDIR Steve Sakoman
2020-04-29 22:33   ` Richard Purdie
2020-04-30  0:08     ` Steve Sakoman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b67148a0bb8ecaccf5a6dd7116128d85c2e4983e.1588175775.git.steve@sakoman.com \
    --to=steve@sakoman.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.