From 82c5f204346def706fdc7ee28a8e2570fb880369 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 12 Dec 2023 21:29:42 +0100 Subject: switch to egor@tensin.name --- Dockerfile | 2 +- LICENSE.txt | 2 +- scripts/flamegraph.sh | 2 +- src/base64.c | 2 +- src/base64.h | 2 +- src/buf.c | 2 +- src/buf.h | 2 +- src/ci.c | 2 +- src/ci.h | 2 +- src/client.c | 2 +- src/client.h | 2 +- src/client_main.c | 2 +- src/cmd_line.c | 2 +- src/cmd_line.h | 2 +- src/command.c | 2 +- src/command.h | 2 +- src/compiler.h | 2 +- src/const.c.template | 2 +- src/const.h | 2 +- src/event_loop.c | 2 +- src/event_loop.h | 2 +- src/file.c | 2 +- src/file.h | 2 +- src/generate-sql-header.py | 2 +- src/git.c | 2 +- src/git.h | 2 +- src/json.c | 2 +- src/json.h | 2 +- src/json_rpc.c | 2 +- src/json_rpc.h | 2 +- src/log.c | 2 +- src/log.h | 2 +- src/net.c | 2 +- src/net.h | 2 +- src/process.c | 2 +- src/process.h | 2 +- src/protocol.c | 2 +- src/protocol.h | 2 +- src/run_queue.c | 2 +- src/run_queue.h | 2 +- src/server.c | 2 +- src/server.h | 2 +- src/server_main.c | 2 +- src/signal.c | 2 +- src/signal.h | 2 +- src/sqlite.c | 2 +- src/sqlite.h | 2 +- src/storage.c | 2 +- src/storage.h | 2 +- src/storage_sqlite.c | 2 +- src/storage_sqlite.h | 2 +- src/string.c | 2 +- src/string.h | 2 +- src/tcp_server.c | 2 +- src/tcp_server.h | 2 +- src/worker.c | 2 +- src/worker.h | 2 +- src/worker_main.c | 2 +- src/worker_queue.c | 2 +- src/worker_queue.h | 2 +- test/py/conftest.py | 2 +- test/py/lib/db.py | 2 +- test/py/lib/logging.py | 2 +- test/py/lib/net.py | 2 +- test/py/lib/process.py | 2 +- test/py/lib/test_repo.py | 2 +- test/py/lib/tests.py | 2 +- test/py/test_basic.py | 2 +- test/py/test_repo.py | 2 +- 69 files changed, 69 insertions(+), 69 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6f7de1d..c402929 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN cd -- "$src_dir" && \ FROM base -LABEL maintainer="Egor Tensin " +LABEL maintainer="Egor Tensin " RUN runtime_deps='json-c libgit2 libsodium sqlite tini' && \ apk add -q --no-cache $runtime_deps diff --git a/LICENSE.txt b/LICENSE.txt index 2c1b695..70be320 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Egor Tensin +Copyright (c) 2022 Egor Tensin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/scripts/flamegraph.sh b/scripts/flamegraph.sh index 032b86e..3a6c9e2 100755 --- a/scripts/flamegraph.sh +++ b/scripts/flamegraph.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/src/base64.c b/src/base64.c index f7fa3c4..82b1c24 100644 --- a/src/base64.c +++ b/src/base64.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/base64.h b/src/base64.h index f86fa56..0850633 100644 --- a/src/base64.h +++ b/src/base64.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/buf.c b/src/buf.c index 90e33ad..eb91fdb 100644 --- a/src/buf.c +++ b/src/buf.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/buf.h b/src/buf.h index 033a54c..6860a77 100644 --- a/src/buf.h +++ b/src/buf.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/ci.c b/src/ci.c index 70a8a7b..0e40548 100644 --- a/src/ci.c +++ b/src/ci.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/ci.h b/src/ci.h index d04b682..397f4a7 100644 --- a/src/ci.h +++ b/src/ci.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/client.c b/src/client.c index cb10167..323ff40 100644 --- a/src/client.c +++ b/src/client.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/client.h b/src/client.h index ff91170..0d97a29 100644 --- a/src/client.h +++ b/src/client.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/client_main.c b/src/client_main.c index 3baa932..35c03ce 100644 --- a/src/client_main.c +++ b/src/client_main.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/cmd_line.c b/src/cmd_line.c index cd1a50a..35b27a7 100644 --- a/src/cmd_line.c +++ b/src/cmd_line.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/cmd_line.h b/src/cmd_line.h index 2037c73..e1a7e96 100644 --- a/src/cmd_line.h +++ b/src/cmd_line.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/command.c b/src/command.c index 9946c13..d480709 100644 --- a/src/command.c +++ b/src/command.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/command.h b/src/command.h index 0edba98..be8b97a 100644 --- a/src/command.h +++ b/src/command.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/compiler.h b/src/compiler.h index 97c583c..0a5dc88 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/const.c.template b/src/const.c.template index 5afd8ad..a7f6d63 100644 --- a/src/const.c.template +++ b/src/const.c.template @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/const.h b/src/const.h index d3925c6..d7555dd 100644 --- a/src/const.h +++ b/src/const.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/event_loop.c b/src/event_loop.c index 75a323c..e463aca 100644 --- a/src/event_loop.c +++ b/src/event_loop.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/event_loop.h b/src/event_loop.h index c08e84d..992eb5c 100644 --- a/src/event_loop.h +++ b/src/event_loop.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/file.c b/src/file.c index 6bb2683..a0a8f8a 100644 --- a/src/file.c +++ b/src/file.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/file.h b/src/file.h index a6d9dc1..54bb5fb 100644 --- a/src/file.h +++ b/src/file.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/generate-sql-header.py b/src/generate-sql-header.py index 52699c6..eb5e9fe 100755 --- a/src/generate-sql-header.py +++ b/src/generate-sql-header.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/src/git.c b/src/git.c index 4acf0e9..c115ce2 100644 --- a/src/git.c +++ b/src/git.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/git.h b/src/git.h index 422d353..462b782 100644 --- a/src/git.h +++ b/src/git.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/json.c b/src/json.c index ec555b9..2e0a6bb 100644 --- a/src/json.c +++ b/src/json.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/json.h b/src/json.h index 92cd688..cd0ee8c 100644 --- a/src/json.h +++ b/src/json.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/json_rpc.c b/src/json_rpc.c index dbeff91..6877fd3 100644 --- a/src/json_rpc.c +++ b/src/json_rpc.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/json_rpc.h b/src/json_rpc.h index 077b0f5..e47d081 100644 --- a/src/json_rpc.h +++ b/src/json_rpc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/log.c b/src/log.c index 3acb3cf..4212c84 100644 --- a/src/log.c +++ b/src/log.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/log.h b/src/log.h index 1fabe14..1aaff57 100644 --- a/src/log.h +++ b/src/log.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/net.c b/src/net.c index 20460d9..0da90b2 100644 --- a/src/net.c +++ b/src/net.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/net.h b/src/net.h index ea8aa30..8ed0958 100644 --- a/src/net.h +++ b/src/net.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/process.c b/src/process.c index 1e2583b..580daaf 100644 --- a/src/process.c +++ b/src/process.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/process.h b/src/process.h index f0aca1d..810010d 100644 --- a/src/process.h +++ b/src/process.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/protocol.c b/src/protocol.c index 880c449..106c991 100644 --- a/src/protocol.c +++ b/src/protocol.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/protocol.h b/src/protocol.h index 53b4acb..2277998 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/run_queue.c b/src/run_queue.c index 6414e6e..a1e286b 100644 --- a/src/run_queue.c +++ b/src/run_queue.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/run_queue.h b/src/run_queue.h index 3c3d8e4..e1d9333 100644 --- a/src/run_queue.h +++ b/src/run_queue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/server.c b/src/server.c index 7ffba68..89ffcb1 100644 --- a/src/server.c +++ b/src/server.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/server.h b/src/server.h index 92ca37d..e26fe7c 100644 --- a/src/server.h +++ b/src/server.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/server_main.c b/src/server_main.c index e682f6e..d000972 100644 --- a/src/server_main.c +++ b/src/server_main.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/signal.c b/src/signal.c index a4630ac..3168a58 100644 --- a/src/signal.c +++ b/src/signal.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/signal.h b/src/signal.h index e48eff2..468b5f5 100644 --- a/src/signal.h +++ b/src/signal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/sqlite.c b/src/sqlite.c index f064280..4c2eded 100644 --- a/src/sqlite.c +++ b/src/sqlite.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/sqlite.h b/src/sqlite.h index 556684f..6c9157b 100644 --- a/src/sqlite.h +++ b/src/sqlite.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/storage.c b/src/storage.c index 1916b01..43e871f 100644 --- a/src/storage.c +++ b/src/storage.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/storage.h b/src/storage.h index 83e12f5..c50444d 100644 --- a/src/storage.h +++ b/src/storage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/storage_sqlite.c b/src/storage_sqlite.c index 143f302..6c8a26f 100644 --- a/src/storage_sqlite.c +++ b/src/storage_sqlite.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/storage_sqlite.h b/src/storage_sqlite.h index 1a9deea..2d82496 100644 --- a/src/storage_sqlite.h +++ b/src/storage_sqlite.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/string.c b/src/string.c index 31ad612..f2010c6 100644 --- a/src/string.c +++ b/src/string.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/string.h b/src/string.h index 55df9e1..7c16318 100644 --- a/src/string.h +++ b/src/string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/tcp_server.c b/src/tcp_server.c index 368e8fe..5e1a5ea 100644 --- a/src/tcp_server.c +++ b/src/tcp_server.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/tcp_server.h b/src/tcp_server.h index 979e6dc..d159160 100644 --- a/src/tcp_server.h +++ b/src/tcp_server.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/worker.c b/src/worker.c index ce024b8..5c0ab96 100644 --- a/src/worker.c +++ b/src/worker.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/worker.h b/src/worker.h index 67402a9..95491a8 100644 --- a/src/worker.h +++ b/src/worker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/worker_main.c b/src/worker_main.c index 2c06aa8..df60f73 100644 --- a/src/worker_main.c +++ b/src/worker_main.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Egor Tensin + * Copyright (c) 2022 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/worker_queue.c b/src/worker_queue.c index 867ad90..1db396e 100644 --- a/src/worker_queue.c +++ b/src/worker_queue.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/src/worker_queue.h b/src/worker_queue.h index 382d777..88e52c4 100644 --- a/src/worker_queue.h +++ b/src/worker_queue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023 Egor Tensin + * Copyright (c) 2023 Egor Tensin * This file is part of the "cimple" project. * For details, see https://github.com/egor-tensin/cimple. * Distributed under the MIT License. diff --git a/test/py/conftest.py b/test/py/conftest.py index 01e329e..6c34f4d 100644 --- a/test/py/conftest.py +++ b/test/py/conftest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/test/py/lib/db.py b/test/py/lib/db.py index 133a627..de6960a 100644 --- a/test/py/lib/db.py +++ b/test/py/lib/db.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/test/py/lib/logging.py b/test/py/lib/logging.py index 554ce1f..663eb3a 100644 --- a/test/py/lib/logging.py +++ b/test/py/lib/logging.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/test/py/lib/net.py b/test/py/lib/net.py index 326bd24..06bfda0 100644 --- a/test/py/lib/net.py +++ b/test/py/lib/net.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/test/py/lib/process.py b/test/py/lib/process.py index 40fb9bc..3b1b6b9 100644 --- a/test/py/lib/process.py +++ b/test/py/lib/process.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/test/py/lib/test_repo.py b/test/py/lib/test_repo.py index fc3e074..1d07a4e 100644 --- a/test/py/lib/test_repo.py +++ b/test/py/lib/test_repo.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/test/py/lib/tests.py b/test/py/lib/tests.py index fe90f96..7ccedef 100644 --- a/test/py/lib/tests.py +++ b/test/py/lib/tests.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/test/py/test_basic.py b/test/py/test_basic.py index eda12d0..26732fe 100644 --- a/test/py/test_basic.py +++ b/test/py/test_basic.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. diff --git a/test/py/test_repo.py b/test/py/test_repo.py index e5845fe..1850aeb 100644 --- a/test/py/test_repo.py +++ b/test/py/test_repo.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 Egor Tensin +# Copyright (c) 2023 Egor Tensin # This file is part of the "cimple" project. # For details, see https://github.com/egor-tensin/cimple. # Distributed under the MIT License. -- cgit v1.2.3