Compare commits

...

2 Commits

Author SHA1 Message Date
39baf93560 add package-splitt script 2024-10-14 00:18:07 +03:00
20a9134477 Revert "use hatchling instead of flit"
This reverts commit d18d146d79.
2024-10-13 23:04:00 +03:00
6 changed files with 110 additions and 43 deletions

View File

@ -43,7 +43,7 @@ RUN pacman -S --noconfirm --asdeps \
pacman -S --noconfirm --asdeps \ pacman -S --noconfirm --asdeps \
base-devel \ base-devel \
python-build \ python-build \
python-hatchling \ python-flit \
python-installer \ python-installer \
python-wheel \ python-wheel \
&& \ && \

View File

@ -8,7 +8,7 @@ arch=('any')
url="https://github.com/arcan1s/ahriman" url="https://github.com/arcan1s/ahriman"
license=('GPL3') license=('GPL3')
depends=('devtools>=1:1.0.0' 'git' 'pyalpm' 'python-bcrypt' 'python-inflection' 'python-pyelftools' 'python-requests') depends=('devtools>=1:1.0.0' 'git' 'pyalpm' 'python-bcrypt' 'python-inflection' 'python-pyelftools' 'python-requests')
makedepends=('python-build' 'python-hatchling' 'python-installer' 'python-wheel') makedepends=('python-build' 'python-flit' 'python-installer' 'python-wheel')
optdepends=('python-aioauth-client: web server with OAuth2 authorization' optdepends=('python-aioauth-client: web server with OAuth2 authorization'
'python-aiohttp: web server' 'python-aiohttp: web server'
'python-aiohttp-apispec>=3.0.0: web server' 'python-aiohttp-apispec>=3.0.0: web server'
@ -42,11 +42,6 @@ package() {
python -m installer --destdir="$pkgdir" "dist/$pkgname-$pkgver-py3-none-any.whl" python -m installer --destdir="$pkgdir" "dist/$pkgname-$pkgver-py3-none-any.whl"
# hatchling doesn't support installation outside of the python root, so we need to install data files manually
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
cp -a "$pkgdir$site_packages/$pkgname/data/"* "$pkgdir/usr/"
rm -r "$pkgdir$site_packages/$pkgname/data"
# keep usr/share configs as reference and copy them to /etc # keep usr/share configs as reference and copy them to /etc
install -Dm644 "$pkgdir/usr/share/$pkgname/settings/ahriman.ini" "$pkgdir/etc/ahriman.ini" install -Dm644 "$pkgdir/usr/share/$pkgname/settings/ahriman.ini" "$pkgdir/etc/ahriman.ini"
install -Dm644 "$pkgdir/usr/share/$pkgname/settings/ahriman.ini.d/logging.ini" "$pkgdir/etc/ahriman.ini.d/logging.ini" install -Dm644 "$pkgdir/usr/share/$pkgname/settings/ahriman.ini.d/logging.ini" "$pkgdir/etc/ahriman.ini.d/logging.ini"

View File

@ -1,6 +1,6 @@
[build-system] [build-system]
requires = ["hatchling"] requires = ["flit_core"]
build-backend = "hatchling.build" build-backend = "flit_core.buildapi"
[project] [project]
name = "ahriman" name = "ahriman"
@ -89,26 +89,18 @@ web = [
"setuptools", # required by aiohttp-apispec "setuptools", # required by aiohttp-apispec
] ]
[tool.hatch.version] [tool.flit.sdist]
path = "src/ahriman/__init__.py"
[tool.hatch.build.targets.sdist]
include = [ include = [
"AUTHORS", "AUTHORS",
"CONTRIBUTING.md", "CONTRIBUTING.md",
"SECURITY.md", "SECURITY.md",
"package", "package",
"src", "subpackages.py",
"web.png", "web.png",
] ]
exclude = [ exclude = [
"package/archlinux", "package/archlinux",
] ]
[tool.hatch.build.targets.wheel] [tool.flit.external-data]
packages = [ directory = "package"
"src/ahriman",
]
[tool.hatch.build.targets.wheel.force-include]
"package" = "ahriman/data"

View File

@ -105,11 +105,11 @@ def run() -> int:
Returns: Returns:
int: application status code int: application status code
""" """
args_parser = _parser() parser = _parser()
args = args_parser.parse_args() args = parser.parse_args()
if args.command is None: # in case of empty command we would like to print help message if args.command is None: # in case of empty command we would like to print help message
args_parser.exit(status=2, message=args_parser.format_help()) parser.exit(status=2, message=parser.format_help())
handler: Handler = args.handler handler: Handler = args.handler
return handler.execute(args) return handler.execute(args)

View File

@ -478,7 +478,6 @@ def utcnow() -> datetime.datetime:
def walk(directory_path: Path) -> Generator[Path, None, None]: def walk(directory_path: Path) -> Generator[Path, None, None]:
""" """
list all file paths in given directory list all file paths in given directory
Credits to https://stackoverflow.com/a/64915960
Args: Args:
directory_path(Path): root directory path directory_path(Path): root directory path
@ -487,18 +486,13 @@ def walk(directory_path: Path) -> Generator[Path, None, None]:
Path: all found files in given directory with full path Path: all found files in given directory with full path
Examples: Examples:
Since the :mod:`pathlib` module does not provide an alternative to :func:`os.walk()`, this wrapper Wrapper around :func:`pathlib.Path.walk`, which emits all files in the directory::
can be used instead::
>>> from pathlib import Path >>> from pathlib import Path
>>> >>>
>>> for file_path in walk(Path.cwd()): >>> for file_path in walk(Path.cwd()):
>>> print(file_path) >>> print(file_path)
Note, however, that unlike the original method, it does not yield directories.
""" """
for element in directory_path.iterdir(): for root, _, files in directory_path.walk():
if element.is_dir(): for file in files:
yield from walk(element) yield root / file
continue
yield element

86
subpackages.py Normal file
View File

@ -0,0 +1,86 @@
#
# Copyright (c) 2021-2024 ahriman team.
#
# This file is part of ahriman
# (see https://github.com/arcan1s/ahriman).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import argparse
import shutil
import site
from pathlib import Path
site_packages = Path(site.getsitepackages()[0]).relative_to("/")
SUBPACKAGES = {
"ahriman": [
site_packages / "ahriman",
],
"ahriman-web": [
site_packages / "ahriman" / "application" / "handlers" / "web.py",
site_packages / "ahriman" / "web",
],
}
def process(root: Path, include: list[Path], exclude: list[Path]) -> None:
"""
remove files based on patterns
Args:
root(Path): root directory
include(list[Path]): list of files to include to the subpackage
exclude(list[Path]): list of files to exclude from the subpackage
"""
for subdirectory, _, files in root.walk(top_down=False):
for file in files:
full_path = subdirectory / file
relative_path = full_path.relative_to(root)
if not any(relative_path.is_relative_to(path) for path in include):
full_path.unlink()
elif any(relative_path.is_relative_to(path) for path in exclude):
full_path.unlink()
content = list(subdirectory.iterdir())
if not content:
shutil.rmtree(subdirectory)
def run() -> None:
"""
run application
"""
parser = argparse.ArgumentParser(description="Split package into subpackages")
parser.add_argument("root", help="package root", type=Path)
parser.add_argument("subpackage", help="subpackage name", choices=SUBPACKAGES.keys())
args = parser.parse_args()
include = SUBPACKAGES[args.subpackage]
exclude = [
path
for subpackage, portion in SUBPACKAGES.items()
if subpackage != args.subpackage
for path in portion
if not any(include_path.is_relative_to(path) for include_path in include)
]
process(args.root, include, exclude)
if __name__ == "__main__":
run()