diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-05 06:06:45 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 06:06:45 +0000 |
| commit | 4f7892056084b4fa8d0c5ef7f387c37b0826dffe (patch) | |
| tree | a62afbedf9bef5ceb3ec7e0121560287bac93c83 | |
| parent | a4b2805963c0ff55a721b21ff00354fe7239d9b1 (diff) | |
automatic import of python-codemagic-cli-toolsopeneuler20.03
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-codemagic-cli-tools.spec | 677 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 679 insertions, 0 deletions
@@ -0,0 +1 @@ +/codemagic_cli_tools-0.39.2.tar.gz diff --git a/python-codemagic-cli-tools.spec b/python-codemagic-cli-tools.spec new file mode 100644 index 0000000..09477c7 --- /dev/null +++ b/python-codemagic-cli-tools.spec @@ -0,0 +1,677 @@ +%global _empty_manifest_terminate_build 0 +Name: python-codemagic-cli-tools +Version: 0.39.2 +Release: 1 +Summary: CLI tools used in Codemagic builds +License: GPL-3.0-or-later +URL: https://github.com/codemagic-ci-cd/cli-tools +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/03/d1/6cf56bed53b2dcfdc60bbbbe654e68b22fe10c6c6ee7071dec237519d72f/codemagic_cli_tools-0.39.2.tar.gz +BuildArch: noarch + +Requires: python3-cryptography +Requires: python3-google-api-python-client +Requires: python3-httplib2 +Requires: python3-oauth2client +Requires: python3-packaging +Requires: python3-psutil +Requires: python3-pyjwt +Requires: python3-requests + +%description +# Codemagic CLI Tools + +Codemagic CLI Tools are a set of command-line utilities for managing Android and iOS app builds, +code signing, and deployment. The tools are used to power mobile app builds at [codemagic.io](https://codemagic.io) but can be also used in other virtual environments or locally. + +# Installing + +Codemagic CLI Tools are available on [PyPI](https://pypi.org/project/codemagic-cli-tools/) +and can be installed and updated using [pip](https://pip.pypa.io/en/stable/getting-started/). + +``` +python -m pip install codemagic-cli-tools +``` + +The package requires Python version 3.7+. + +# Command line usage + +Installing the package adds the following executables to your path: + +- [`android-app-bundle`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/android-app-bundle/README.md) +- [`android-keystore`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/android-keystore/README.md) +- [`app-store-connect`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/app-store-connect/README.md) +- [`codemagic-cli-tools`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/codemagic-cli-tools/README.md) +- [`git-changelog`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/git-changelog/README.md) +- [`google-play`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/google-play/README.md) +- [`keychain`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/keychain/README.md) +- [`universal-apk`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/universal-apk/README.md) +- [`xcode-project`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/xcode-project/README.md) + +Online documentation for all installed executables can be found under +[`docs`](https://github.com/codemagic-ci-cd/cli-tools/tree/master/docs#cli-tools). + +Alternatively, you could see the documentation by using `--help` option from command line: + +```bash +<command> --help +``` +to see general description and subcommands for the tool, or + +```bash +<command> <subcommand> --help +``` +to get detailed information of the subcommand. + +**For example:** + +``` +$ keychain create --help +usage: keychain create [-h] [--log-stream {stderr,stdout}] [--no-color] [--version] [-s] [-v] [-pw PASSWORD] [-p PATH] + +Create a macOS keychain, add it to the search list + +optional arguments: + -h, --help show this help message and exit + +Optional arguments for command create: + -pw PASSWORD, --password PASSWORD + Keychain password. Alternatively to entering PASSWORD in plaintext, it may also be specified using the "@env:" prefix followed by an environment variable name, or the "@file:" prefix followed by a path to the file containing the value. Example: "@env:<variable>" uses the value in the environment variable named "<variable>", and "@file:<file_path>" uses the value from the file at "<file_path>". [Default: ''] + +Options: + --log-stream {stderr,stdout} + Log output stream. [Default: stderr] + --no-color Do not use ANSI colors to format terminal output + --version Show tool version and exit + -s, --silent Disable log output for commands + -v, --verbose Enable verbose logging for commands + +Optional arguments for keychain: + -p PATH, --path PATH Keychain path. If not provided, the system default keychain will be used instead +``` + +# Usage from Python + +In addition to the command line interface, the package also provides a mirroring Python API. +All utilities that are available as CLI tools are accessible from Python in package +[`codemagic.tools`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/tools/__init__.py). +The CLI actions are instance methods that are decorated by the [`action`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/cli/cli_app.py#L385) +decorator. For example, you can use the [`Keychain`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/tools/keychain.py#L111) +tool from Python source as follows: + +```python +In [1]: from pathlib import Path + +In [2]: from codemagic.tools import Keychain + +In [3]: Keychain().get_default() +Out[3]: PosixPath('/Users/priit/Library/Keychains/login.keychain-db') + +In [4]: keychain = Keychain(Path("/tmp/new.keychain")) + +In [5]: keychain.create() +Out[5]: PosixPath('/tmp/new.keychain') + +In [6]: keychain.make_default() + +In [7]: Keychain().get_default() +Out[7]: PosixPath('/private/tmp/new.keychain') +``` + +# Development + +This project uses [Poetry](https://python-poetry.org/) to manage dependencies. Before starting development, please ensure that your +machine has Poetry available. Installation instructions can be found from their +[docs](https://python-poetry.org/docs/#installation). + +Assuming you've already cloned the [repository](https://github.com/codemagic-ci-cd/cli-tools/) +itself, or a fork of it, you can get started by running + +```shell +poetry install +``` + +This will install all required dependencies specified in the `poetry.lock` file. + +The source code of the project lives inside the `src` directory and tests are +implemented in the `tests` directory. + +### Code style and formatting + +Automatic formatting checks are enforced using [Flake8](https://flake8.pycqa.org/en/latest/) +and [isort](https://pycqa.github.io/isort/). + +Invoke Flake8 checks from repository root directory with + +```shell +poetry run flake8 . +``` + +Ensure that all imports are ordered as expected using isort from the repository root with + +```shell +poetry run isort --check-only . +``` + +### Static type checks + +A huge portion of the Python source code has type hints, and all public methods or functions +are expected to have type hints. Static type checks of the source code are performed using +[Mypy](http://mypy-lang.org/) from the repository root by running + +```shell +poetry run mypy src +``` + +### Running tests + +[Pytest](https://docs.pytest.org/en/stable/) is used as the framework. As mentioned above, +tests are stored in the `tests` directory, separated from package source code. Test code layout +mirrors the structure of the `codemagic` package in the source directory. + +Tests can be started by running the following command from the repository root: + +```shell +poetry run pytest +``` + +Note that tests that target [App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi) or +[Google Play Developer API](https://developers.google.com/android-publisher) live endpoints +are skipped by default for obvious reasons. They can be enabled (either for TDD or other reasons) +by setting the environment variable `RUN_LIVE_API_TESTS` to any non-empty value. + +Note that for the tests to run successfully, you'd have to define the following environment variables: +- For App Store Connect: + ```shell + export TEST_APPLE_KEY_IDENTIFIER=... # Key ID + export TEST_APPLE_ISSUER_ID=... # Issued ID + ``` + And either of the two: + ```bash + export TEST_APPLE_PRIVATE_KEY_PATH=... # Path to private key in .p8 format + export TEST_APPLE_PRIVATE_KEY_CONTENT=... # Content of .p8 private key + ``` + Those can be obtained from [App Store Connect -> Users and Access -> Keys](https://appstoreconnect.apple.com/access/api). + For more information follow Apple's official documentation about [Creating API Keys for App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi/creating_api_keys_for_app_store_connect_api). + +- For Google Play: + ```shell + export TEST_GCLOUD_PACKAGE_NAME=... # Package name (Ex: com.google.example)' + ``` + And either of the two: + ```shell + export TEST_GCLOUD_SERVICE_ACCOUNT_CREDENTIALS_PATH=... # Path to gcloud service account creedentials with `JSON` key type + export TEST_GCLOUD_SERVICE_ACCOUNT_CREDENTIALS_CONTENT=... # Content of gcloud service account creedentials with `JSON` key type + ``` + +### Pre-commit hooks + +Optionally, the [pre-commit](https://pre-commit.com/) framework can be used to ensure that +the source code updates are compliant with all the rules mentioned above. + +Installation instructions are available in their [docs](https://pre-commit.com/#installation). + +The repository already contains pre-configured `.pre-commit-config.yaml`, so to enable +the hooks, just run + +```shell +pre-commit install +``` + + +%package -n python3-codemagic-cli-tools +Summary: CLI tools used in Codemagic builds +Provides: python-codemagic-cli-tools +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-codemagic-cli-tools +# Codemagic CLI Tools + +Codemagic CLI Tools are a set of command-line utilities for managing Android and iOS app builds, +code signing, and deployment. The tools are used to power mobile app builds at [codemagic.io](https://codemagic.io) but can be also used in other virtual environments or locally. + +# Installing + +Codemagic CLI Tools are available on [PyPI](https://pypi.org/project/codemagic-cli-tools/) +and can be installed and updated using [pip](https://pip.pypa.io/en/stable/getting-started/). + +``` +python -m pip install codemagic-cli-tools +``` + +The package requires Python version 3.7+. + +# Command line usage + +Installing the package adds the following executables to your path: + +- [`android-app-bundle`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/android-app-bundle/README.md) +- [`android-keystore`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/android-keystore/README.md) +- [`app-store-connect`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/app-store-connect/README.md) +- [`codemagic-cli-tools`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/codemagic-cli-tools/README.md) +- [`git-changelog`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/git-changelog/README.md) +- [`google-play`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/google-play/README.md) +- [`keychain`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/keychain/README.md) +- [`universal-apk`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/universal-apk/README.md) +- [`xcode-project`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/xcode-project/README.md) + +Online documentation for all installed executables can be found under +[`docs`](https://github.com/codemagic-ci-cd/cli-tools/tree/master/docs#cli-tools). + +Alternatively, you could see the documentation by using `--help` option from command line: + +```bash +<command> --help +``` +to see general description and subcommands for the tool, or + +```bash +<command> <subcommand> --help +``` +to get detailed information of the subcommand. + +**For example:** + +``` +$ keychain create --help +usage: keychain create [-h] [--log-stream {stderr,stdout}] [--no-color] [--version] [-s] [-v] [-pw PASSWORD] [-p PATH] + +Create a macOS keychain, add it to the search list + +optional arguments: + -h, --help show this help message and exit + +Optional arguments for command create: + -pw PASSWORD, --password PASSWORD + Keychain password. Alternatively to entering PASSWORD in plaintext, it may also be specified using the "@env:" prefix followed by an environment variable name, or the "@file:" prefix followed by a path to the file containing the value. Example: "@env:<variable>" uses the value in the environment variable named "<variable>", and "@file:<file_path>" uses the value from the file at "<file_path>". [Default: ''] + +Options: + --log-stream {stderr,stdout} + Log output stream. [Default: stderr] + --no-color Do not use ANSI colors to format terminal output + --version Show tool version and exit + -s, --silent Disable log output for commands + -v, --verbose Enable verbose logging for commands + +Optional arguments for keychain: + -p PATH, --path PATH Keychain path. If not provided, the system default keychain will be used instead +``` + +# Usage from Python + +In addition to the command line interface, the package also provides a mirroring Python API. +All utilities that are available as CLI tools are accessible from Python in package +[`codemagic.tools`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/tools/__init__.py). +The CLI actions are instance methods that are decorated by the [`action`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/cli/cli_app.py#L385) +decorator. For example, you can use the [`Keychain`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/tools/keychain.py#L111) +tool from Python source as follows: + +```python +In [1]: from pathlib import Path + +In [2]: from codemagic.tools import Keychain + +In [3]: Keychain().get_default() +Out[3]: PosixPath('/Users/priit/Library/Keychains/login.keychain-db') + +In [4]: keychain = Keychain(Path("/tmp/new.keychain")) + +In [5]: keychain.create() +Out[5]: PosixPath('/tmp/new.keychain') + +In [6]: keychain.make_default() + +In [7]: Keychain().get_default() +Out[7]: PosixPath('/private/tmp/new.keychain') +``` + +# Development + +This project uses [Poetry](https://python-poetry.org/) to manage dependencies. Before starting development, please ensure that your +machine has Poetry available. Installation instructions can be found from their +[docs](https://python-poetry.org/docs/#installation). + +Assuming you've already cloned the [repository](https://github.com/codemagic-ci-cd/cli-tools/) +itself, or a fork of it, you can get started by running + +```shell +poetry install +``` + +This will install all required dependencies specified in the `poetry.lock` file. + +The source code of the project lives inside the `src` directory and tests are +implemented in the `tests` directory. + +### Code style and formatting + +Automatic formatting checks are enforced using [Flake8](https://flake8.pycqa.org/en/latest/) +and [isort](https://pycqa.github.io/isort/). + +Invoke Flake8 checks from repository root directory with + +```shell +poetry run flake8 . +``` + +Ensure that all imports are ordered as expected using isort from the repository root with + +```shell +poetry run isort --check-only . +``` + +### Static type checks + +A huge portion of the Python source code has type hints, and all public methods or functions +are expected to have type hints. Static type checks of the source code are performed using +[Mypy](http://mypy-lang.org/) from the repository root by running + +```shell +poetry run mypy src +``` + +### Running tests + +[Pytest](https://docs.pytest.org/en/stable/) is used as the framework. As mentioned above, +tests are stored in the `tests` directory, separated from package source code. Test code layout +mirrors the structure of the `codemagic` package in the source directory. + +Tests can be started by running the following command from the repository root: + +```shell +poetry run pytest +``` + +Note that tests that target [App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi) or +[Google Play Developer API](https://developers.google.com/android-publisher) live endpoints +are skipped by default for obvious reasons. They can be enabled (either for TDD or other reasons) +by setting the environment variable `RUN_LIVE_API_TESTS` to any non-empty value. + +Note that for the tests to run successfully, you'd have to define the following environment variables: +- For App Store Connect: + ```shell + export TEST_APPLE_KEY_IDENTIFIER=... # Key ID + export TEST_APPLE_ISSUER_ID=... # Issued ID + ``` + And either of the two: + ```bash + export TEST_APPLE_PRIVATE_KEY_PATH=... # Path to private key in .p8 format + export TEST_APPLE_PRIVATE_KEY_CONTENT=... # Content of .p8 private key + ``` + Those can be obtained from [App Store Connect -> Users and Access -> Keys](https://appstoreconnect.apple.com/access/api). + For more information follow Apple's official documentation about [Creating API Keys for App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi/creating_api_keys_for_app_store_connect_api). + +- For Google Play: + ```shell + export TEST_GCLOUD_PACKAGE_NAME=... # Package name (Ex: com.google.example)' + ``` + And either of the two: + ```shell + export TEST_GCLOUD_SERVICE_ACCOUNT_CREDENTIALS_PATH=... # Path to gcloud service account creedentials with `JSON` key type + export TEST_GCLOUD_SERVICE_ACCOUNT_CREDENTIALS_CONTENT=... # Content of gcloud service account creedentials with `JSON` key type + ``` + +### Pre-commit hooks + +Optionally, the [pre-commit](https://pre-commit.com/) framework can be used to ensure that +the source code updates are compliant with all the rules mentioned above. + +Installation instructions are available in their [docs](https://pre-commit.com/#installation). + +The repository already contains pre-configured `.pre-commit-config.yaml`, so to enable +the hooks, just run + +```shell +pre-commit install +``` + + +%package help +Summary: Development documents and examples for codemagic-cli-tools +Provides: python3-codemagic-cli-tools-doc +%description help +# Codemagic CLI Tools + +Codemagic CLI Tools are a set of command-line utilities for managing Android and iOS app builds, +code signing, and deployment. The tools are used to power mobile app builds at [codemagic.io](https://codemagic.io) but can be also used in other virtual environments or locally. + +# Installing + +Codemagic CLI Tools are available on [PyPI](https://pypi.org/project/codemagic-cli-tools/) +and can be installed and updated using [pip](https://pip.pypa.io/en/stable/getting-started/). + +``` +python -m pip install codemagic-cli-tools +``` + +The package requires Python version 3.7+. + +# Command line usage + +Installing the package adds the following executables to your path: + +- [`android-app-bundle`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/android-app-bundle/README.md) +- [`android-keystore`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/android-keystore/README.md) +- [`app-store-connect`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/app-store-connect/README.md) +- [`codemagic-cli-tools`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/codemagic-cli-tools/README.md) +- [`git-changelog`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/git-changelog/README.md) +- [`google-play`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/google-play/README.md) +- [`keychain`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/keychain/README.md) +- [`universal-apk`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/universal-apk/README.md) +- [`xcode-project`](https://github.com/codemagic-ci-cd/cli-tools/blob/master/docs/xcode-project/README.md) + +Online documentation for all installed executables can be found under +[`docs`](https://github.com/codemagic-ci-cd/cli-tools/tree/master/docs#cli-tools). + +Alternatively, you could see the documentation by using `--help` option from command line: + +```bash +<command> --help +``` +to see general description and subcommands for the tool, or + +```bash +<command> <subcommand> --help +``` +to get detailed information of the subcommand. + +**For example:** + +``` +$ keychain create --help +usage: keychain create [-h] [--log-stream {stderr,stdout}] [--no-color] [--version] [-s] [-v] [-pw PASSWORD] [-p PATH] + +Create a macOS keychain, add it to the search list + +optional arguments: + -h, --help show this help message and exit + +Optional arguments for command create: + -pw PASSWORD, --password PASSWORD + Keychain password. Alternatively to entering PASSWORD in plaintext, it may also be specified using the "@env:" prefix followed by an environment variable name, or the "@file:" prefix followed by a path to the file containing the value. Example: "@env:<variable>" uses the value in the environment variable named "<variable>", and "@file:<file_path>" uses the value from the file at "<file_path>". [Default: ''] + +Options: + --log-stream {stderr,stdout} + Log output stream. [Default: stderr] + --no-color Do not use ANSI colors to format terminal output + --version Show tool version and exit + -s, --silent Disable log output for commands + -v, --verbose Enable verbose logging for commands + +Optional arguments for keychain: + -p PATH, --path PATH Keychain path. If not provided, the system default keychain will be used instead +``` + +# Usage from Python + +In addition to the command line interface, the package also provides a mirroring Python API. +All utilities that are available as CLI tools are accessible from Python in package +[`codemagic.tools`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/tools/__init__.py). +The CLI actions are instance methods that are decorated by the [`action`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/cli/cli_app.py#L385) +decorator. For example, you can use the [`Keychain`](https://github.com/codemagic-ci-cd/cli-tools/blob/v0.28.0/src/codemagic/tools/keychain.py#L111) +tool from Python source as follows: + +```python +In [1]: from pathlib import Path + +In [2]: from codemagic.tools import Keychain + +In [3]: Keychain().get_default() +Out[3]: PosixPath('/Users/priit/Library/Keychains/login.keychain-db') + +In [4]: keychain = Keychain(Path("/tmp/new.keychain")) + +In [5]: keychain.create() +Out[5]: PosixPath('/tmp/new.keychain') + +In [6]: keychain.make_default() + +In [7]: Keychain().get_default() +Out[7]: PosixPath('/private/tmp/new.keychain') +``` + +# Development + +This project uses [Poetry](https://python-poetry.org/) to manage dependencies. Before starting development, please ensure that your +machine has Poetry available. Installation instructions can be found from their +[docs](https://python-poetry.org/docs/#installation). + +Assuming you've already cloned the [repository](https://github.com/codemagic-ci-cd/cli-tools/) +itself, or a fork of it, you can get started by running + +```shell +poetry install +``` + +This will install all required dependencies specified in the `poetry.lock` file. + +The source code of the project lives inside the `src` directory and tests are +implemented in the `tests` directory. + +### Code style and formatting + +Automatic formatting checks are enforced using [Flake8](https://flake8.pycqa.org/en/latest/) +and [isort](https://pycqa.github.io/isort/). + +Invoke Flake8 checks from repository root directory with + +```shell +poetry run flake8 . +``` + +Ensure that all imports are ordered as expected using isort from the repository root with + +```shell +poetry run isort --check-only . +``` + +### Static type checks + +A huge portion of the Python source code has type hints, and all public methods or functions +are expected to have type hints. Static type checks of the source code are performed using +[Mypy](http://mypy-lang.org/) from the repository root by running + +```shell +poetry run mypy src +``` + +### Running tests + +[Pytest](https://docs.pytest.org/en/stable/) is used as the framework. As mentioned above, +tests are stored in the `tests` directory, separated from package source code. Test code layout +mirrors the structure of the `codemagic` package in the source directory. + +Tests can be started by running the following command from the repository root: + +```shell +poetry run pytest +``` + +Note that tests that target [App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi) or +[Google Play Developer API](https://developers.google.com/android-publisher) live endpoints +are skipped by default for obvious reasons. They can be enabled (either for TDD or other reasons) +by setting the environment variable `RUN_LIVE_API_TESTS` to any non-empty value. + +Note that for the tests to run successfully, you'd have to define the following environment variables: +- For App Store Connect: + ```shell + export TEST_APPLE_KEY_IDENTIFIER=... # Key ID + export TEST_APPLE_ISSUER_ID=... # Issued ID + ``` + And either of the two: + ```bash + export TEST_APPLE_PRIVATE_KEY_PATH=... # Path to private key in .p8 format + export TEST_APPLE_PRIVATE_KEY_CONTENT=... # Content of .p8 private key + ``` + Those can be obtained from [App Store Connect -> Users and Access -> Keys](https://appstoreconnect.apple.com/access/api). + For more information follow Apple's official documentation about [Creating API Keys for App Store Connect API](https://developer.apple.com/documentation/appstoreconnectapi/creating_api_keys_for_app_store_connect_api). + +- For Google Play: + ```shell + export TEST_GCLOUD_PACKAGE_NAME=... # Package name (Ex: com.google.example)' + ``` + And either of the two: + ```shell + export TEST_GCLOUD_SERVICE_ACCOUNT_CREDENTIALS_PATH=... # Path to gcloud service account creedentials with `JSON` key type + export TEST_GCLOUD_SERVICE_ACCOUNT_CREDENTIALS_CONTENT=... # Content of gcloud service account creedentials with `JSON` key type + ``` + +### Pre-commit hooks + +Optionally, the [pre-commit](https://pre-commit.com/) framework can be used to ensure that +the source code updates are compliant with all the rules mentioned above. + +Installation instructions are available in their [docs](https://pre-commit.com/#installation). + +The repository already contains pre-configured `.pre-commit-config.yaml`, so to enable +the hooks, just run + +```shell +pre-commit install +``` + + +%prep +%autosetup -n codemagic-cli-tools-0.39.2 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-codemagic-cli-tools -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.39.2-1 +- Package Spec generated @@ -0,0 +1 @@ +0387d06166b16701199ad7079e0606a5 codemagic_cli_tools-0.39.2.tar.gz |
