added PKGBUILD

This commit is contained in:
Oscar Krause 2022-12-28 15:24:04 +01:00
parent 837721fd7b
commit 12f661707f
2 changed files with 36 additions and 4 deletions

View File

@ -15,8 +15,7 @@ build:docker:
- docker build . --tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF}
- docker push ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF}
build:package:
# debian:bullseye-slim
build:apt:
image: debian:bookworm-slim # just to get "python3-jose" working
stage: build
before_script:
@ -42,6 +41,16 @@ build:package:
paths:
- build/build.deb
build:pamac:
image: archlinux:base-devel
stage: build
rules:
- if: $CI_COMMIT_BRANCH == "archlinux-makepkg"
script:
- ls -lah
- makepkg
- ls -lah
test:
image: python:3.10-slim-bullseye
stage: test
@ -60,7 +69,7 @@ test:
.test:linux:
stage: test
needs:
- job: build:package
- job: build:apt
artifacts: true
variables:
DEBIAN_FRONTEND: noninteractive
@ -130,7 +139,7 @@ deploy:debian:
- DEBIAN/**/*
- app/**/*
needs:
- job: build:package
- job: build:apt
artifacts: true
before_script:
- apt-get update -qq && apt-get install -qq -y curl lsb-release

23
PKGBUILD Normal file
View File

@ -0,0 +1,23 @@
# Maintainer: Oscar Krause <oscar.krause@collinwebdesigns.de>
pkgname=fastapi-dls
pkgver=1.0.0
pkgrel=3
pkgdesc="Minimal Delegated License Service (DLS)."
arch=('any')
url="https://git.collinwebdesigns.de/oscar.krause/fastapi-dls"
#license=('MIT')
depends=('python3' 'python-fastapi' 'uvicorn' 'python-dotenv' 'python-dateutil' 'python-jose' 'python-sqlalchemy' 'python-pycryptodome' 'python-markdown' 'openssl')
#source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
#sha256sums=('...')
check() {
cd "$pkgname-$pkgver"
python3 "$pkgname.py" --version
}
package() {
cd "$pkgname-$pkgver"
install -m 755 -TD "$pkgname.py" "$pkgdir/usr/bin/$pkgname"
install -m 644 -TD "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
install -m 644 -TD "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}