All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/26] devtool/recipetool improvements
Date: Tue, 22 Dec 2015 17:02:53 +1300	[thread overview]
Message-ID: <cover.1450756555.git.paul.eggleton@linux.intel.com> (raw)

Apologies for the flood of patches today, this is the last one.

There are quite a few changes here, but the common theme is making
devtool (and recipetool) a bit easier to use, as well as making
"devtool add" and "recipetool create" more effective at picking up
things from the specified source tree.

I also extended the argparse fix to show the help text on error to all
of the command-line utilities that use it.


The following changes since commit 2a1edfd9cfa16ec334c0758b47677d4fee5e79a8:

  bitbake.conf: Add filename and lineno to BB_SIGNATURE_EXCLUDE_FLAGS (2015-12-22 00:01:31 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib paule/devtool11
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/devtool11

Paul Eggleton (26):
  scripts: print usage in argparse-using scripts when a command-line error occurs
  recipetool: create: handle https://....git URLs
  recipetool: create: avoid traceback on fetch error
  recipetool: create: fix do_install handling for makefile-only software
  recipetool: create: minor fix for potential issue in python handling
  recipetool: create: prevent attempting to unpack entire DL_DIR
  recipetool: create: detect when specified URL returns a web page
  recipetool: create: set up priority system for recipe handlers
  recipetool: create: support extracting name and version from build scripts
  recipetool: create: basic extraction of name/version from filename
  devtool: edit-recipe: add new subcommand
  devtool: add: tweak help text
  devtool: split out function for naming bbappend
  devtool: update-recipe: use correct method to get bbappend filename
  scripts/lib/argparse_oe: handle intermixing of optional positional arguments
  devtool: add: allow source tree to be omitted
  devtool: add: figure out recipe name from recipetool
  devtool: add: allow specifying URL as positional argument
  devtool: modify: default source tree path
  devtool: status: list recipe file within workspace if one exists
  devtool: reset: print message about leaving source tree behind
  devtool: sync: tweak help / messages
  recipetool: create: improve autotools support
  recipetool: create: fix error when extracting source to a specified directory
  oe-selftest: add tests for simple devtool add / recipetool create URL case
  oe-selftest: devtool: add more explicit check for ls output

 meta/lib/oeqa/selftest/devtool.py                |  82 +++++-
 meta/lib/oeqa/selftest/recipetool.py             |  21 +-
 scripts/contrib/devtool-stress.py                |   5 +-
 scripts/devtool                                  |  13 +-
 scripts/lib/argparse_oe.py                       |  66 +++++
 scripts/lib/devtool/__init__.py                  |  15 ++
 scripts/lib/devtool/standard.py                  | 315 +++++++++++++++++------
 scripts/lib/recipetool/create.py                 | 206 ++++++++++++---
 scripts/lib/recipetool/create_buildsys.py        | 296 +++++++++++++++++----
 scripts/lib/recipetool/create_buildsys_python.py |   7 +-
 scripts/lib/scriptutils.py                       |   5 +
 scripts/oe-pkgdata-util                          |   5 +-
 scripts/oe-publish-sdk                           |   5 +-
 scripts/oe-selftest                              |   3 +-
 scripts/recipetool                               |   7 +-
 scripts/send-error-report                        |   6 +-
 scripts/test-remote-image                        |   3 +-
 17 files changed, 872 insertions(+), 188 deletions(-)
 create mode 100644 scripts/lib/argparse_oe.py

-- 
2.5.0



             reply	other threads:[~2015-12-22  4:04 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-22  4:02 Paul Eggleton [this message]
2015-12-22  4:02 ` [PATCH 01/26] scripts: print usage in argparse-using scripts when a command-line error occurs Paul Eggleton
2015-12-22  4:02 ` [PATCH 02/26] recipetool: create: handle https://....git URLs Paul Eggleton
2015-12-22  4:02 ` [PATCH 03/26] recipetool: create: avoid traceback on fetch error Paul Eggleton
2015-12-22  4:02 ` [PATCH 04/26] recipetool: create: fix do_install handling for makefile-only software Paul Eggleton
2015-12-22  4:02 ` [PATCH 05/26] recipetool: create: minor fix for potential issue in python handling Paul Eggleton
2015-12-22  4:02 ` [PATCH 06/26] recipetool: create: prevent attempting to unpack entire DL_DIR Paul Eggleton
2015-12-22  4:03 ` [PATCH 07/26] recipetool: create: detect when specified URL returns a web page Paul Eggleton
2015-12-22  4:03 ` [PATCH 08/26] recipetool: create: set up priority system for recipe handlers Paul Eggleton
2015-12-22  4:03 ` [PATCH 09/26] recipetool: create: support extracting name and version from build scripts Paul Eggleton
2015-12-22  4:03 ` [PATCH 10/26] recipetool: create: basic extraction of name/version from filename Paul Eggleton
2015-12-22  4:03 ` [PATCH 11/26] devtool: edit-recipe: add new subcommand Paul Eggleton
2015-12-22  4:03 ` [PATCH 12/26] devtool: add: tweak help text Paul Eggleton
2015-12-22  4:03 ` [PATCH 13/26] devtool: split out function for naming bbappend Paul Eggleton
2015-12-22  4:03 ` [PATCH 14/26] devtool: update-recipe: use correct method to get bbappend filename Paul Eggleton
2015-12-22  4:03 ` [PATCH 15/26] scripts/lib/argparse_oe: handle intermixing of optional positional arguments Paul Eggleton
2015-12-22  4:03 ` [PATCH 16/26] devtool: add: allow source tree to be omitted Paul Eggleton
2015-12-22  4:03 ` [PATCH 17/26] devtool: add: figure out recipe name from recipetool Paul Eggleton
2015-12-22  4:03 ` [PATCH 18/26] devtool: add: allow specifying URL as positional argument Paul Eggleton
2015-12-22  4:03 ` [PATCH 19/26] devtool: modify: default source tree path Paul Eggleton
2015-12-22  4:03 ` [PATCH 20/26] devtool: status: list recipe file within workspace if one exists Paul Eggleton
2015-12-22  4:03 ` [PATCH 21/26] devtool: reset: print message about leaving source tree behind Paul Eggleton
2015-12-22  4:03 ` [PATCH 22/26] devtool: sync: tweak help / messages Paul Eggleton
2015-12-22  4:03 ` [PATCH 23/26] recipetool: create: improve autotools support Paul Eggleton
2015-12-22  4:03 ` [PATCH 24/26] recipetool: create: fix error when extracting source to a specified directory Paul Eggleton
2015-12-22  4:03 ` [PATCH 25/26] oe-selftest: add tests for simple devtool add / recipetool create URL case Paul Eggleton
2015-12-22  4:03 ` [PATCH 26/26] oe-selftest: devtool: add more explicit check for ls output Paul Eggleton
2015-12-24  2:45 ` [PATCH 00/26] devtool/recipetool improvements Khem Raj
2015-12-28 19:03   ` Paul Eggleton

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=cover.1450756555.git.paul.eggleton@linux.intel.com \
    --to=paul.eggleton@linux.intel.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.