REGRESS -> TEST, more fun here

This commit is contained in:
espie 2013-03-11 11:53:51 +00:00
parent 85168fad4c
commit 660518085b
6 changed files with 16 additions and 16 deletions

View File

@ -1,7 +1,7 @@
# $OpenBSD: Makefile,v 1.48 2013/03/11 02:52:09 espie Exp $
# $OpenBSD: Makefile,v 1.49 2013/03/11 11:53:51 espie Exp $
CATEGORIES = databases
V = 2.5
V = 2.6
DISTNAME = sqlports-$V
DISTFILES =
COMMENT = sqlite database of ports

View File

@ -1,4 +1,4 @@
# $OpenBSD: Info.pm,v 1.6 2013/03/08 10:05:31 espie Exp $
# $OpenBSD: Info.pm,v 1.7 2013/03/11 11:53:51 espie Exp $
#
# Copyright (c) 2012 Marc Espie <espie@openbsd.org>
#
@ -65,7 +65,7 @@ our $vars = {
MODULES => 'ModulesVar',
MULTI_PACKAGES => 'MultiVar',
NO_BUILD => 'YesNoVar',
NO_REGRESS => 'YesNoVar',
NO_TEST => 'YesNoVar',
NOT_FOR_ARCHS => 'NotForArchListVar',
ONLY_FOR_ARCHS => 'OnlyForArchListVar',
PERMIT_DISTFILES_FTP=> 'YesKeyVar',
@ -76,8 +76,8 @@ our $vars = {
PKG_ARCH => 'ArchKeyVar',
PSEUDO_FLAVOR => 'AnyVar',
PSEUDO_FLAVORS => 'PseudoFlavorsVar',
REGRESS_DEPENDS => 'RegressDependsVar',
REGRESS_IS_INTERACTIVE => 'AnyVar',
TEST_DEPENDS => 'TestDependsVar',
TEST_IS_INTERACTIVE => 'AnyVar',
REVISION => 'AnyVar',
RUN_DEPENDS => 'RunDependsVar',
SEPARATE_BUILD => 'YesKeyVar',

View File

@ -1,5 +1,5 @@
#! /usr/bin/perl
# $OpenBSD: Inserter.pm,v 1.11 2012/05/20 11:06:07 espie Exp $
# $OpenBSD: Inserter.pm,v 1.12 2013/03/11 11:53:51 espie Exp $
#
# Copyright (c) 2006-2010 Marc Espie <espie@openbsd.org>
#
@ -263,7 +263,7 @@ our $c = {
Library => 0,
Run => 1,
Build => 2,
Regress => 3
Test => 3
};
sub convert_depends
@ -427,7 +427,7 @@ our $c = {
Library => 'L',
Run => 'R',
Build => 'B',
Regress => 'Regress'
Test => 'T'
};
sub add_error

View File

@ -1,4 +1,4 @@
# $OpenBSD: Var.pm,v 1.17 2013/03/08 10:04:01 espie Exp $
# $OpenBSD: Var.pm,v 1.18 2013/03/11 11:53:51 espie Exp $
#
# Copyright (c) 2006-2010 Marc Espie <espie@openbsd.org>
#
@ -302,9 +302,9 @@ package BuildDependsVar;
our @ISA = qw(DependsVar);
sub depends_type() { 'Build' }
package RegressDependsVar;
package TestDependsVar;
our @ISA = qw(DependsVar);
sub depends_type() { 'Regress' }
sub depends_type() { 'Test' }
# Stuff that gets stored in another table
package SecondaryVar;

View File

@ -41,7 +41,7 @@ stored in specialized tables, e.g.,:
PKG_ARCH
PSEUDO_FLAVOR
PSEUDO_FLAVORS
REGRESS_IS_INTERACTIVE
TEST_IS_INTERACTIVE
REVISION
SEPARATE_BUILD
SHARED_ONLY
@ -81,7 +81,7 @@ All depends are stored in a single table, including the type:
0 -> library
1 -> run
2 -> build
3 -> regress
3 -> test
with FULLDEPENDS the full text of the dependency, DEPENDSPATH the PKGPATH
we depend upon, PKGSPEC the spec we depend upon (if explicit), and REST
the rest.

View File

@ -36,7 +36,7 @@ holds all the information retrieved through various variables, e.g.,:
PKG_ARCH
PSEUDO_FLAVOR
PSEUDO_FLAVORS
REGRESS_IS_INTERACTIVE
TEST_IS_INTERACTIVE
REVISION
SEPARATE_BUILD
SHARED_LIBS
@ -78,7 +78,7 @@ All depends are stored in a single table, including the type:
R -> run
L -> lib
B -> build
Regress -> regress
T -> test
with FULLDEPENDS the full text of the dependency, DEPENDSPATH the PKGPATH
we depend upon, PKGSPEC the spec we depend upon (if explicit), and REST
the rest.