summaryrefslogtreecommitdiff
path: root/src/schema.sql
diff options
context:
space:
mode:
authorJan Nieuwenhuizen <janneke@gnu.org>2016-09-15 23:15:54 +0200
committerMathieu Lirzin <mthl@gnu.org>2016-09-23 16:50:36 +0200
commit5ef0701f54482b83c433beb578715eb0d5321a74 (patch)
treec7d970a1b7c1a11f6005aa497fcfcc6d5d3c415f /src/schema.sql
parentfca42b010e56532fded536534ccb15b078a33e77 (diff)
downloadcuirass-5ef0701f54482b83c433beb578715eb0d5321a74.tar
cuirass-5ef0701f54482b83c433beb578715eb0d5321a74.tar.gz
base: Support tracking of a Guix package's git.
* src/schema.sql (Specifications): Add no_compile_p column. * src/cuirass/database.scm (db-add-specification) (db-get-specifications): Handle #:no-compile? property. * tests/database.scm (example-spec): Adapt. * src/cuirass/base.scm (process-specs): Skip compilation if #:no-compile?. Signed-off-by: Mathieu Lirzin <mthl@gnu.org>
Diffstat (limited to 'src/schema.sql')
-rw-r--r--src/schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/schema.sql b/src/schema.sql
index a545da5..f8042d1 100644
--- a/src/schema.sql
+++ b/src/schema.sql
@@ -11,7 +11,8 @@ CREATE TABLE Specifications (
-- The following columns are optional.
branch TEXT,
tag TEXT,
- revision TEXT
+ revision TEXT,
+ no_compile_p INTEGER
);
CREATE TABLE Stamps (