Linux console tools development discussion
 help / color / mirror / Atom feed
* [kbd] [ANNOUNCE] kbd-1.15.3 (stable)
@ 2011-05-14 23:25 Alexey Gladkov
  2011-05-16  2:21 ` Mike Frysinger
  0 siblings, 1 reply; 7+ messages in thread
From: Alexey Gladkov @ 2011-05-14 23:25 UTC (permalink / raw)
  To: Linux console tools development discussion

kbd 1.15.3 Release Notes
==========================

The kbd-1.15.3 is available at

ftp://ftp.kernel.org/pub/linux/utils/kbd/
ftp://ftp.altlinux.org/pub/people/legion/kbd/

Feedback and bug reports, as always, are welcomed.

Changelog:
----------

o Build system:
  - Drop klibc support.
o Programs:
  - kbdinfo: New utility to obtain information about console.
  - setvtrgb: New utility to set the virtual terminal RGB colors.
  - loadkeys: Add LOADKEYS_KEYMAP_PATH env variable.
  - loadkeys: Fix some memory leaks.
  - loadkeys: Do not set prefer_unicode for iso-8859-1.
  - loadkeys -a: Switch to ASCII mode.
  - loadkeys: Fix "compose as usual" for Unicode diacritics (Michael
Schutte).
o Keymaps:
  - Add dvorak-ru keymap.
o Fonts:
  - Add LatGrkCyr fonts.

-- 
Rgrds, legion




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

* Re: [kbd] [ANNOUNCE] kbd-1.15.3 (stable)
  2011-05-14 23:25 [kbd] [ANNOUNCE] kbd-1.15.3 (stable) Alexey Gladkov
@ 2011-05-16  2:21 ` Mike Frysinger
  2011-05-16 21:24   ` Alexey Gladkov
  0 siblings, 1 reply; 7+ messages in thread
From: Mike Frysinger @ 2011-05-16  2:21 UTC (permalink / raw)
  To: kbd; +Cc: Alexey Gladkov

[-- Attachment #1: Type: Text/Plain, Size: 2505 bytes --]

seems like the gettext integration isnt quite right.  using gettext-0.18.1 
over here ...

first, the timestamps are off:
$ tar xf kbd-1.15.3.tar.gz
$ cd kbd-1.15.3
$ ./configure -q
$ make -d >& log
...
     Considering target file `aclocal.m4'.
       Pruning file `m4/gettext.m4'.
       Pruning file `m4/iconv.m4'.
       Pruning file `m4/lib-ld.m4'.
       Pruning file `m4/lib-link.m4'.
       Pruning file `m4/lib-prefix.m4'.
       Pruning file `m4/nls.m4'.
       Pruning file `m4/po.m4'.
       Pruning file `m4/progtest.m4'.
       Pruning file `configure.ac'.
      Finished prerequisites of target file `aclocal.m4'.
      Prerequisite `m4/gettext.m4' is older than target `aclocal.m4'.
      Prerequisite `m4/iconv.m4' is older than target `aclocal.m4'.
      Prerequisite `m4/lib-ld.m4' is older than target `aclocal.m4'.
      Prerequisite `m4/lib-link.m4' is older than target `aclocal.m4'.
      Prerequisite `m4/lib-prefix.m4' is older than target `aclocal.m4'.
      Prerequisite `m4/nls.m4' is older than target `aclocal.m4'.
      Prerequisite `m4/po.m4' is older than target `aclocal.m4'.
      Prerequisite `m4/progtest.m4' is older than target `aclocal.m4'.
      Prerequisite `configure.ac' is newer than target `aclocal.m4'.
     Must remake target `aclocal.m4'.
Invoking recipe from Makefile:266 to update target `aclocal.m4'.
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /usr/local/gentoo-x86/sys-
apps/kbd/kbd-1.15.3/config/missing --run aclocal-1.11 -I m4
...

next, the translation files themselves seem to be a bit outdated:
$ make
...
make[3]: Entering directory `.../kbd-1.15.3/po'
make[3]: `cs.gmo' is up to date.
make[3]: `da.gmo' is up to date.
make[3]: `de.gmo' is up to date.
make[3]: `el.gmo' is up to date.
make[3]: `eo.gmo' is up to date.
rm -f es.gmo && /usr/bin/gmsgfmt -c --statistics -o es.gmo es.po
es.po:1366: 'msgstr' is not a valid C format string, unlike 'msgid'. Reason: 
The string refers to arguments both through absolute argument numbers and 
through unnumbered argument specifications.
/usr/bin/gmsgfmt: found 1 fatal error
204 translated messages, 38 fuzzy translations, 50 untranslated messages.
make[3]: *** [es.gmo] Error 1
...

unrelated, `make dist` doesnt seem to work at all:
$ make dist
...
make[1]: Entering directory `.../kbd-1.15.3/src'
make[1]: *** No rule to make target `analyze.l', needed by `analyze.c'.  Stop.
make[1]: Leaving directory `.../kbd-1.15.3/src'
...
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [kbd] [ANNOUNCE] kbd-1.15.3 (stable)
  2011-05-16  2:21 ` Mike Frysinger
