-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Packaging: Debian packaging machinery.
- Loading branch information
Showing
9 changed files
with
76 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
rpipins (1.0.0) UNRELEASED; urgency=medium | ||
|
||
* Initial Release | ||
|
||
-- Phil <[email protected]> Wed, 10 Apr 2024 21:03:39 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Source: rpipins | ||
Section: utils | ||
Priority: optional | ||
Maintainer: Phil <[email protected]> | ||
Rules-Requires-Root: no | ||
Build-Depends: | ||
debhelper-compat (= 13), python3, pybuild-plugin-pyproject | ||
Standards-Version: 4.6.2 | ||
X-Python3-Version: >= 3.7 | ||
Homepage: https://github.com/pinout-xyz/rpipins | ||
Vcs-Browser: https://github.com/pinout-xyz/rpipins | ||
Vcs-Git: https://github.com/pinout-xyz/rpipins.git | ||
|
||
Package: rpipins | ||
Architecture: all | ||
Depends: | ||
${misc:Depends}, ${python3:Depends}, python3-rich | ||
Description: A command-line pinout for the Raspberry Pi 5 | ||
A beautiful GPIO pinout and pin function guide for the Raspberry Pi | ||
with live pin config, drive and level monitoring. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Files: | ||
debian/* | ||
Copyright: | ||
2024 Phil <[email protected]> | ||
License: MIT | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
. | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ --with=python3 --buildsystem=pybuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Bug-Database: https://github.com/pinout-xyz/rpipins/issues | ||
Bug-Submit: https://github.com/pinout-xyz/rpipins/issues/new | ||
Changelog: https://github.com/pinout-xyz/rpipins/blob/master/CHANGELOG.md | ||
# Documentation: https://github.com/pinout-xyz/rpipins/wiki | ||
Repository-Browse: https://github.com/pinout-xyz/rpipins | ||
Repository: https://github.com/pinout-xyz/rpipins.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
[build-system] | ||
requires = ["hatchling", "hatch-fancy-pypi-readme"] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "rpipins" | ||
dynamic = ["version", "readme"] | ||
dynamic = ["version"] | ||
description = "A command-line pinout for the Raspberry Pi Pico W" | ||
license = {file = "LICENSE"} | ||
requires-python = ">= 3.7" | ||
readme = {file = "README.md", content-type = "text/markdown"} | ||
authors = [ | ||
{ name = "Philip Howard", email = "[email protected]" }, | ||
] | ||
|
@@ -62,14 +63,6 @@ exclude = [ | |
"dist" | ||
] | ||
|
||
[tool.hatch.metadata.hooks.fancy-pypi-readme] | ||
content-type = "text/markdown" | ||
fragments = [ | ||
{ path = "README.md" }, | ||
{ text = "\n" }, | ||
{ path = "CHANGELOG.md" } | ||
] | ||
|
||
[tool.ruff] | ||
exclude = [ | ||
'.tox', | ||
|