nicolas / debian.moreutils (public) (License: GPL-2, GPL-2+, Expat, BSD-2-Clause, Public Domain) (since 2018-09-25) (hash sha1)
Debian packaging of joeyh's moreutils
List of commits:
Subject Hash Author Date (UTC)
style cleanup 411d6d3c6a8912c83cfc8a77747d4e68ed66cb4f Joey Hess 2016-04-02 19:22:55
stderr trigger and verbose mode 5394ef715c4550a627bb2b212de55008f58302b1 Tomas Mudrunka 2016-03-31 15:01:35
changelog 166ba94a0ead7e6cda383fe77ddfe2f682521e7d Joey Hess 2016-03-23 15:48:58
parallel: include signal.h to fix warning when building with clang 181124dc64d3bb3eb5f6bbf8529a147d5e7db45b Kevin Bullock 2016-03-22 16:10:30
allow specifying alternate path to docbook-xsl stylesheets 6d8329a424db3f8f3251a58fe581c94f33aa0fd6 Kevin Bullock 2016-03-22 16:10:29
releasing package moreutils version 0.58 415a2fecc251895b12351b5d21288ecb41516ca6 Joey Hess 2016-02-23 21:12:58
ts: disable utf8 warnings 43996b2796d942bcd9b4bc9c8a06f18a735decda Nicolas Schier 2016-02-05 21:01:10
changelog 2909df57e0f714806752fd9b3dedf20fd20f4518 Joey Hess 2016-01-07 22:28:32
ifdata.c: Fix compilation on OpenBSD 2929eeaf06c42e1f3a3fc07831d585e637432ad3 Michael Reed 2016-01-06 20:24:30
releasing package moreutils version 0.57 b92196912d363683f24e71b0b2351324d50f5375 Joey Hess 2015-07-13 22:29:11
Avoid using non-portable error() in ifdata, a portability reversion introduced in 0.56. 081bc9d2ffcd4356ab4ad2ae7ca9499452d1bbee Joey Hess 2015-07-13 20:33:32
releasing package moreutils version 0.56 7be6572532be02c03653f33dbf87c03b01e2bb26 Joey Hess 2015-06-03 16:04:42
changelog 503f59be52c424a41b548a1460fb0e03beb5692c Joey Hess 2015-06-03 16:01:52
vidir: Create missing target directories (Closes: #728688) 22203bef0b52f44cae45958ac57cb93d7edb9a13 Nicolas Schier 2015-04-08 06:05:35
errno.docbook: Fix typo. Closes: #749399 754c0a6cbae5cfd3f647f8a7a3b9300587b9f34e Joey Hess 2015-03-30 15:42:44
ifdata: Fix error messages when a non-existent network interface is queried. Closes: #386754 Thanks, Nicolas Schier d2d1bcf8f7179f7d2b286e06f5516d7d9d47054b Joey Hess 2015-03-30 15:42:14
ifdata: consistent error message on non-exist netdev (Closes: #386754) e45c4ef5ef6bcee5d32c9d00936fa1a3c216c294 Nicolas Schier 2015-03-30 05:27:46
errno.docbook: fix typo (Closes: #749399) 87ddb61899c51c0e2c00336adaeae9acd1501e19 Nicolas Schier 2015-03-30 05:27:46
remove announcedir target e5da6688db97734dc694befd28d3f0b33cd40034 Joey Hess 2015-03-14 19:57:57
update copyright bdb114b8de6fccfb903016fb57aa0c7375bd8afd Joey Hess 2015-01-19 18:03:51
Commit 411d6d3c6a8912c83cfc8a77747d4e68ed66cb4f - style cleanup
Author: Joey Hess
Author date (UTC): 2016-04-02 19:22
Committer name: Joey Hess
Committer date (UTC): 2016-04-02 19:22
Parent(s): 5394ef715c4550a627bb2b212de55008f58302b1
Signer:
Signing key: C910D9222512E3C7
Signing status: E
Tree: ce6147a233029a3045d54051f0a83c98bbe952ed
File Lines added Lines deleted
chronic 6 7
debian/changelog 4 0
File chronic changed (mode: 100755) (index e7817e7..7cfc2d6)
... ... use warnings;
53 53 use strict; use strict;
54 54 use IPC::Run qw( start pump finish timeout ); use IPC::Run qw( start pump finish timeout );
55 55 use Getopt::Std; use Getopt::Std;
56 use feature qw(say);
57 56
58 our($opt_e, $opt_v);
59 $opt_e = $opt_v = 0;
60 getopts('ev');
57 our $opt_e = 0;
58 our $opt_v = 0;
59 getopts('ev'); # only looks at options before the COMMAND
61 60
62 61 if (! @ARGV) { if (! @ARGV) {
63 62 die "usage: chronic COMMAND...\n"; die "usage: chronic COMMAND...\n";
 
... ... else {
85 84 } }
86 85
87 86 sub showout { sub showout {
88 $opt_v && print "STDOUT:\n";
87 print "STDOUT:\n" if $opt_v;
89 88 print STDOUT $out; print STDOUT $out;
90 $opt_v && print "\nSTDERR:\n";
89 print "\nSTDERR:\n" if $opt_v;
91 90 print STDERR $err; print STDERR $err;
92 $opt_v && print "\nRETVAL: ".($ret >> 8)."\n";
91 print "\nRETVAL: ".($ret >> 8)."\n" if $opt_v;
93 92 } }
File debian/changelog changed (mode: 100644) (index 0a9f461..946b47f)
... ... moreutils (0.59) UNRELEASED; urgency=medium
4 4 Thanks, Kevin Bullock Thanks, Kevin Bullock
5 5 * parallel: include signal.h to fix warning when building with clang * parallel: include signal.h to fix warning when building with clang
6 6 Thanks, Kevin Bullock Thanks, Kevin Bullock
7 * chronic: Added -v option for more verbose output.
8 Thanks, Tomas Mudrunka
9 * chronic: Added -e option to display any stderr.
10 Thanks, Tomas Mudrunka
7 11
8 12 -- Joey Hess <id@joeyh.name> Wed, 23 Mar 2016 11:48:12 -0400 -- Joey Hess <id@joeyh.name> Wed, 23 Mar 2016 11:48:12 -0400
9 13
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/nicolas/debian.moreutils

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/nicolas/debian.moreutils

Clone this repository using git:
git clone git://git.rocketgit.com/user/nicolas/debian.moreutils

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main