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)
* ifdata: patch from its author to make it behave properly on big endian systems. Closes: #358860 eb2a08e762578bb86e0e6135c5808a0d82e91a8c joeyh 2006-03-25 01:51:39
* tss.1, ifdata.1: typo fix. Closes: #358557, #358556 77f42d643d76d6aa7d884fe9c6eadd7fcc57bc64 joeyh 2006-03-23 08:47:52
* Back to Mithandir's C sponge, now fixed. 5942eb1d3bd089b4f01daab04ca0ad8518e8b2ef joeyh 2006-03-23 07:18:36
* ifdata: Patch from KELEMEN Peter to add support for printing hardware interface. Closes: #357646 824b3e16d5f3962f7bdba0ff3159363afad3cc68 joeyh 2006-03-18 19:17:43
er yeah, let's check in the right stuff fa7787ccb87cc8c47f118c65d5bbada602323a68 joeyh 2006-03-16 17:08:29
* Add pee (pipe tee) contributed by Miek Gieben. 93b625d8288ff9ec522460dac489a170ef130d8c joeyh 2006-03-14 23:08:19
releasing version 0.6 84cc0252d7bf1cc8514ef347e150e9c8b930f0bd joeyh 2006-03-13 17:06:37
typo 7b031cc5149b6558cb5964b8db55538792de3ea6 joeyh 2006-03-10 20:26:29
releasing version 0.5 538cb394703d148130ec9a7f60da677996a4857a joeyh 2006-03-08 04:09:50
* Replaced and(1) and not(1) by combine, based on an idea by Matt Taggart. 4671f67156c1c59c2f9f7c3ead1a2e9141375d41 joeyh 2006-03-08 04:04:34
* README updates based on user feedback. 1530f8ec01fe7e688946203ec19624e1609c221c joeyh 2006-03-08 03:25:58
* Indentation improvements. d8c8aa26cb9f1f4bd411056ad3049ed0357ae3e4 joeyh 2006-03-08 03:19:40
rename c996e056d782796fba098b546f16d7ead1ea9d78 joeyh 2006-03-08 03:03:37
* Added ifinfo, by Benjamin BAYART (originally called ifcfg). * Made ifinfo -Wall clean. * Made ifinfo support -h and print usage on unknown options. * Cleaned up ifinfo's behavior when asked to print info for nonexistant devices. Still needs improvement. e50ccc1b36213de52ae78c2703d391ea8941a7b1 joeyh 2006-03-08 02:59:27
releasing version 0.4 6a7f34809e87a940cd30c7e9de160db4ee9e65ca joeyh 2006-03-06 03:33:23
releasing version 0.3 31bab120cc259d70b3706dbd7210159b4667171d joeyh 2006-03-03 23:20:51
better abde923d30e354d96cb6673597fa538cf80476dd joeyh 2006-03-03 22:38:51
* Switch sponge to a C implementation by mithandir. * Build dep on docbook-xml. d8e27a6d4d287995a554f27605e912be38d0a75b joeyh 2006-03-03 22:26:20
releasing version 0.1 ee3eecafa0cc1a4efa0503117144205bedbdf6a1 joeyh 2006-02-19 20:33:18
update 98c3874b1b7c27921f0282e98a9b25e95c9fc13d joeyh 2006-02-19 19:39:42
Commit eb2a08e762578bb86e0e6135c5808a0d82e91a8c - * ifdata: patch from its author to make it behave properly on big endian systems. Closes: #358860
Author: joeyh
Author date (UTC): 2006-03-25 01:51
Committer name: joeyh
Committer date (UTC): 2006-03-25 01:51
Parent(s): 77f42d643d76d6aa7d884fe9c6eadd7fcc57bc64
Signer:
Signing key:
Signing status: N
Tree: 093c639648a40afb8f84b80ca04da57bc0760fdd
File Lines added Lines deleted
debian/changelog 2 0
ifdata.c 8 0
pee.1 3 2
File debian/changelog changed (mode: 100644) (index b00e67d..bb4580e)
... ... moreutils (0.8) UNRELEASED; urgency=low
2 2
3 3 * Back to Mithandir's C sponge, now fixed. * Back to Mithandir's C sponge, now fixed.
4 4 * tss.1, ifdata.1: typo fix. Closes: #358557, #358556 * tss.1, ifdata.1: typo fix. Closes: #358557, #358556
5 * ifdata: patch from its author to make it behave properly on big endian
6 systems. Closes: #358860
5 7
6 8 -- Joey Hess <joeyh@debian.org> Thu, 23 Mar 2006 03:45:30 -0500 -- Joey Hess <joeyh@debian.org> Thu, 23 Mar 2006 03:45:30 -0500
7 9
File ifdata.c changed (mode: 100644) (index 1f1eb2a..92b68a6)
... ... struct if_stat {
64 64
65 65
66 66 void print_quad_ipv4(unsigned int i) { void print_quad_ipv4(unsigned int i) {
67 #if __BYTE_ORDER == __LITTLE_ENDIAN
67 68 printf("%d.%d.%d.%d", printf("%d.%d.%d.%d",
68 69 i&0xff, i&0xff,
69 70 (i&0xff00)>>8, (i&0xff00)>>8,
70 71 (i&0xff0000)>>16, (i&0xff0000)>>16,
71 72 (i&0xff000000)>>24); (i&0xff000000)>>24);
73 #else
74 printf("%d.%d.%d.%d",
75 (i&0xff000000)>>24,
76 (i&0xff0000)>>16,
77 (i&0xff00)>>8,
78 i&0xff);
79 #endif
72 80 } }
73 81
74 82 void print_quad_ipv6(uint16_t *a) { void print_quad_ipv6(uint16_t *a) {
File pee.1 changed (mode: 100644) (index 019488f..b0faebf)
... ... pee \- tee standard input to pipes
5 5 \fBpee\fR [\fB"command"\fR\&...] \fBpee\fR [\fB"command"\fR\&...]
6 6 .SH DESCRIPTION .SH DESCRIPTION
7 7 pee is like tee pee is like tee
8 but for pipes. Each command is run and standard input is
9 copied into it, as well as being sent to stdout.
8 but for pipes. Each command is run and fed a copy of the
9 stadard input. The output of all commands is sent to
10 stdout.
10 11 .SH "SEE ALSO" .SH "SEE ALSO"
11 12 \fBtee\fR(1) \fBtee\fR(1)
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