Initial commit

This commit is contained in:
Miles Ward 2024-06-07 17:16:16 -07:00
commit fffec19b15
2 changed files with 59 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = todo-or-not
pkgdesc = a simple tool that checks your project for TODOs and FIXMEs
pkgver = 0.10.15
pkgrel = 1
url = https://github.com/Start-Out/todo-or-not
arch = any
license = GPL3
makedepends = python-poetry
depends = python
depends = python-typer
depends = python-tqdm
source = https://github.com/Start-Out/todo-or-not/archive/refs/tags/v0.10.15.tar.gz
sha256sums = 3abd797c8589139407ee3ec3ce9a7bda8b56210eb6ef4b8c1a6ca95894d2eedd
pkgname = todo-or-not

44
PKGBUILD Normal file
View file

@ -0,0 +1,44 @@
# Maintainer: Trumpetrespas (Please comment on the package to contact me)
pkgname=todo-or-not
_name=${pkgname#-python}
pkgver=0.10.15
pkgrel=1
epoch=
pkgdesc="a simple tool that checks your project for TODOs and FIXMEs"
arch=(any)
url="https://github.com/Start-Out/todo-or-not"
license=('GPL3')
groups=()
depends=(python python-typer python-tqdm)
makedepends=(python-poetry)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/Start-Out/todo-or-not/archive/refs/tags/v${pkgver}.tar.gz")
noextract=()
sha256sums=(3abd797c8589139407ee3ec3ce9a7bda8b56210eb6ef4b8c1a6ca95894d2eedd)
validpgpkeys=()
prepare() {
cd "$pkgname-$pkgver"
}
build() {
cd "$pkgname-$pkgver"
poetry build
}
check() {
cd "$pkgname-$pkgver"
}
package() {
cd "$pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}