Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch yem-patchwork
@ 2013-03-24 22:50 Yann E. MORIN
  2013-03-24 22:50 ` [Buildroot] [PATCH 01/14] configs: add RaspberryPi defconfig Yann E. MORIN
                   ` (13 more replies)
  0 siblings, 14 replies; 20+ messages in thread
From: Yann E. MORIN @ 2013-03-24 22:50 UTC (permalink / raw)
  To: buildroot

Hello Peter, All!

This series is the collection of patches I've been working on during
the Patchwork Bashing Day. Details bellow.

I'll handle updating the old, now-superseded patches in the patchwork.


The following changes since commit be8e32d585f38cb5527fa65c53bf23fba025c62c:

  netsnmp: configurable MIB modules (2013-03-24 23:40:56 +0100)

are available in the git repository at:
  git://gitorious.org/buildroot/buildroot.git yem-patchwork

Jerzy Grzegorek (1):
      apply-patches.sh: applying xz-ed patches

Maxime Hadjinlian (1):
      configs: add RaspberryPi defconfig

Olivier Schonken (3):
      Added package enscript
      Added package foomatic-filters
      Added package Gutenprint

Samuel Martin (6):
      manual: add manual generation date/git revision in the manual text
      support: add kconfiglib python module
      support/scripts: add gen-manual-lists.py
      manual: cleanup appendix.txt
      manual: add a make target 'manual-update-lists'
      manual: do not track generated files

Simon Dawson (3):
      czmq: new package
      cppzmq: new package
      zmqpp: new package

 .gitignore                                         |    3 +
 board/raspberrypi/README.txt                       |  127 +
 configs/rpi_defconfig                              |   23 +
 docs/manual/appendix.txt                           |   29 +-
 docs/manual/deprecated-list.txt                    |   46 -
 docs/manual/manual.mk                              |   10 +-
 docs/manual/manual.txt                             |    3 +
 docs/manual/pkg-list.txt                           |  870 -----
 package/Config.in                                  |    6 +
 package/cppzmq/Config.in                           |   15 +
 package/cppzmq/cppzmq.mk                           |   23 +
 package/czmq/Config.in                             |   14 +
 package/czmq/czmq.mk                               |   23 +
 package/enscript/Config.in                         |   11 +
 package/enscript/enscript.mk                       |   19 +
 package/foomatic-filters/Config.in                 |   14 +
 package/foomatic-filters/foomatic-filters.mk       |   20 +
 package/gutenprint/Config.in                       |   14 +
 .../gutenprint-000-use-pregen-xmli18n-header.patch |   48 +
 package/gutenprint/gutenprint.mk                   |   73 +
 package/zmqpp/Config.in                            |   32 +
 package/zmqpp/zmqpp-fix-typos-in-code.patch        |   46 +
 package/zmqpp/zmqpp.mk                             |   54 +
 support/scripts/apply-patches.sh                   |    6 +-
 support/scripts/gen-manual-lists.py                |  348 ++
 support/scripts/kconfiglib.py                      | 3772 ++++++++++++++++++++
 support/scripts/readme                             |   30 +
 27 files changed, 4750 insertions(+), 929 deletions(-)
 create mode 100644 board/raspberrypi/README.txt
 create mode 100644 configs/rpi_defconfig
 delete mode 100644 docs/manual/deprecated-list.txt
 delete mode 100644 docs/manual/pkg-list.txt
 create mode 100644 package/cppzmq/Config.in
 create mode 100644 package/cppzmq/cppzmq.mk
 create mode 100644 package/czmq/Config.in
 create mode 100644 package/czmq/czmq.mk
 create mode 100644 package/enscript/Config.in
 create mode 100644 package/enscript/enscript.mk
 create mode 100644 package/foomatic-filters/Config.in
 create mode 100644 package/foomatic-filters/foomatic-filters.mk
 create mode 100644 package/gutenprint/Config.in
 create mode 100644 package/gutenprint/gutenprint-000-use-pregen-xmli18n-header.patch
 create mode 100644 package/gutenprint/gutenprint.mk
 create mode 100644 package/zmqpp/Config.in
 create mode 100644 package/zmqpp/zmqpp-fix-typos-in-code.patch
 create mode 100644 package/zmqpp/zmqpp.mk
 create mode 100755 support/scripts/gen-manual-lists.py
 create mode 100644 support/scripts/kconfiglib.py
 create mode 100644 support/scripts/readme

Regards,
Yann E. MORIN

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2013-03-24 23:50 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-24 22:50 [Buildroot] [pull request] Pull request for branch yem-patchwork Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 01/14] configs: add RaspberryPi defconfig Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 02/14] manual: add manual generation date/git revision in the manual text Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 03/14] support: add kconfiglib python module Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 04/14] support/scripts: add gen-manual-lists.py Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 05/14] manual: cleanup appendix.txt Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 06/14] manual: add a make target 'manual-update-lists' Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 07/14] manual: do not track generated files Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 08/14] Added package enscript Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 09/14] Added package foomatic-filters Yann E. MORIN
2013-03-24 23:04   ` Thomas Petazzoni
2013-03-24 23:33     ` Yann E. MORIN
2013-03-24 23:37     ` [Buildroot] [PATCH] " Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 10/14] Added package Gutenprint Yann E. MORIN
2013-03-24 23:37   ` Thomas Petazzoni
2013-03-24 23:50     ` [Buildroot] [PATCH] " Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 11/14] apply-patches.sh: applying xz-ed patches Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 12/14] czmq: new package Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 13/14] cppzmq: " Yann E. MORIN
2013-03-24 22:50 ` [Buildroot] [PATCH 14/14] zmqpp: " Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox