All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] minor trivia; [RFC] add xz
@ 2010-02-10 20:12 Bernhard Reutner-Fischer
  2010-02-10 20:12 ` [PATCH 1/8] hwclock.sh: some more !getopt_long fixes Bernhard Reutner-Fischer
  0 siblings, 1 reply; 34+ messages in thread
From: Bernhard Reutner-Fischer @ 2010-02-10 20:12 UTC (permalink / raw)
  To: openembedded-devel

Hi,

hwcloch.sh: resend with just the !getopt_long fixes.
autoconf: add SRC_URI name setting for later 2.65 addition
gmp: add SRC_URI name setting for later 5.0.1 addition (not sent)
base.bbclass: handle xz compressed files
busybox: all *.gz were moved to legacy/ a few days ago. Switch to
         new-style checksums while at it. Didn't touch 1.7.2 which is
         now undownloadable but ancient cruft anyway.
         Remove checksums for download-patches that don't show up in
         recipes/busybox/*bb
autoconf: well, add 2.65; xz will need > 2.63
RFC: xz package (lzma successor). That's the RFC spot. The git versions
     (e.g. xz-native_git, automake-1.11.1, autoconf-2.65) somehow behave
     oddly with NLS on.
     Do sed -i -e "/^EXTRA_OECONF/d" recipes/xz/xz_git.bb
     and also wipe everything below "^# XXX" for the gory details.
     Ideas?

Everything but xz would be nice to have in dev, xz unaltered like in the
patch in this series works for me but needs further love to be clean;

Thanks && cheers,

Bernhard Reutner-Fischer (8):
  hwclock.sh: some more !getopt_long fixes
  autoconf: set SRC_URI name
  gmp: set SRC_URI name
  handle xz compressed files and tarballs
  busybox: use .tar.bz2
  busybox: remove orphaned patch checksums
  autoconf: add 2.65
  xz: add xz package

 classes/base.bbclass                               |    4 +
 conf/checksums.ini                                 |   92 ---------------
 .../autoheader-nonfatal-warnings.patch             |   13 ++
 .../autoconf-2.65/autoreconf-exclude.patch         |  123 ++++++++++++++++++++
 .../autoconf-2.65/autoreconf-foreign.patch         |   11 ++
 .../autoconf-2.65/autoreconf-gnuconfigize.patch    |   30 +++++
 recipes/autoconf/autoconf-2.65/config-site.patch   |   11 ++
 recipes/autoconf/autoconf-2.65/fix_path_xtra.patch |  111 ++++++++++++++++++
 recipes/autoconf/autoconf-2.65/program-GNU.patch   |   13 ++
 recipes/autoconf/autoconf-2.65/program-mkdir.patch |   11 ++
 .../autoconf/autoconf-2.65/program_prefix.patch    |   19 +++
 recipes/autoconf/autoconf-native_2.65.bb           |   12 ++
 recipes/autoconf/autoconf.inc                      |    2 +-
 recipes/autoconf/autoconf_2.65.bb                  |   15 +++
 recipes/busybox/busybox.inc                        |    1 -
 recipes/busybox/busybox_1.11.3.bb                  |    4 +-
 recipes/busybox/busybox_1.13.2.bb                  |    4 +-
 recipes/busybox/busybox_1.14.3.bb                  |    6 +-
 recipes/busybox/busybox_1.15.3.bb                  |    4 +-
 recipes/busybox/busybox_1.2.1.bb                   |    7 +-
 recipes/busybox/busybox_1.2.2.bb                   |    7 +-
 recipes/busybox/busybox_1.3.1.bb                   |    6 +-
 recipes/busybox/busybox_1.7.2.bb                   |    4 +-
 recipes/busybox/busybox_1.9.2.bb                   |    4 +-
 recipes/busybox/files/hwclock.sh                   |   10 +-
 recipes/gettext/gettext-0.17/m4_copy.patch         |   52 ++++++++
 recipes/gettext/gettext_0.17.bb                    |    1 +
 recipes/gmp/gmp.inc                                |    2 +-
 recipes/xz/xz-native.inc                           |    2 +
 recipes/xz/xz-native_4.999.9beta.bb                |    3 +
 recipes/xz/xz-native_git.bb                        |    7 +
 recipes/xz/xz.inc                                  |    8 ++
 recipes/xz/xz_4.999.9beta.bb                       |    8 ++
 recipes/xz/xz_git.bb                               |   22 ++++
 34 files changed, 518 insertions(+), 111 deletions(-)
 create mode 100644 recipes/autoconf/autoconf-2.65/autoheader-nonfatal-warnings.patch
 create mode 100644 recipes/autoconf/autoconf-2.65/autoreconf-exclude.patch
 create mode 100644 recipes/autoconf/autoconf-2.65/autoreconf-foreign.patch
 create mode 100644 recipes/autoconf/autoconf-2.65/autoreconf-gnuconfigize.patch
 create mode 100644 recipes/autoconf/autoconf-2.65/config-site.patch
 create mode 100644 recipes/autoconf/autoconf-2.65/fix_path_xtra.patch
 create mode 100644 recipes/autoconf/autoconf-2.65/program-GNU.patch
 create mode 100644 recipes/autoconf/autoconf-2.65/program-mkdir.patch
 create mode 100644 recipes/autoconf/autoconf-2.65/program_prefix.patch
 create mode 100644 recipes/autoconf/autoconf-native_2.65.bb
 create mode 100644 recipes/autoconf/autoconf_2.65.bb
 create mode 100644 recipes/gettext/gettext-0.17/m4_copy.patch
 create mode 100644 recipes/xz/xz-native.inc
 create mode 100644 recipes/xz/xz-native_4.999.9beta.bb
 create mode 100644 recipes/xz/xz-native_git.bb
 create mode 100644 recipes/xz/xz.inc
 create mode 100644 recipes/xz/xz_4.999.9beta.bb
 create mode 100644 recipes/xz/xz_git.bb




^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2010-06-01 18:45 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-10 20:12 [PATCH 0/8] minor trivia; [RFC] add xz Bernhard Reutner-Fischer
2010-02-10 20:12 ` [PATCH 1/8] hwclock.sh: some more !getopt_long fixes Bernhard Reutner-Fischer
2010-02-10 20:12   ` [PATCH 2/8] autoconf: set SRC_URI name Bernhard Reutner-Fischer
2010-02-10 20:12     ` [PATCH 3/8] gmp: " Bernhard Reutner-Fischer
2010-02-10 20:12       ` [PATCH 4/8] handle xz compressed files and tarballs Bernhard Reutner-Fischer
2010-02-10 20:12         ` [PATCH 5/8] busybox: use .tar.bz2 Bernhard Reutner-Fischer
2010-02-10 20:12           ` [PATCH 6/8] busybox: remove orphaned patch checksums Bernhard Reutner-Fischer
2010-02-10 20:12             ` [PATCH 7/8] autoconf: add 2.65 Bernhard Reutner-Fischer
2010-02-10 20:13               ` [PATCH 8/8] xz: add xz package Bernhard Reutner-Fischer
2010-02-11 12:53                 ` Phil Blundell
2010-02-13 12:51                   ` Bernhard Reutner-Fischer
2010-02-13 13:19                     ` Phil Blundell
2010-02-13 14:37                       ` Bernhard Reutner-Fischer
2010-02-13 18:46                         ` Phil Blundell
2010-02-13 16:14                     ` BBCLASSEXTEND canadian? Bernhard Reutner-Fischer
2010-02-25  0:49                       ` Tom Rini
2010-02-25  7:41                         ` Bernhard Reutner-Fischer
2010-02-25 10:40                           ` Richard Purdie
2010-02-25 10:39                         ` Richard Purdie
2010-02-25 17:21                           ` Tom Rini
2010-02-25 18:18                             ` C Michael Sundius
2010-02-25 20:16                             ` Richard Purdie
2010-05-28  8:37                               ` Bernhard Reutner-Fischer
2010-06-01 18:41                                 ` Tom Rini
2010-02-11 14:06                 ` [PATCH 8/8] xz: add xz package Koen Kooi
2010-02-13 12:55                   ` Bernhard Reutner-Fischer
2010-02-13 13:11                     ` Bernhard Reutner-Fischer
2010-03-04 14:32               ` [PATCH 7/8] autoconf: add 2.65 Marcin Juszkiewicz
2010-02-14 21:33             ` [PATCH 6/8] busybox: remove orphaned patch checksums Phil Blundell
2010-02-14 21:32           ` [PATCH 5/8] busybox: use .tar.bz2 Phil Blundell
2010-02-11 12:27         ` [PATCH 4/8] handle xz compressed files and tarballs Phil Blundell
2010-02-14 20:16       ` [PATCH 3/8] gmp: set SRC_URI name Phil Blundell
2010-02-14 21:35     ` [PATCH 2/8] autoconf: " Phil Blundell
2010-02-14 21:34   ` [PATCH 1/8] hwclock.sh: some more !getopt_long fixes Phil Blundell

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.