powertop.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [Powertop] [PATCH v2 00/10] Housecleaning and Gettext cleanup
@ 2016-08-04  0:59 Joe Konno
  0 siblings, 0 replies; 3+ messages in thread
From: Joe Konno @ 2016-08-04  0:59 UTC (permalink / raw)
  To: powertop

[-- Attachment #1: Type: text/plain, Size: 3104 bytes --]

From: Joe Konno <joe.konno(a)intel.com>

Hey gang,

v2 of this series tackles gettext refreshing once again. This time, though, I
included some additional housecleaning items. I would have submitted those
separately if they did not influence the other bits in this series.

In a nutshell, I ran gettextize (from v0.18.2), and touched a few configuration
files as directed by the gettext documentation (along with .gitignore).

The "biggest" change is the (re-)generation of POTFILES.in. This lead to
regeneration of powertop.pot (the basis upon which translation work is done),
which prompted a re-generation of all pre-existing translation artifacts. I had
originally generated a single patch for all the .po files, but I decided to
break it up in case folks have per-message size constraints set by their mail
provider's MTA. I will likely squash all *.po patches into one commit at push
time.

The other housecleaning items I tackled here:
  * AC_REVISION to "2.9-pre"
  * --version now embeds "__DATE__ at __TIME__" in output
  * Added a maintainer script for (re-)generating POTFILES.in

No functional side-effects anticipated.

Joe Konno (10):
  configure.ac: bump version to 2.9-pre
  main.cpp: append __TIME__ to --version output
  Makefile.am: add --install to ACLOCAL_AMFLAGS
  gettext: run gettextize-0.18.2
  .gitignore: ignnore m4/pkg.m4
  Makevars: align more closely to generated .template
  scripts: add regenerate-potfiles-in script
  POTFILES.in: refresh files with strings
  powertop.pot: xgettext refresh, attribution fix
  po: regenerate with new POT and strings

 .gitignore                     |    1 +
 Makefile.am                    |    4 +-
 configure.ac                   |    4 +-
 m4/ChangeLog                   |   11 +
 po/ChangeLog                   |   11 +
 po/Makefile.in.in              |   19 +-
 po/Makevars                    |   14 +-
 po/POTFILES.in                 |   47 +-
 po/ca.po                       |  989 ++++++++++++++++++++------------------
 po/cs_CZ.po                    | 1005 ++++++++++++++++++++------------------
 po/de_DE.po                    | 1011 ++++++++++++++++++++------------------
 po/en_GB.po                    |  915 +++++++++++++++++++----------------
 po/en_US.po                    |  987 ++++++++++++++++++++------------------
 po/es_ES.po                    | 1040 +++++++++++++++++++++-------------------
 po/hu_HU.po                    | 1003 ++++++++++++++++++++------------------
 po/id_ID.po                    | 1001 ++++++++++++++++++++------------------
 po/nl_NL.po                    |  931 ++++++++++++++++++-----------------
 po/powertop.pot                |  839 +++++++++++++++++---------------
 po/zh_TW.po                    | 1001 ++++++++++++++++++++------------------
 scripts/regenerate-potfiles-in |   15 +
 src/main.cpp                   |    2 +-
 21 files changed, 5879 insertions(+), 4971 deletions(-)
 create mode 100644 m4/ChangeLog
 create mode 100644 po/ChangeLog
 create mode 100644 scripts/regenerate-potfiles-in

-- 
1.8.3.1


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

* Re: [Powertop] [PATCH v2 00/10] Housecleaning and Gettext cleanup
@ 2016-08-04 22:01 Joe Konno
  0 siblings, 0 replies; 3+ messages in thread
From: Joe Konno @ 2016-08-04 22:01 UTC (permalink / raw)
  To: powertop

[-- Attachment #1: Type: text/plain, Size: 1256 bytes --]

On Wed,  3 Aug 2016 17:59:10 -0700
Joe Konno <joe.konno(a)linux.intel.com> wrote:

> Joe Konno (10):
>   configure.ac: bump version to 2.9-pre
>   main.cpp: append __TIME__ to --version output
>   Makefile.am: add --install to ACLOCAL_AMFLAGS
>   gettext: run gettextize-0.18.2
>   .gitignore: ignnore m4/pkg.m4
>   Makevars: align more closely to generated .template
>   scripts: add regenerate-potfiles-in script
>   POTFILES.in: refresh files with strings
>   powertop.pot: xgettext refresh, attribution fix
>   po: regenerate with new POT and strings

Second patch was removed from series. As promised, v2 patches 10-19 were
squashed into one, for a total of 9 patches pushed (listed git log --reverse
order):

  7b35acae25e3 configure.ac: bump version to 2.9-pre
  fadd7a020c05 Makefile.am: add --install to ACLOCAL_AMFLAGS
  c0bb3d79f3e4 gettext: run gettextize-0.18.2
  f791afba18ec .gitignore: ignnore m4/pkg.m4
  6d56120e04f2 Makevars: align more closely to generated .template
  49fbc68887ea scripts: add regenerate-potfiles-in script
  8d89b588d977 POTFILES.in: refresh files with strings
  de4b41828aac powertop.pot: xgettext refresh, attribution fix
  1bfd95884978 po: regenerate with new POT and strings

Cheers

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

* Re: [Powertop] [PATCH v2 00/10] Housecleaning and Gettext cleanup
@ 2016-08-04  1:08 Joe Konno
  0 siblings, 0 replies; 3+ messages in thread
From: Joe Konno @ 2016-08-04  1:08 UTC (permalink / raw)
  To: powertop

[-- Attachment #1: Type: text/plain, Size: 932 bytes --]

Apologies for not catching the "v2 00/10" gaffe prior to submission. I won't
bombard your inbox with another submission. ^_^

On Wed,  3 Aug 2016 17:59:10 -0700
Joe Konno <joe.konno(a)linux.intel.com> wrote:

> Joe Konno (10):
>   configure.ac: bump version to 2.9-pre
>   main.cpp: append __TIME__ to --version output
>   Makefile.am: add --install to ACLOCAL_AMFLAGS
>   gettext: run gettextize-0.18.2
>   .gitignore: ignnore m4/pkg.m4
>   Makevars: align more closely to generated .template
>   scripts: add regenerate-potfiles-in script
>   POTFILES.in: refresh files with strings
>   powertop.pot: xgettext refresh, attribution fix
>   po: regenerate with new POT and strings

Once again, v2 patches 10-19 will likely be squashed into ...
    po: regenerate with new POT and strings

... at commit time. So, once this gets pushed, it will be a 10 patch series
(and not a 19-patch series).

Cheers, hth

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

end of thread, other threads:[~2016-08-04 22:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-04  0:59 [Powertop] [PATCH v2 00/10] Housecleaning and Gettext cleanup Joe Konno
2016-08-04  1:08 Joe Konno
2016-08-04 22:01 Joe Konno

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).