Add license

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
master
David Oberhollenzer 4 years ago
parent 4a682b83f1
commit 20aea96396

@ -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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -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)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save