Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: <yann.morin@orange.com>
To: <buildroot@buildroot.org>
Cc: "Yann E . MORIN" <yann.morin@orange.com>
Subject: [Buildroot] [PATCH 0/8] package/skopeo: new package
Date: Thu, 2 Nov 2023 17:09:23 +0100	[thread overview]
Message-ID: <cover.1698941362.git.yann.morin@orange.com> (raw)

From: "Yann E. MORIN" <yann.morin@orange.com>

Hello All!

This series introduces a host-only package for skopeo, a tool to
manipulate OCI and docker images, and push and fetch them to/from
registries.

The series is articulated in three parts:

 1. fixes in the golang infra to properly manage legal-info for
    host-only packages (and cargo while at it, as it has the same
    issues)

 2. adding host variants to a few dependencies for host-skopeo

 3. adding host-skopeo proper

Skopeo is expected to be used from post-image scripts, to convert OCI
images to docker ones, or to push them to a docker registry, or even to
load them into a (possibly remote) docker daemon; there is no new
"filesystem" format introduced (no fs/docker-image/ for example), and
thus needs an entry in the host-packages sub-menu.


Regards,
Yann E. MORIN.


The following changes since commit 8a4e81ff9d54ed90dbbf02b056bc9f97ce9425a4

  utils/docker-run: propagate user's proxy settings (2023-11-02 08:52:50 +0100)


are available as patches in this mail series,

for you to apply patches up to fb85e4dd41a441b26ae93b621f8f2462ab0eeafc

  package/skopeo: new host package (2023-11-02 08:52:51 +0100)


----------------------------------------------------------------
Yann E. MORIN (8):
      package/pkg-cargo: don't expand license info when empty
      package/pkg-cargo: handle licensing terms for host-only packages
      package/pkg-golang: don't expand license info when empty
      package/pkg-golang: handle licensing terms for host-only packages
      package/libgpg-error: enable host-variant
      package/libassuan: add host variant
      package/libgpgme: add host variant
      package/skopeo: new host package

 package/Config.in.host               |  1 +
 package/libassuan/libassuan.mk       |  6 ++++++
 package/libgpg-error/libgpg-error.mk |  6 ++++++
 package/libgpgme/libgpgme.mk         | 19 +++++++++++++++++++
 package/pkg-cargo.mk                 | 15 ++++++++++++++-
 package/pkg-golang.mk                | 15 ++++++++++++++-
 package/skopeo/Config.in.host        |  7 +++++++
 package/skopeo/skopeo.hash           |  2 ++
 package/skopeo/skopeo.mk             | 22 ++++++++++++++++++++++
 9 files changed, 91 insertions(+), 2 deletions(-)
 create mode 100644 package/skopeo/Config.in.host
 create mode 100644 package/skopeo/skopeo.hash
 create mode 100644 package/skopeo/skopeo.mk

--
                                        ____________
.-----------------.--------------------:       _    :------------------.
|  Yann E. MORIN  | Real-Time Embedded |    __/ )   | /"\ ASCII RIBBON |
|                 | Software  Designer |  _/ - /'   | \ / CAMPAIGN     |
| +33 638.411.245 '--------------------: (_    `--, |  X  AGAINST      |
| yann.morin (at) orange.com           |_="    ,--' | / \ HTML MAIL    |
'--------------------------------------:______/_____:------------------'

____________________________________________________________________________________________________________
Ce message et ses pieces jointes peuvent contenir des informations confidentielles ou privilegiees et ne doivent donc
pas etre diffuses, exploites ou copies sans autorisation. Si vous avez recu ce message par erreur, veuillez le signaler
a l'expediteur et le detruire ainsi que les pieces jointes. Les messages electroniques etant susceptibles d'alteration,
Orange decline toute responsabilite si ce message a ete altere, deforme ou falsifie. Merci.

This message and its attachments may contain confidential or privileged information that may be protected by law;
they should not be distributed, used or copied without authorisation.
If you have received this email in error, please notify the sender and delete this message and its attachments.
As emails may be altered, Orange is not liable for messages that have been modified, changed or falsified.
Thank you.

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

             reply	other threads:[~2023-11-02 16:09 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-02 16:09 yann.morin [this message]
2023-11-02 16:09 ` [Buildroot] [PATCH 1/8] package/pkg-cargo: don't expand license info when empty yann.morin
2023-11-08 21:14   ` Peter Korsgaard
2023-11-02 16:09 ` [Buildroot] [PATCH 2/8] package/pkg-cargo: handle licensing terms for host-only packages yann.morin
2023-11-02 16:09 ` [Buildroot] [PATCH 3/8] package/pkg-golang: don't expand license info when empty yann.morin
2023-11-02 16:09 ` [Buildroot] [PATCH 4/8] package/pkg-golang: handle licensing terms for host-only packages yann.morin
2023-11-04 16:54   ` Arnout Vandecappelle via buildroot
2023-11-02 16:09 ` [Buildroot] [PATCH 5/8] package/libgpg-error: enable host-variant yann.morin
2024-07-13 14:19   ` Thomas Petazzoni via buildroot
2023-11-02 16:09 ` [Buildroot] [PATCH 6/8] package/libassuan: add host variant yann.morin
2024-07-13 14:19   ` Thomas Petazzoni via buildroot
2023-11-02 16:09 ` [Buildroot] [PATCH 7/8] package/libgpgme: " yann.morin
2024-07-13 14:19   ` Thomas Petazzoni via buildroot
2023-11-02 16:09 ` [Buildroot] [PATCH 8/8] package/skopeo: new host package yann.morin
2024-07-13 14:20   ` Thomas Petazzoni via buildroot

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.1698941362.git.yann.morin@orange.com \
    --to=yann.morin@orange.com \
    --cc=buildroot@buildroot.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox