Util-Linux package development
 help / color / mirror / Atom feed
* [PATCH 00/16] pull: changes to various utils
@ 2015-02-22 14:41 Sami Kerola
  2015-02-22 14:41 ` [PATCH 01/16] whereis: tell when mandatory option is missing Sami Kerola
                   ` (17 more replies)
  0 siblings, 18 replies; 48+ messages in thread
From: Sami Kerola @ 2015-02-22 14:41 UTC (permalink / raw)
  To: util-linux; +Cc: Sami Kerola

Hello,

Here is collection of patches that hit various utilities all around
source tree, and do not have any particular theme.  These changes are
also available from my github remote repository.

 git://github.com/kerolasa/lelux-utiliteetit.git various

Sami Kerola (16):
  whereis: tell when mandatory option is missing
  flock: add --verbose option
  flock: improve timeout handling
  prlimit: tell in --verbose output which pid got the new limit
  tunelp: remove get_val() in favour of strtol_or_err()
  tunelp: remove unnecessary preprocessor directives
  lib/strutils: move parse_switch() from setterm(1) to library
  tunelp: use parse_switch()
  eject: use parse_switch()
  rpmatch: use symbolic value when evaluation return codes
  tailf: check printing criteria more carefully
  tailf: count last lines correctly at initial print out
  tailf: do not allow minus signed last lines argument
  tailf: ensure file argument really is a file
  logger: move /dev/log to pathnames.h
  logger: fix -i argument parsing regression

 disk-utils/fdisk.c      |   2 +-
 disk-utils/fsck.minix.c |   6 +--
 disk-utils/sfdisk.c     |   2 +-
 include/Makemodule.am   |   1 -
 include/pathnames.h     |   3 ++
 include/rpmatch.h       |   4 ++
 include/strutils.h      |   2 +
 include/timer.h         |  31 -----------
 lib/strutils.c          |   8 +++
 login-utils/vipw.c      |   2 +-
 misc-utils/logger.1     |   5 +-
 misc-utils/logger.c     |  16 ++++--
 misc-utils/whereis.c    |   8 ++-
 sys-utils/Makemodule.am |   5 +-
 sys-utils/eject.c       |  14 +----
 sys-utils/flock.1       |   4 ++
 sys-utils/flock.c       |  82 +++++++++++++++++++++++++----
 sys-utils/prlimit.c     |   3 +-
 sys-utils/tunelp.c      |  51 +++++-------------
 term-utils/mesg.c       |   6 +--
 term-utils/setterm.c    |  14 -----
 text-utils/tailf.c      | 135 ++++++++++++++++++++++++++++--------------------
 22 files changed, 224 insertions(+), 180 deletions(-)
 delete mode 100644 include/timer.h

-- 
2.3.0


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

end of thread, other threads:[~2015-03-05 10:17 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-22 14:41 [PATCH 00/16] pull: changes to various utils Sami Kerola
2015-02-22 14:41 ` [PATCH 01/16] whereis: tell when mandatory option is missing Sami Kerola
2015-02-22 17:37   ` Benno Schulenberg
2015-02-24  9:40   ` Karel Zak
2015-03-01 11:08     ` Sami Kerola
2015-03-03 11:32       ` Karel Zak
2015-03-03 12:59         ` Sami Kerola
2015-03-03 23:07           ` Sami Kerola
2015-02-22 14:41 ` [PATCH 02/16] flock: add --verbose option Sami Kerola
2015-02-22 17:44   ` Benno Schulenberg
2015-03-01 11:11     ` Sami Kerola
2015-02-22 14:41 ` [PATCH 03/16] flock: improve timeout handling Sami Kerola
2015-02-24 10:21   ` Karel Zak
2015-03-01 11:46     ` Sami Kerola
2015-03-02  9:13       ` Karel Zak
2015-03-05  9:36   ` Karel Zak
2015-02-22 14:41 ` [PATCH 04/16] prlimit: tell in --verbose output which pid got the new limit Sami Kerola
2015-02-24 10:25   ` Karel Zak
2015-02-22 14:41 ` [PATCH 05/16] tunelp: remove get_val() in favour of strtol_or_err() Sami Kerola
2015-02-24 10:29   ` Karel Zak
2015-02-22 14:41 ` [PATCH 06/16] tunelp: remove unnecessary preprocessor directives Sami Kerola
2015-02-22 14:41 ` [PATCH 07/16] lib/strutils: move parse_switch() from setterm(1) to library Sami Kerola
2015-02-22 17:12   ` Benno Schulenberg
2015-02-24 10:34   ` Karel Zak
2015-02-22 14:41 ` [PATCH 08/16] tunelp: use parse_switch() Sami Kerola
2015-02-24 10:40   ` Karel Zak
2015-02-22 14:41 ` [PATCH 09/16] eject: " Sami Kerola
2015-02-24 11:37   ` Karel Zak
2015-03-01 11:49     ` Sami Kerola
2015-02-22 14:41 ` [PATCH 10/16] rpmatch: use symbolic value when evaluation return codes Sami Kerola
2015-02-24 11:47   ` Karel Zak
2015-02-22 14:41 ` [PATCH 11/16] tailf: check printing criteria more carefully Sami Kerola
2015-02-24 11:53   ` Karel Zak
2015-03-01 11:55     ` Sami Kerola
2015-02-22 14:41 ` [PATCH 12/16] tailf: count last lines correctly at initial print out Sami Kerola
2015-02-24 12:12   ` Karel Zak
2015-03-01 12:09     ` Sami Kerola
2015-02-22 14:41 ` [PATCH 13/16] tailf: do not allow minus signed last lines argument Sami Kerola
2015-02-22 14:41 ` [PATCH 14/16] tailf: ensure file argument really is a file Sami Kerola
2015-02-24 12:18   ` Karel Zak
2015-03-01 12:20     ` Sami Kerola
2015-02-22 14:41 ` [PATCH 15/16] logger: move /dev/log to pathnames.h Sami Kerola
2015-02-24 12:19   ` Karel Zak
2015-02-22 14:41 ` [PATCH 16/16] logger: fix -i argument parsing regression Sami Kerola
2015-02-22 17:21   ` Benno Schulenberg
2015-03-01 11:06     ` Sami Kerola
2015-02-22 17:10 ` [PATCH 11/62] pull: Benno Schulenberg
2015-03-05 10:16 ` [PATCH 00/16] pull: changes to various utils Karel Zak

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