Add license

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
David Oberhollenzer 2019-03-08 18:18:31 +01:00
parent 4a682b83f1
commit 20aea96396
50 changed files with 62 additions and 0 deletions

13
LICENSE Normal file
View File

@ -0,0 +1,13 @@
Copyright (c) 2019 David Oberhollenzer <goliath@infraroot.at>
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef COMMAND_H
#define COMMAND_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef COMPRESSOR_H
#define COMPRESSOR_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef IMAGE_ENTRY_H
#define IMAGE_ENTRY_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef PKG_FORMAT_H
#define PKG_FORMAT_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef PKGIO_H
#define PKGIO_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef PKGREADER_H
#define PKGREADER_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef PKGWRITER_H
#define PKGWRITER_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef HASH_TABLE_H
#define HASH_TABLE_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef INPUT_FILE_H
#define INPUT_FILE_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef UTIL_H
#define UTIL_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <sys/sysmacros.h>
#include <sys/types.h>
#include <sys/stat.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <sys/stat.h>
#include <string.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <string.h>
#include "util/util.h"

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdint.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <string.h>
#include <stdio.h>
#include <ctype.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <unistd.h>
#include <errno.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <unistd.h>
#include <errno.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "buildstrategy.h"
typedef int (*line_handler_t)(const char *filename, size_t linenum,

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef BUILDSTRATEGY_H
#define BUILDSTRATEGY_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "dump.h"
static const struct option long_opts[] = {

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef DUMP_H
#define DUMP_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "dump.h"
static const char *dependency_type[] = {

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <string.h>
#include <stdlib.h>
#include <ctype.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "install.h"
int collect_dependencies(int repofd, struct pkg_dep_list *list)

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "install.h"
static const struct option long_opts[] = {

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef INSTALL_H
#define INSTALL_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "install.h"
struct pkg_dep_node *append_pkg(struct pkg_dep_list *list, const char *name)

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "install.h"
static void remove_dependency(struct pkg_dep_list *list,

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "pack.h"
static int handle_requires(char *line, const char *filename,

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "pack.h"
static char *skipspace(char *str)

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "pack.h"
static const struct option long_opts[] = {

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#ifndef PACK_H
#define PACK_H

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "pack.h"
static int write_file(pkg_writer_t *wr, image_entry_t *ent)

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "pack.h"
int write_header_data(pkg_writer_t *wr, pkg_desc_t *desc)

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include "pack.h"
static int write_entry(pkg_writer_t *wr, image_entry_t *it)

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <getopt.h>
#include <stdlib.h>
#include <unistd.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <string.h>
#include "compressor.h"

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdlib.h>
#include <stdio.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <sys/types.h>
#include <sys/stat.h>
#include <stdbool.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdbool.h>
#include <stdlib.h>
#include <unistd.h>

View File

@ -1,3 +1,4 @@
/* SPDX-License-Identifier: ISC */
#include <stdlib.h>
#include <unistd.h>
#include <string.h>