File: README.md

package info (click to toggle)
lintian-brush 0.168
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,304 kB
  • sloc: makefile: 888; xml: 119; python: 80; sh: 69; javascript: 3
file content (35 lines) | stat: -rw-r--r-- 2,446 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# debian-codemods

This repository contains a collection of codemods (code modifications)
specifically designed for Debian packaging and development. These codemods can
help automate common tasks, improve code quality, and ensure compliance with
Debian policies.

## Subprojects

* [lintian-brush](lintian-brush/README.md) - A tool to automatically fix common Lintian warnings and errors in Debian packages, as reported by [lintian](https://lintian.debian.org/)
* [debianize](debianize/README.md) - Create a Debian package from scratch for an upstream source tree
* [import-uncommitted](import-uncommitted/README.md) - A tool to import previously uncommitted changes into a Git repository, e.g. missing uploads
* [multiarch-hints](multiarch-hints/README.md) - A codemod to apply [multiarch hints](https://wiki.debian.org/MultiArch/Hints) to Debian packages
* [scrub-obsolete](scrub-obsolete/README.md) - Remove obsolete entries from Debian packaging files
* [transition-apply](transition-apply/README.md) - Apply package transitions

## Related projects

* [Debian Janitor](https://janitor.debian.net/) - An automated system that applies various codemods to Debian packages in an effort to improve the overall quality of the Debian archive, and then submits changes for review to the respective maintainers (directly pushing, or creating merge requests in e.g. Salsa)
* [debian-analyzer](https://github.com/jelmer/debian-analyzer) - Crate to analyze and modify Debian source packages, built on top of `deb822-rs`. Provides higher level abstractions, e.g. seamless support for `debcargo` packages

File format support:

* [deb822-rs](https://github.com/jelmer/deb822-rs) - Rust crates for losslessly editing various Debian control files
* [debian-changelog](https://github.com/jelmer/debian-changelog-rs) - Rust crate for parsing and modifying Debian changelogs
* [debian-copyright](https://github.com/jelmer/debian-copyright-rs) - Rust crate for parsing and modifying Debian copyright files
* [debian-watch](https://github.com/jelmer/debian-watch) - Rust crate for parsing and modifying Debian watch files

## Contributing

Contributions are very welcome! The easiest way to get started is probably
by following the [guide on writing more fixers for lintian-brush](lintian-brush/doc/fixer-writing-guide.rst).

See also [CONTRIBUTING.md](CONTRIBUTING.md) on general contribution guidelines, especially
regarding code style and what belongs where.