0
0
Fork 0
mirror of https://codeberg.org/forgejo/docs.git synced 2024-11-21 17:36:59 -05:00

supprt arch delete by arch

This commit is contained in:
ExplodingDragon 2024-09-27 09:44:59 +08:00
parent 8f373ae546
commit 577e8791c3
No known key found for this signature in database
GPG key ID: 8C351B970754EF16

View file

@ -7,7 +7,7 @@ Forgejo has a Arch Linux package registry, which can act as a fully working [Arc
## Upload packages
When uploading the package to Forgejo, you have to prepare package file with the `.pkg.tar.zst` extension You can use [curl](https://curl.se/) or any other HTTP client, Forgejo supports multiple [authentication schemes](https://docs.Forgejo.com/usage/authentication). The upload command will create 3 files: package, signature and desc file for the pacman database (which will be created automatically on request).
When uploading the package to Forgejo, you have to prepare package file with the `.pkg.tar.zst` extension. You can use [curl](https://curl.se/) or any other HTTP client, Forgejo supports multiple [authentication schemes](https://docs.Forgejo.com/usage/authentication). The upload command will create 3 files: package, signature and desc file for the pacman database (which will be created automatically on request).
The following command will upload arch package and related signature to Forgejo with basic authentification:
@ -72,7 +72,7 @@ The `DELETE` method will remove specific package version, and all package files
```sh
curl -X DELETE \
https://{domain}/api/packages/{owner}/arch/{group}/{package}/{version} \
https://{domain}/api/packages/{owner}/arch/{group}/{package}/{version}/{arch} \
--user your_username:your_token_or_password
```
@ -82,6 +82,7 @@ curl -X DELETE \
| `group` | [Repository](https://wiki.archlinux.org/title/Official_repositories), e.g. `os`, `extras` |
| `package` | Package name |
| `version` | Package version |
| `arch` | Package arch |
## Clients