diff --git a/README.md b/README.md index 616de49..6e14bd4 100644 --- a/README.md +++ b/README.md @@ -1 +1,10 @@ -# altlinux-specs \ No newline at end of file +# altlinux-specs + +``` +docker run --rm -it --privileged -v $(pwd):/usr/src/project ghcr.io/shizand/altlinux-builder +cd /usr/src/project/... +rpmgs *.spec +rpmbs -b p10 *.spec +hsh /home/user/RPM/SRPMS/* --no-sisyphus-check=packager,gpg,changelog +cp ~/hasher/repo/x86_64/RPMS.hasher/* . +``` \ No newline at end of file diff --git a/statapp/statapp b/statapp/statapp new file mode 100644 index 0000000..15b7502 --- /dev/null +++ b/statapp/statapp @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +/usr/bin/python3 -m statapp \ No newline at end of file diff --git a/statapp/statapp-0.5.0-alt2.noarch.rpm b/statapp/statapp-0.5.0-alt2.noarch.rpm new file mode 100644 index 0000000..0cb1840 Binary files /dev/null and b/statapp/statapp-0.5.0-alt2.noarch.rpm differ diff --git a/statapp/statapp-0.5.0-alt2.src.rpm b/statapp/statapp-0.5.0-alt2.src.rpm new file mode 100644 index 0000000..0e88797 Binary files /dev/null and b/statapp/statapp-0.5.0-alt2.src.rpm differ diff --git a/statapp/statapp.spec b/statapp/statapp.spec index dae6227..e5a57b5 100644 --- a/statapp/statapp.spec +++ b/statapp/statapp.spec @@ -4,14 +4,18 @@ Name: statapp Version: 0.5.0 -Release: alt1 +Release: alt2 +Vendor: Shizand Summary: Automated software for statistical analysis and regression modeling Summary(ru_RU.UTF-8): Автоматизированное программное средство по статистическому анализу и регрессионному моделированию. License: GPL-3.0 -Group: Development/Python3 +Group: Sciences/Mathematics Url: https://github.com/shizand/statapp + +# Source-url: https://github.com/shizand/statapp/archive/refs/tags/v%version.tar.gz Source: %pypi_name-%version.tar +Source1: statapp BuildArch: noarch @@ -43,6 +47,7 @@ STAT.exe (Produced by Reutov V.N., Donetsk University, 1990) %install %pyproject_install +install -m755 -D %SOURCE1 %buildroot%_bindir/statapp %check #%%tox_create_default_config @@ -50,10 +55,14 @@ STAT.exe (Produced by Reutov V.N., Donetsk University, 1990) %files %doc *.md +%_bindir/statapp %python3_sitelibdir_noarch/%pypi_name/ %python3_sitelibdir_noarch/%{pyproject_distinfo %pypi_name} %exclude %python3_sitelibdir_noarch/%pypi_name/**/*.ui %changelog +* Sun Oct 08 2023 Maxim Slipenko 0.5.0-alt2 +- Add /usr/bin/statapp + * Sat Oct 08 2023 Maxim Slipenko 0.5.0-alt1 - Initial build