aurig-sentinel 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. aurig_sentinel-0.1.0/.gitattributes +3 -0
  2. aurig_sentinel-0.1.0/.github/workflows/pre-commit.yml +18 -0
  3. aurig_sentinel-0.1.0/.github/workflows/publish.yml +39 -0
  4. aurig_sentinel-0.1.0/.github/workflows/test.yml +39 -0
  5. aurig_sentinel-0.1.0/.gitignore +61 -0
  6. aurig_sentinel-0.1.0/.pre-commit-config.yaml +45 -0
  7. aurig_sentinel-0.1.0/AUTHORS.md +14 -0
  8. aurig_sentinel-0.1.0/CHANGELOG.md +23 -0
  9. aurig_sentinel-0.1.0/CODE_OF_CONDUCT.md +85 -0
  10. aurig_sentinel-0.1.0/CONTRIBUTING.md +67 -0
  11. aurig_sentinel-0.1.0/LICENSE +201 -0
  12. aurig_sentinel-0.1.0/NOTICE +4 -0
  13. aurig_sentinel-0.1.0/PKG-INFO +26 -0
  14. aurig_sentinel-0.1.0/README.md +818 -0
  15. aurig_sentinel-0.1.0/configs/disabled/.gitkeep +2 -0
  16. aurig_sentinel-0.1.0/configs/example.yaml +108 -0
  17. aurig_sentinel-0.1.0/deployment/INSTALLATION_COMPARISON.md +349 -0
  18. aurig_sentinel-0.1.0/deployment/SECURITY_BEST_PRACTICES.md +424 -0
  19. aurig_sentinel-0.1.0/deployment/STARTUP_AUTOMATION_GUIDE.txt +306 -0
  20. aurig_sentinel-0.1.0/deployment/SYSTEM_USER_GUIDE.txt +192 -0
  21. aurig_sentinel-0.1.0/deployment/SYSTEM_USER_RECOMMENDATION.md +270 -0
  22. aurig_sentinel-0.1.0/deployment/setup-github-ssh.sh +282 -0
  23. aurig_sentinel-0.1.0/deployment/setup-user.sh +135 -0
  24. aurig_sentinel-0.1.0/deployment/systemd/install-system.sh +421 -0
  25. aurig_sentinel-0.1.0/deployment/systemd/sentinel-logrotate.conf +66 -0
  26. aurig_sentinel-0.1.0/deployment/systemd/sentinel.service +136 -0
  27. aurig_sentinel-0.1.0/deployment/systemd/sentinel.timer +23 -0
  28. aurig_sentinel-0.1.0/deployment/systemd/uninstall-system.sh +105 -0
  29. aurig_sentinel-0.1.0/deployment/verify_user.sh +159 -0
  30. aurig_sentinel-0.1.0/deployment/windows/install.bat +194 -0
  31. aurig_sentinel-0.1.0/deployment/windows/install.ps1 +196 -0
  32. aurig_sentinel-0.1.0/deployment/windows/sentinel-task.xml +63 -0
  33. aurig_sentinel-0.1.0/pyproject.toml +42 -0
  34. aurig_sentinel-0.1.0/run.py +15 -0
  35. aurig_sentinel-0.1.0/scripts/check-no-ai-coauthor.sh +37 -0
  36. aurig_sentinel-0.1.0/scripts/check-no-staging-files.sh +51 -0
  37. aurig_sentinel-0.1.0/sentinel/__init__.py +41 -0
  38. aurig_sentinel-0.1.0/sentinel/config_validator.py +574 -0
  39. aurig_sentinel-0.1.0/sentinel/fetch_code.py +194 -0
  40. aurig_sentinel-0.1.0/sentinel/linting.py +441 -0
  41. aurig_sentinel-0.1.0/sentinel/main.py +773 -0
  42. aurig_sentinel-0.1.0/sentinel/project_setup.py +167 -0
  43. aurig_sentinel-0.1.0/sentinel/regression_testing.py +423 -0
  44. aurig_sentinel-0.1.0/sentinel/run_context.py +66 -0
  45. aurig_sentinel-0.1.0/sentinel/synthesis.py +228 -0
  46. aurig_sentinel-0.1.0/tests/__init__.py +4 -0
  47. aurig_sentinel-0.1.0/tests/fixtures/vhdl/led_blinker.vhd +45 -0
  48. aurig_sentinel-0.1.0/tests/fixtures/vhdl/simple_counter.vhd +37 -0
  49. aurig_sentinel-0.1.0/tests/test_sentinel_comprehensive.py +2606 -0
