Metadata-Version: 2.4
Name: sru-lint
Version: 1.0
Summary: A linter for Ubuntu SRU (Stable Release Update) packages
License: MIT
License-File: LICENSE
Keywords: ubuntu,sru,linter,debian,packaging
Author: Dariusz Gadomski
Author-email: dgadomski@ubuntu.com
Requires-Python: >=3.12,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: coverage (>=7.10.7,<8.0.0)
Requires-Dist: gitpython (>=3.1.46,<4.0.0)
Requires-Dist: launchpadlib (>=2.1.0,<3.0.0)
Requires-Dist: parse (>=1.20.2,<2.0.0)
Requires-Dist: python-debian (>=1.0.1,<2.0.0)
Requires-Dist: rich (>=14.2.0,<15.0.0)
Requires-Dist: ruff (>=0.15.0,<0.16.0)
Requires-Dist: typer (>=0.24.0,<0.25.0)
Requires-Dist: unidiff (>=0.7.5,<0.8.0)
Description-Content-Type: text/markdown

# sru-lint

Static analysis tool for Ubuntu SRU (Stable Release Update) patches — built to run in CI and generate human-friendly reports.

## Documentation

**For complete documentation, installation instructions, usage examples, and plugin development guides, visit:**

**[https://canonical-sru-lint.readthedocs-hosted.com/en/latest/](https://canonical-sru-lint.readthedocs-hosted.com/en/latest/)**

## Quick Start

```bash
# Install from snap (recommended)
snap install --edge sru-lint

# Or install with Poetry (for development)
git clone https://github.com/dargad/sru-lint.git
cd sru-lint
poetry install

# Check from a patches-unapplied git repo (the current directory)
sru-lint check .

# Check a patch file or URL
sru-lint check path/to/patch.debdiff  # if installed via snap
poetry run sru-lint check path/to/patch.debdiff  # if using Poetry
sru-lint check https://example.com/patch.diff

# Check from stdin
cat patch.debdiff | sru-lint check -  # if installed via snap
cat patch.debdiff | poetry run sru-lint check -  # if using Poetry

# List available plugins
sru-lint plugins  # if installed via snap
poetry run sru-lint plugins  # if using Poetry
```

## What it checks

- **Changelog entries** (valid distributions, LP bugs, version ordering)
- **DEP-3 patch format** compliance
- **Launchpad integration** (bug targeting, SRU templates, publication history)
- **Upload queue** conflicts
- And more via the plugin system...

## License

MIT License - see [LICENSE](LICENSE) for details.

