change spelling for distro name

This commit is contained in:
Evgenii Alekseev 2021-09-13 02:49:22 +03:00
parent 38dce8c0fe
commit 22272167e6
14 changed files with 15 additions and 15 deletions

View File

@ -13,7 +13,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: run check and tests in archlinux container - name: run check and tests in arch linux container
run: | run: |
docker run \ docker run \
-v ${{ github.workspace }}:/build -w /build \ -v ${{ github.workspace }}:/build -w /build \

View File

@ -1,4 +1,4 @@
# ArcHlinux ReposItory MANager # ArcH Linux ReposItory MANager
[![build status](https://github.com/arcan1s/ahriman/actions/workflows/run-tests.yml/badge.svg)](https://github.com/arcan1s/ahriman/actions/workflows/run-tests.yml) [![build status](https://github.com/arcan1s/ahriman/actions/workflows/run-tests.yml/badge.svg)](https://github.com/arcan1s/ahriman/actions/workflows/run-tests.yml)
[![CodeFactor](https://www.codefactor.io/repository/github/arcan1s/ahriman/badge)](https://www.codefactor.io/repository/github/arcan1s/ahriman) [![CodeFactor](https://www.codefactor.io/repository/github/arcan1s/ahriman/badge)](https://www.codefactor.io/repository/github/arcan1s/ahriman)
@ -26,7 +26,7 @@ $ ahriman --help
usage: ahriman [-h] [-a ARCHITECTURE] [-c CONFIGURATION] [--force] [-l LOCK] [--no-log] [--no-report] [--unsafe] [-v] usage: ahriman [-h] [-a ARCHITECTURE] [-c CONFIGURATION] [--force] [-l LOCK] [--no-log] [--no-report] [--unsafe] [-v]
{add,check,clean,config,create-user,init,key-import,rebuild,remove,remove-unknown,report,search,setup,sign,status,status-update,sync,update,web} ... {add,check,clean,config,create-user,init,key-import,rebuild,remove,remove-unknown,report,search,setup,sign,status,status-update,sync,update,web} ...
ArcHlinux ReposItory MANager ArcH Linux ReposItory MANager
optional arguments: optional arguments:
-h, --help show this help message and exit -h, --help show this help message and exit

View File

@ -3,7 +3,7 @@
pkgname='ahriman' pkgname='ahriman'
pkgver=1.2.6 pkgver=1.2.6
pkgrel=1 pkgrel=1
pkgdesc="ArcHlinux ReposItory MANager" pkgdesc="ArcH Linux ReposItory MANager"
arch=('any') arch=('any')
url="https://github.com/arcan1s/ahriman" url="https://github.com/arcan1s/ahriman"
license=('GPL3') license=('GPL3')

View File

@ -1 +1 @@
u ahriman 643 "ArcHlinux ReposItory MANager" /var/lib/ahriman u ahriman 643 "ArcH Linux ReposItory MANager" /var/lib/ahriman

View File

@ -1,5 +1,5 @@
[Unit] [Unit]
Description=ArcHlinux ReposItory MANager web server (%I architecture) Description=ArcH Linux ReposItory MANager web server (%I architecture)
After=network.target After=network.target
[Service] [Service]

View File

@ -1,5 +1,5 @@
[Unit] [Unit]
Description=ArcHlinux ReposItory MANager (%I architecture) Description=ArcH Linux ReposItory MANager (%I architecture)
[Service] [Service]
ExecStart=/usr/bin/ahriman --architecture %i update ExecStart=/usr/bin/ahriman --architecture %i update

View File

@ -1,5 +1,5 @@
[Unit] [Unit]
Description=ArcHlinux ReposItory MANager timer (%I architecture) Description=ArcH Linux ReposItory MANager timer (%I architecture)
[Timer] [Timer]
OnCalendar=daily OnCalendar=daily

View File

@ -11,7 +11,7 @@
<body> <body>
<div class="container"> <div class="container">
<h1>Archlinux user repository</h1> <h1>Arch Linux user repository</h1>
</div> </div>
<div class="container"> <div class="container">

View File

@ -15,7 +15,7 @@ setup(
version=metadata["__version__"], version=metadata["__version__"],
zip_safe=False, zip_safe=False,
description="ArcHlinux ReposItory MANager", description="ArcH Linux ReposItory MANager",
author="arcanis", author="arcanis",
author_email="", author_email="",

View File

@ -39,7 +39,7 @@ def _parser() -> argparse.ArgumentParser:
command line parser generator command line parser generator
:return: command line parser for the application :return: command line parser for the application
""" """
parser = argparse.ArgumentParser(prog="ahriman", description="ArcHlinux ReposItory MANager", parser = argparse.ArgumentParser(prog="ahriman", description="ArcH Linux ReposItory MANager",
formatter_class=argparse.ArgumentDefaultsHelpFormatter) formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("-a", "--architecture", help="target architectures (can be used multiple times)", parser.add_argument("-a", "--architecture", help="target architectures (can be used multiple times)",
action="append") action="append")

View File

@ -216,7 +216,7 @@ class Package:
generate full version from components generate full version from components
:param epoch: package epoch if any :param epoch: package epoch if any
:param pkgver: package version :param pkgver: package version
:param pkgrel: package release version (archlinux specific) :param pkgrel: package release version (arch linux specific)
:return: generated version :return: generated version
""" """
prefix = f"{epoch}:" if epoch else "" prefix = f"{epoch}:" if epoch else ""

View File

@ -140,7 +140,7 @@ def package_description_ahriman() -> PackageDescription:
archive_size=4200, archive_size=4200,
build_date=42, build_date=42,
depends=["devtools", "git", "pyalpm", "python-aur", "python-srcinfo"], depends=["devtools", "git", "pyalpm", "python-aur", "python-srcinfo"],
description="ArcHlinux ReposItory MANager", description="ArcH Linux ReposItory MANager",
filename="ahriman-0.12.1-1-any.pkg.tar.zst", filename="ahriman-0.12.1-1-any.pkg.tar.zst",
groups=[], groups=[],
installed_size=4200000, installed_size=4200000,

View File

@ -31,7 +31,7 @@ def test_calculate_etag_small(resource_path_root: Path) -> None:
must calculate checksum for path which is single chunk must calculate checksum for path which is single chunk
""" """
path = resource_path_root / "models" / "package_ahriman_srcinfo" path = resource_path_root / "models" / "package_ahriman_srcinfo"
assert S3.calculate_etag(path, _chunk_size) == "04e75b4aa0fe6033e711e8ea98e059b2" assert S3.calculate_etag(path, _chunk_size) == "a55f82198e56061295d405aeb58f4062"
def test_remove_files(s3_remote_objects: List[Any]) -> None: def test_remove_files(s3_remote_objects: List[Any]) -> None:

View File

@ -1,5 +1,5 @@
pkgbase = ahriman pkgbase = ahriman
pkgdesc = ArcHlinux ReposItory MANager pkgdesc = ArcH Linux ReposItory MANager
pkgver = 0.12.1 pkgver = 0.12.1
pkgrel = 1 pkgrel = 1
url = https://github.com/arcan1s/ahriman url = https://github.com/arcan1s/ahriman