Coverage report: /home/ellis/comp/core/app/packy/apkbuild.lisp
Kind | Covered | All | % |
expression | 0 | 8 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; apkbuild.lisp --- APKBUILD file support
7
;; ref: https://wiki.alpinelinux.org/wiki/APKBUILD_Reference
10
(in-package :packy/apkbuild)
12
(defparameter *apkbuild-filename* "APKBUILD")
14
(defclass apkbuild (package-id)
27
(defmethod prepare-package ((self apkbuild)))
28
(defmethod build-package ((self apkbuild)))
29
(defmethod check-package ((self apkbuild)))
30
(defmethod package-version ((self apkbuild)))
31
(defmethod pack ((self apkbuild)))