aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <egor@tensin.name>2024-06-23 20:25:30 +0200
committerEgor Tensin <egor@tensin.name>2024-06-23 20:25:30 +0200
commitf2c75fae1611de34e67905d826819a36c8d7941e (patch)
treef86a4f2b9ce1e198dddcfb4d5113fedfad8de23b
parentdocker: bump base images (diff)
downloadcgitize-f2c75fae1611de34e67905d826819a36c8d7941e.tar.gz
cgitize-f2c75fae1611de34e67905d826819a36c8d7941e.zip
switch to egor@tensin.namev5.1.0
-rw-r--r--LICENSE.txt2
-rw-r--r--cgitize/bitbucket.py2
-rw-r--r--cgitize/cgit.py2
-rw-r--r--cgitize/config.py2
-rw-r--r--cgitize/git.py2
-rw-r--r--cgitize/github.py2
-rw-r--r--cgitize/gitlab.py2
-rw-r--r--cgitize/main.py2
-rw-r--r--cgitize/repo.py2
-rw-r--r--cgitize/utils.py2
-rw-r--r--docker/Dockerfile2
-rwxr-xr-xdocker/cgitize.sh2
-rwxr-xr-xdocker/in_cron.sh2
-rw-r--r--pyproject.toml2
-rw-r--r--test/unit/test_bitbucket.py2
-rw-r--r--test/unit/test_github.py2
-rw-r--r--test/unit/test_gitlab.py2
17 files changed, 17 insertions, 17 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index 977fc1d..75a9d1a 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
+Copyright (c) 2018 Egor Tensin <egor@tensin.name>
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/cgitize/bitbucket.py b/cgitize/bitbucket.py
index f2a449f..5c55a2a 100644
--- a/cgitize/bitbucket.py
+++ b/cgitize/bitbucket.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/cgitize/cgit.py b/cgitize/cgit.py
index c525214..8c8a8ca 100644
--- a/cgitize/cgit.py
+++ b/cgitize/cgit.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2018 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/cgitize/config.py b/cgitize/config.py
index 2df8651..23b63c1 100644
--- a/cgitize/config.py
+++ b/cgitize/config.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/cgitize/git.py b/cgitize/git.py
index 769b624..5ee3177 100644
--- a/cgitize/git.py
+++ b/cgitize/git.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/cgitize/github.py b/cgitize/github.py
index 9948a33..02057c9 100644
--- a/cgitize/github.py
+++ b/cgitize/github.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/cgitize/gitlab.py b/cgitize/gitlab.py
index 5728dfe..7fb84e7 100644
--- a/cgitize/gitlab.py
+++ b/cgitize/gitlab.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/cgitize/main.py b/cgitize/main.py
index 7e52df0..c1e7b5b 100644
--- a/cgitize/main.py
+++ b/cgitize/main.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2018 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/cgitize/repo.py b/cgitize/repo.py
index 2c9398e..23a2b31 100644
--- a/cgitize/repo.py
+++ b/cgitize/repo.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2018 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/cgitize/utils.py b/cgitize/utils.py
index 78834c9..3b2cf62 100644
--- a/cgitize/utils.py
+++ b/cgitize/utils.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2018 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 2450142..08ac5a5 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -28,7 +28,7 @@ RUN pip3 install -q --no-cache-dir --target=/deps -r /tmp/requirements.txt
FROM base
-LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>"
+LABEL maintainer="Egor Tensin <egor@tensin.name>"
RUN apk add -q --no-cache bash git openssh-client tini
diff --git a/docker/cgitize.sh b/docker/cgitize.sh
index be33601..64f8461 100755
--- a/docker/cgitize.sh
+++ b/docker/cgitize.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
-# Copyright (c) 2023 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2023 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/docker/in_cron.sh b/docker/in_cron.sh
index d23ab70..693772b 100755
--- a/docker/in_cron.sh
+++ b/docker/in_cron.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/pyproject.toml b/pyproject.toml
index 51ee7f4..0583f95 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,7 +7,7 @@ name = "cgitize"
description = "Self-host your repositories using cgit"
license = {text = "MIT"}
dynamic = ["version"]
-authors = [{name = "Egor Tensin", email = "Egor.Tensin@gmail.com"}]
+authors = [{name = "Egor Tensin", email = "egor@tensin.name"}]
readme = "README.md"
requires-python = ">=3.6"
diff --git a/test/unit/test_bitbucket.py b/test/unit/test_bitbucket.py
index 7611bd4..efb325d 100644
--- a/test/unit/test_bitbucket.py
+++ b/test/unit/test_bitbucket.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/test/unit/test_github.py b/test/unit/test_github.py
index 7546ed6..f1567d5 100644
--- a/test/unit/test_github.py
+++ b/test/unit/test_github.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
diff --git a/test/unit/test_gitlab.py b/test/unit/test_gitlab.py
index d708539..7243dbd 100644
--- a/test/unit/test_gitlab.py
+++ b/test/unit/test_gitlab.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# Copyright (c) 2021 Egor Tensin <egor@tensin.name>
# This file is part of the "cgitize" project.
# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.