@ 2011-05-16 21:24   ` Alexey Gladkov
  2011-05-16 21:42     ` Ken Moffat
  0 siblings, 1 reply; 7+ messages in thread
From: Alexey Gladkov @ 2011-05-16 21:24 UTC (permalink / raw)
  Cc: kbd

16.05.2011 06:21, Mike Frysinger wrote:
> seems like the gettext integration isnt quite right.  using gettext-0.18.1 
> over here ...

That's why I made ​​a release candidate. But apparently no one is
testing it.

-- 
Rgrds, legion



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

* Re: [kbd] [ANNOUNCE] kbd-1.15.3 (stable)
  2011-05-16 21:24   ` Alexey Gladkov
@ 2011-05-16 21:42     ` Ken Moffat
  2011-05-16 22:16       ` Alexey Gladkov
  0 siblings, 1 reply; 7+ messages in thread
From: Ken Moffat @ 2011-05-16 21:42 UTC (permalink / raw)
  To: Linux console tools development discussion

On Tue, May 17, 2011 at 01:24:32AM +0400, Alexey Gladkov wrote:
> 16.05.2011 06:21, Mike Frysinger wrote:
> > seems like the gettext integration isnt quite right.  using gettext-0.18.1 
> > over here ...
> 
> That's why I made ​​a release candidate. But apparently no one is
> testing it.
> 
 I had it on my ToDo list, but only glanced at your post, and
convinced myself I had more time.  Apologies.  If I wished to split
hairs, I would say that the messages above are from "make install",
but 'make' itself ends with the same error.  It looks as if all
languages after 'es' have not been processed.

ken
-- 
das eine Mal als Tragödie, das andere Mal als Farce


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

* Re: [kbd] [ANNOUNCE] kbd-1.15.3 (stable)
  2011-05-16 21:42     ` Ken Moffat
@ 2011-05-16 22:16       ` Alexey Gladkov
  2011-05-16 23:13         ` Mike Frysinger
  0 siblings, 1 reply; 7+ messages in thread
From: Alexey Gladkov @ 2011-05-16 22:16 UTC (permalink / raw)
  To: kbd

17.05.2011 01:42, Ken Moffat wrote:
>  I had it on my ToDo list, but only glanced at your post, and
> convinced myself I had more time.  Apologies.  If I wished to split
> hairs, I would say that the messages above are from "make install",
> but 'make' itself ends with the same error.  It looks as if all
> languages after 'es' have not been processed.

All of these bugs are fixed in git.

-- 
Rgrds, legion



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

* Re: [kbd] [ANNOUNCE] kbd-1.15.3 (stable)
  2011-05-16 22:16       ` Alexey Gladkov
@ 2011-05-16 23:13         ` Mike Frysinger
  2011-05-17 12:28           ` Alexey Gladkov
  0 siblings, 1 reply; 7+ messages in thread
From: Mike Frysinger @ 2011-05-16 23:13 UTC (permalink / raw)
  To: kbd; +Cc: Alexey Gladkov

[-- Attachment #1: Type: Text/Plain, Size: 562 bytes --]

On Monday, May 16, 2011 18:16:05 Alexey Gladkov wrote:
> 17.05.2011 01:42, Ken Moffat wrote:
> >  I had it on my ToDo list, but only glanced at your post, and
> > 
> > convinced myself I had more time.  Apologies.  If I wished to split
> > hairs, I would say that the messages above are from "make install",
> > but 'make' itself ends with the same error.  It looks as if all
> > languages after 'es' have not been processed.
> 
> All of these bugs are fixed in git.

thanks, seems to be ok for me

although `make distcheck` still fails ...
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [kbd] [ANNOUNCE] kbd-1.15.3 (stable)
  2011-05-16 23:13         ` Mike Frysinger
@ 2011-05-17 12:28           ` Alexey Gladkov
  0 siblings, 0 replies; 7+ messages in thread
From: Alexey Gladkov @ 2011-05-17 12:28 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: kbd

17.05.2011 03:13, Mike Frysinger wrote:
> although `make distcheck` still fails ...

Fixed in git.

-- 
Rgrds, legion



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

end of thread, other threads:[~2011-05-17 12:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-14 23:25 [kbd] [ANNOUNCE] kbd-1.15.3 (stable) Alexey Gladkov
2011-05-16  2:21 ` Mike Frysinger
2011-05-16 21:24   ` Alexey Gladkov
2011-05-16 21:42     ` Ken Moffat
2011-05-16 22:16       ` Alexey Gladkov
2011-05-16 23:13         ` Mike Frysinger
2011-05-17 12:28           ` Alexey Gladkov

Linux console tools development discussion

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/kbd/0 kbd/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 kbd kbd/ http://lore.altlinux.org/kbd \
		kbd@lists.altlinux.org kbd@lists.altlinux.ru kbd@lists.altlinux.com
	public-inbox-index kbd

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.kbd


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git