Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch yem-misc
@ 2013-02-04 22:49 Yann E. MORIN
  2013-02-04 22:49 ` [Buildroot] [PATCH 1/2] package/zic: new host package Yann E. MORIN
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Yann E. MORIN @ 2013-02-04 22:49 UTC (permalink / raw)
  To: buildroot

Hello All!

This series is a based on Richard's tzdata initial series, with some fixes
discussed today during the Developper's Day.

Changes since Richard's post:
  - install POSIX time zones only once
  - path to 'zic' is exported by the 'zic' package

The following changes since commit d3e7fbd75e49e3368b8c361c45344266ceca5cfd:

  heirloom-mailx: needs fork() (2013-02-03 21:37:32 +0100)

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

Richard Braun (2):
      package/zic: new host package
      package/tzdata: new package

 package/Config.in                      |    1 +
 package/tzdata/Config.in               |   20 ++++++++++++++
 package/tzdata/tzdata.mk               |   46 ++++++++++++++++++++++++++++++++
 package/zic/zic-fix-dependencies.patch |   27 ++++++++++++++++++
 package/zic/zic.mk                     |   29 ++++++++++++++++++++
 5 files changed, 123 insertions(+), 0 deletions(-)
 create mode 100644 package/tzdata/Config.in
 create mode 100644 package/tzdata/tzdata.mk
 create mode 100644 package/zic/zic-fix-dependencies.patch
 create mode 100644 package/zic/zic.mk

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] 13+ messages in thread
* [Buildroot] [pull request v2] Pull request for branch yem-misc
@ 2013-03-07 21:53 Yann E. MORIN
  2013-03-07 21:53 ` [Buildroot] [PATCH 2/2] package/tzdata: new package Yann E. MORIN
  0 siblings, 1 reply; 13+ messages in thread
From: Yann E. MORIN @ 2013-03-07 21:53 UTC (permalink / raw)
  To: buildroot

Hello All!

This series is a based on Richard's tzdata initial series, with some fixes
discussed during the Developper's Day.

Changes v1 -> v2:
  -  rebased on master

Changes since Richard's post -> v1:
  - install POSIX time zones only once
  - path to 'zic' is exported by the 'zic' package


The following changes since commit 203c30796e232faaf3a7de19090657bf3e7db16a:

  rpi-userland: provides OpenGL ES, EGL and OpenVG (2013-03-06 22:18:39 +0100)

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

Richard Braun (2):
      package/zic: new host package
      package/tzdata: new package

 package/Config.in                      |    1 +
 package/tzdata/Config.in               |   20 ++++++++++++++
 package/tzdata/tzdata.mk               |   46 ++++++++++++++++++++++++++++++++
 package/zic/zic-fix-dependencies.patch |   27 ++++++++++++++++++
 package/zic/zic.mk                     |   29 ++++++++++++++++++++
 5 files changed, 123 insertions(+), 0 deletions(-)
 create mode 100644 package/tzdata/Config.in
 create mode 100644 package/tzdata/tzdata.mk
 create mode 100644 package/zic/zic-fix-dependencies.patch
 create mode 100644 package/zic/zic.mk

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] 13+ messages in thread
* [Buildroot] [PATCH] packages: add tzdata
@ 2013-01-04 12:41 Thomas Petazzoni
  2013-01-04 13:06 ` [Buildroot] [PATCH 2/2] package/tzdata: new package Richard Braun
  0 siblings, 1 reply; 13+ messages in thread
From: Thomas Petazzoni @ 2013-01-04 12:41 UTC (permalink / raw)
  To: buildroot

Dear Richard Braun,

On Fri, 4 Jan 2013 13:07:59 +0100, Richard Braun wrote:

> > depends on BR2_TOOLCHAIN_EXTERNAL_GLIBC || BR2_TOOLCHAIN_CTNG_eglibc || BR2_TOOLCHAIN_CTNG_glibc
> 
> This would prevent other applications with support for the format from
> using it (in other words, although I'm not aware of other such
> applications, glibc might not be the only user). The time zone database
> itself has no real dependency. Do you still think I should add these,
> and change them when needed only ?

Hum, good question. Maybe you can keep it as you proposed, but increase
the help text about uClibc, explaining that this is generally mostly
useful with glibc, but kept available for uClibc in case a specific
application makes use of tzdata.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

end of thread, other threads:[~2013-03-07 21:53 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 22:49 [Buildroot] [pull request] Pull request for branch yem-misc Yann E. MORIN
2013-02-04 22:49 ` [Buildroot] [PATCH 1/2] package/zic: new host package Yann E. MORIN
2013-02-04 22:49 ` [Buildroot] [PATCH 2/2] package/tzdata: new package Yann E. MORIN
2013-02-26  2:02   ` Danomi Manchego
2013-02-26  7:43     ` Richard Braun
2013-02-26 20:52     ` Yann E. MORIN
2013-02-17 23:34 ` [Buildroot] [pull request] Pull request for branch yem-misc Yann E. MORIN
  -- strict thread matches above, loose matches on Subject: below --
2013-03-07 21:53 [Buildroot] [pull request v2] " Yann E. MORIN
2013-03-07 21:53 ` [Buildroot] [PATCH 2/2] package/tzdata: new package Yann E. MORIN
2013-01-04 12:41 [Buildroot] [PATCH] packages: add tzdata Thomas Petazzoni
2013-01-04 13:06 ` [Buildroot] [PATCH 2/2] package/tzdata: new package Richard Braun
2013-01-04 13:41   ` Thomas Petazzoni
2013-01-04 13:45     ` Richard Braun
2013-01-04 13:48       ` Thomas Petazzoni
2013-01-04 13:57         ` Richard Braun

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