@@ -0,0 +1,3 @@
1
+ * text=auto eol=lf
2
+ *.bat text eol=crlf
3
+ *.ps1 text eol=crlf
@@ -0,0 +1,18 @@
1
+ name: pre-commit
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ jobs:
9
+ pre-commit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v6
13
+ with:
14
+ fetch-depth: 0
15
+ - uses: actions/setup-python@v6
16
+ with:
17
+ python-version: "3.13"
18
+ - uses: pre-commit/action@v3.0.1
@@ -0,0 +1,39 @@
1
+ name: publish
2
+
3
+ on:
4
+ push:
5
+ tags: ["v*"]
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ id-token: write
12
+ contents: read
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v6
16
+
17
+ - name: Set up Python
18
+ uses: actions/setup-python@v6
19
+ with:
20
+ python-version: "3.11"
21
+
22
+ - name: Install build
23
+ run: pip install build
24
+
25
+ - name: Verify tag matches package version
26
+ run: |
27
+ TAG_VERSION="${GITHUB_REF_NAME#v}"
28
+ PKG_VERSION=$(python -c "import tomllib; print(tomllib.load(open('pyproject.toml','rb'))['project']['version'])")
29
+ if [ "$TAG_VERSION" != "$PKG_VERSION" ]; then
30
+ echo "::error::Tag $GITHUB_REF_NAME does not match pyproject version $PKG_VERSION"
31
+ exit 1
32
+ fi
33
+ echo "Tag $GITHUB_REF_NAME matches pyproject version $PKG_VERSION"
34
+
35
+ - name: Build sdist + wheel
36
+ run: python -m build
37
+
38
+ - name: Publish to PyPI
39
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,39 @@
1
+ name: tests
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ concurrency:
10
+ group: ci-${{ github.ref }}
11
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
12
+
13
+ jobs:
14
+ test:
15
+ name: py${{ matrix.python-version }} / ${{ matrix.os }}
16
+ runs-on: ${{ matrix.os }}
17
+ timeout-minutes: 10
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ os: [ubuntu-latest, windows-latest]
22
+ python-version: ['3.9', '3.11', '3.12', '3.13']
23
+ steps:
24
+ - name: Check out repository
25
+ uses: actions/checkout@v4
26
+
27
+ - name: Set up Python ${{ matrix.python-version }}
28
+ uses: actions/setup-python@v5
29
+ with:
30
+ python-version: ${{ matrix.python-version }}
31
+ cache: 'pip'
32
+
33
+ - name: Install dependencies
34
+ run: |
35
+ python -m pip install --upgrade pip
36
+ pip install -e .[test]
37
+
38
+ - name: Run tests
39
+ run: python -m pytest tests/ -v --tb=short
@@ -0,0 +1,61 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ *.egg-info/
8
+ dist/
9
+ build/
10
+ *.egg
11
+ *.pyc
12
+ *.pyo
13
+
14
+ # Virtual Environment
15
+ .venv/
16
+ venv/
17
+ ENV/
18
+ env/
19
+
20
+ # IDEs
21
+ .vscode/
22
+ .idea/
23
+ *.swp
24
+ *.swo
25
+ *~
26
+
27
+ # Project-specific
28
+ projects/
29
+ logs/
30
+ temp/
31
+ git_fetch_repo/
32
+ local_repo/
33
+ *.log
34
+ *.bak
35
+
36
+ # Sentinel runtime output (output.base_dir default = ./runs/).
37
+ # Each run lands under runs/<project>/<timestamp>/; never committed.
38
+ runs/
39
+
40
+ # Claude Code local state (auto-memory, project-level settings).
41
+ # Lives outside the repo content domain; user-machine-local.
42
+ .claude/
43
+
44
+ # Project-specific Sentinel configs are workstation-local, never
45
+ # committed to the Sentinel repo (they would couple Sentinel to a
46
+ # single customer's repo structure and leak internal naming).
47
+ # Only configs/example.yaml is tracked (the canonical schema
48
+ # template). Real-project configs live on the workstation under
49
+ # $SENTINEL_CONFIGS_DIR or ~/.sentinel/configs/. If you genuinely
50
+ # add a new GENERIC template here, remove the file from this
51
+ # allowlist explicitly.
52
+ configs/*.yaml
53
+ !configs/example.yaml
54
+
55
+ # OS
56
+ .DS_Store
57
+ Thumbs.db
58
+
59
+ *.log
60
+ full_test_log.txt
61
+ *.old
@@ -0,0 +1,45 @@
1
+ # Pre-commit hooks for aurig-sentinel
2
+ # Run on every commit (locally + CI).
3
+ # Install locally: pip install pre-commit && pre-commit install && pre-commit install --hook-type commit-msg
4
+
5
+ repos:
6
+ # Standard hygiene
7
+ - repo: https://github.com/pre-commit/pre-commit-hooks
8
+ rev: v4.5.0
9
+ hooks:
10
+ - id: trailing-whitespace
11
+ - id: end-of-file-fixer
12
+ - id: check-yaml
13
+ - id: check-toml
14
+ - id: check-added-large-files
15
+ args: ['--maxkb=500']
16
+ - id: detect-private-key
17
+ - id: mixed-line-ending
18
+ args: ['--fix=lf']
19
+
20
+ # Secrets scanner
21
+ - repo: https://github.com/gitleaks/gitleaks
22
+ rev: v8.18.0
23
+ hooks:
24
+ - id: gitleaks
25
+
26
+ # Custom local hooks
27
+ # NOTE: language: system + `bash <relative-path>` (not language: script):
28
+ # on Windows, language: script passes the hook a mangled absolute path
29
+ # (backslashes stripped) and fails with exit 127. Invoking bash with the
30
+ # repo-relative path works on both git-bash (Windows) and Linux CI.
31
+ - repo: local
32
+ hooks:
33
+ - id: no-ai-coauthor
34
+ name: Block AI co-author trailers in commit messages
35
+ entry: bash scripts/check-no-ai-coauthor.sh
36
+ language: system
37
+ stages: [commit-msg]
38
+
39
+ - id: no-staging-files
40
+ name: Block staging-only files from being committed
41
+ entry: bash scripts/check-no-staging-files.sh
42
+ language: system
43
+ pass_filenames: false
44
+ always_run: true
45
+ stages: [pre-commit]
@@ -0,0 +1,14 @@
1
+ <!-- SPDX-License-Identifier: Apache-2.0 -->
2
+ <!-- Copyright 2026 LogiMentor S.r.l. -->
3
+
4
+ # Authors
5
+
6
+ AURIG Sentinel is created and maintained by LogiMentor S.r.l.
7
+
8
+ ## Lead developer
9
+
10
+ - Andrea Campera ([@aca-logimentor](https://github.com/aca-logimentor))
11
+
12
+ ## Contributors
13
+
14
+ (No external contributors yet — be the first! See `CONTRIBUTING.md` for how to get involved.)
@@ -0,0 +1,23 @@
1
+ <!-- SPDX-License-Identifier: Apache-2.0 -->
2
+ <!-- Copyright 2026 LogiMentor S.r.l. -->
3
+
4
+ # Changelog
5
+
6
+ All notable changes to this project will be documented in this file.
7
+
8
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
9
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
10
+
11
+ ## [0.1.0] - 2026-06-10
12
+
13
+ ### Added
14
+
15
+ - Initial release of AURIG Sentinel.
16
+ - Multi-config orchestration for nightly FPGA build pipelines.
17
+ - Phase-based pipeline (fetch, pre_run, linting, regression,
18
+ synthesis) with per-phase configuration.
19
+ - Git and local source fetch.
20
+ - Regression backend supporting GHDL, ModelSim/Questa, Active-HDL, xsim.
21
+ - Synthesis support for Vivado (Quartus is stubbed).
22
+ - Time-window gating, artifact bundling, retention-based cleanup.
23
+ - systemd + Windows Task Scheduler deployment scaffolding.
@@ -0,0 +1,85 @@
1
+ <!-- SPDX-License-Identifier: CC-BY-4.0 -->
2
+
3
+ # Contributor Covenant Code of Conduct
4
+
5
+ ## Our Pledge
6
+
7
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
8
+
9
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
10
+
11
+ ## Our Standards
12
+
13
+ Examples of behavior that contributes to a positive environment for our community include:
14
+
15
+ * Demonstrating empathy and kindness toward other people
16
+ * Being respectful of differing opinions, viewpoints, and experiences
17
+ * Giving and gracefully accepting constructive feedback
18
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
19
+ * Focusing on what is best not just for us as individuals, but for the overall community
20
+
21
+ Examples of unacceptable behavior include:
22
+
23
+ * The use of sexualized language or imagery, and sexual attention or advances of any kind
24
+ * Trolling, insulting or derogatory comments, and personal or political attacks
25
+ * Public or private harassment
26
+ * Publishing others' private information, such as a physical or email address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a professional setting
28
+
29
+ ## Enforcement Responsibilities
30
+
31
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
32
+
33
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
34
+
35
+ ## Scope
36
+
37
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
38
+
39
+ ## Enforcement
40
+
41
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at a.campera@logimentor.com. All complaints will be reviewed and investigated promptly and fairly.
42
+
43
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
44
+
45
+ ## Enforcement Guidelines
46
+
47
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
48
+
49
+ ### 1. Correction
50
+
51
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
52
+
53
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
54
+
55
+ ### 2. Warning
56
+
57
+ **Community Impact**: A violation through a single incident or series of actions.
58
+
59
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
60
+
61
+ ### 3. Temporary Ban
62
+
63
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
64
+
65
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
66
+
67
+ ### 4. Permanent Ban
68
+
69
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
70
+
71
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
72
+
73
+ ## Attribution
74
+
75
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
76
+
77
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
78
+
79
+ For answers to common questions about this code of conduct, see the FAQ at [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at [https://www.contributor-covenant.org/translations][translations].
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
83
+ [Mozilla CoC]: https://github.com/mozilla/diversity
84
+ [FAQ]: https://www.contributor-covenant.org/faq
85
+ [translations]: https://www.contributor-covenant.org/translations
@@ -0,0 +1,67 @@
1
+ <!-- SPDX-License-Identifier: Apache-2.0 -->
2
+ <!-- Copyright 2026 LogiMentor S.r.l. -->
3
+
4
+ # Contributing to AURIG Sentinel
5
+
6
+ Thanks for your interest in contributing. This document explains how to set
7
+ up a development environment, the branch and pull request workflow, and the
8
+ conventions we follow.
9
+
10
+ By participating in this project you agree to abide by our
11
+ [Code of Conduct](CODE_OF_CONDUCT.md).
12
+
13
+ ## Ways to contribute
14
+
15
+ - Report bugs and request features via GitHub issues.
16
+ - Improve documentation.
17
+ - Submit bug fixes or new features via pull requests.
18
+
19
+ ## Development setup
20
+
21
+ 1. Clone the repository.
22
+ 2. Use Python 3.9 or newer.
23
+ 3. Install the package in editable mode with the test dependency:
24
+
25
+ ```sh
26
+ pip install -e .[test]
27
+ ```
28
+
29
+ 4. Run the test suite:
30
+
31
+ ```sh
32
+ python -m pytest tests/ -v
33
+ ```
34
+
35
+ ## Branch and pull request workflow
36
+
37
+ - Create a feature branch off `main`. Use one of the following type
38
+ prefixes — they apply to both branch names (slash form, e.g.
39
+ `docs/add-changelog`) and commit subjects / PR titles (colon form,
40
+ e.g. `docs: add changelog`):
41
+ - `chore` — maintenance, tooling, no code change
42
+ - `docs` — documentation only
43
+ - `ci` — CI configuration
44
+ - `fix` — bug fix
45
+ - `feat` — new feature
46
+ - `refactor` — code restructuring without behavior change
47
+ - `test` — adding or fixing tests
48
+ - `perf` — performance improvement
49
+ - Open a pull request against `main`.
50
+ - All CI checks must pass before a pull request can be merged.
51
+ - Pull requests are squash-merged: each PR becomes a single commit on
52
+ `main`, with the commit title and message taken from the PR title and
53
+ description. Intermediate commits on the feature branch don't need to
54
+ be tidy — they get collapsed at merge.
55
+
56
+ ## Commit message guidelines
57
+
58
+ - Write clear, conventional commit messages.
59
+ - Use the imperative mood (e.g. `add foo`, not `added foo`).
60
+ - Keep the subject line between 50 and 72 characters.
61
+ - Keep each pull request to one logical change.
62
+
63
+ ## Reporting bugs and requesting features
64
+
65
+ Open a GitHub issue. For bugs, include steps to reproduce, what you expected,
66
+ and what actually happened. For features, describe the use case and the
67
+ behavior you would like.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 LogiMentor S.r.l.
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,4 @@
1
+ Sentinel
2
+ Copyright 2026 LogiMentor S.r.l.
3
+
4
+ This product is part of the AURIG open-source FPGA tooling stack.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: aurig-sentinel
3
+ Version: 0.1.0
4
+ Summary: Automated FPGA/VHDL build pipeline with regression testing and synthesis
5
+ Project-URL: Homepage, https://github.com/aurig-fpga/aurig-sentinel
6
+ Project-URL: Repository, https://github.com/aurig-fpga/aurig-sentinel
7
+ Project-URL: Issues, https://github.com/aurig-fpga/aurig-sentinel/issues
8
+ Project-URL: Changelog, https://github.com/aurig-fpga/aurig-sentinel/blob/main/CHANGELOG.md
9
+ Author-email: Andrea Campera <a.campera@logimentor.com>
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Software Development :: Build Tools
20
+ Requires-Python: >=3.9
21
+ Requires-Dist: gitpython>=3.1.40
22
+ Requires-Dist: pyyaml>=6.0
23
+ Provides-Extra: regression
24
+ Requires-Dist: vunit-hdl>=4.0; extra == 'regression'
25
+ Provides-Extra: test
26
+ Requires-Dist: pytest>=7; extra == 'test'