# drserv **Repository Path**: mirrors_spotify/drserv ## Basic Information - **Project Name**: drserv - **Description**: RESTful service for publishing packages to debian repositories - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README drserv is an authenticated HTTP API for publishing .deb package to a repo ## API Usage This service makes one endpoint available: ``` /v1/publish/{major.dist}/{minor.dist}/{component}/{filename.deb} ``` `major.dist` indicates the code name of the target Debian type distribution, a string such as `squeeze` or `trusty`. `minor.dist` is a somewhat special concept where different users of a repository for a specific upstream Debian type distribution wants slightly different versions of packages. Typical values of this part is `stable`, `testing` or `unstable`. `component` corresponds to the component concept in the upstream structure as documented in the [RepositoryFormat] and would be a string such as `main` or `non-free`. The content of the deb file to be published is to be provided as POST body data. [RepositoryFormat]: https://wiki.debian.org/RepositoryFormat