Skip to content

Commit e744994

Browse files
committed
Fixed badge; added copyright and SPDX-License-Identifier info
Signed-off-by: Andreas Florath <andreas@florath.net>
1 parent 3523acb commit e744994

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ pipexec
33

44
Build a network of processes and connecting pipes - and have them act like a single process.
55

6-
[![Build Status](https://secure.travis-ci.org/flonatel/pipexec.png)](http://travis-ci.org/flonatel/pipexec)
6+
[![Build Status](https://github.com/flonatel/pipexec/actions/workflows/compile-check.yml/badge.svg)
7+
[![Code Check](https://github.com/flonatel/pipexec/actions/workflows/compile-check.yml/badge.svg)
78
[![Release](https://img.shields.io/github/release/flonatel/pipexec.svg)](https://github.com/flonatel/pipexec/releases/latest)
89
[![License](https://img.shields.io/github/license/flonatel/pipexec.svg)](#license)
910
[![Issues](https://img.shields.io/github/issues/flonatel/pipexec.svg)](https://github.com/flonatel/pipexec/issues)
@@ -150,3 +151,9 @@ install pipexec with the distribution's package manager:
150151

151152
There will be three binaries in the bin directory: pipexec, ptee and
152153
peet. You can copy / install them as you need.
154+
155+
# Copyright #
156+
157+
copyright 2015,2022 by Andreas Florath
158+
159+
License: see LICENSE file

src/peet.c

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
*
44
* eet (a reverse tee) for pipes / fds.
55
* The program reads from different file descriptors and writes to one.
6+
*
7+
* Copyright 2015,2022 by Andreas Florath
8+
* SPDX-License-Identifier: GPL-2.0-or-later
69
*/
710

811
#define _POSIX_C_SOURCE 200809L

src/pipe_info.c

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2015,2022 by Andreas Florath
2+
// SPDX-License-Identifier: GPL-2.0-or-later
3+
14
#include "src/pipe_info.h"
25
#include "src/logging.h"
36

src/pipexec.c

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
*
44
* Build up a directed graph of processes and pipes.
55
*
6+
* Copyright 2015,2022 by Andreas Florath
7+
* SPDX-License-Identifier: GPL-2.0-or-later
68
*/
79
#define _POSIX_C_SOURCE 200809L
810
#define _DEFAULT_SOURCE

src/ptee.c

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* This is like the 'normal' tee - except that it does not output to
66
* different files but to differend fds.
77
*
8+
* Copyright 2015,2022 by Andreas Florath
9+
* SPDX-License-Identifier: GPL-2.0-or-later
810
*/
911

1012
#define _POSIX_C_SOURCE 200809L

0 commit comments

Comments
 (0)