@@ -7,50 +7,49 @@ Class {
77{ #category : #baselines }
88BaselineOfOsmoNetwork >> baseline: spec [
99 < baseline>
10-
11-
12- spec baseline: ' OsmoLogging' with: [
13- spec
14- repository: ' github://moiji-mobile/osmocom-logging:v7/source' ].
15- spec baseline: ' OsmoCore' with: [
16- spec
17- repository: ' github://moiji-mobile/osmocom-core:v8/source' ].
18- spec baseline: ' PetitParser' with: [
19- spec
20- repository: ' github://moosetechnology/PetitParser:v2.2.0/src' ;
21- loads: #( 'Core' ) ].
22-
23- spec
24- package: #OsmoNetworkPrimitives with: [
25- spec requires: #('OsmoLogging' ) . ];
26- package: #SCCP with: [
27- spec requires: #('OsmoLogging' ) . ];
28- package: #OpenBSCControl with: [
29- spec requires: #('OsmoLogging' 'PetitParser' ) . ];
10+ spec
11+ baseline: ' OsmoLogging'
12+ with:
13+ [ spec repository: ' github://moiji-mobile/osmocom-logging:v7/source' ].
14+ spec
15+ baseline: ' OsmoCore'
16+ with:
17+ [ spec repository: ' github://moiji-mobile/osmocom-core:v9/source' ].
18+ spec
19+ baseline: ' PetitParser'
20+ with: [ spec
21+ repository: ' github://moosetechnology/PetitParser:v2.2.0/src' ;
22+ loads: #('Core') ].
23+ spec
24+ package: #OsmoNetworkPrimitives
25+ with: [ spec requires: #('OsmoLogging') ];
26+ package: #SCCP with: [ spec requires: #('OsmoLogging') ];
27+ package: #OpenBSCControl
28+ with: [ spec requires: #('OsmoLogging' 'PetitParser') ];
3029 package: #OsmoTLV ;
31- package: #ISUP with: [
32- spec requires: #(#OsmoNetworkPrimitives #OsmoTLV ) . ];
33- package: #M2UA with: [
34- spec requires: #('OsmoCore' 'OsmoLogging' #OsmoNetworkPrimitives ) . ];
30+ package: #ISUP
31+ with: [ spec requires: #(#OsmoNetworkPrimitives #OsmoTLV) ];
32+ package: #M2UA
33+ with:
34+ [ spec requires: #('OsmoCore' 'OsmoLogging' #OsmoNetworkPrimitives) ];
3535 package: #M3UA ;
36- package: #IPA with: [
37- spec requires: #('OsmoLogging' #OsmoNetworkPrimitives ) . ];
38- package: #OsmoSocket with: [
39- spec requires: #(#IPA 'OsmoCore' ) . ];
40- package: #SCTP with: [
41- spec requires: #(#OsmoSocket ) . ];
42- package: #' MTP3-Codec' with: [
43- spec requires: #('OsmoCore' 'OsmoLogging' ) . ];
44- package: #' MTP3-LinkHandling' with: [
45- spec requires: #('OsmoCore' 'OsmoLogging' #'MTP3-Codec' ) . ];
46- package: #' NS-Core' with: [
47- spec requires: #(#SCCP #IPA #OsmoSocket #'MTP3-LinkHandling' ) . ].
48-
49- spec
50- group: ' default' with: #(#OsmoNetworkPrimitives #OsmoSocket #OsmoTLV #SCCP #'NS-Core' #SCTP #IPA ) ;
51- group: ' isup' with: #('default' #ISUP ) ;
52- group: ' m2ua' with: #('default' #M2UA ) ;
53- group: ' m3ua' with: #('default' #M3UA ) ;
54- group: ' control' with: #('default' #OpenBSCControl ) ;
55- group: ' all' with: #('default' 'isup' 'm2ua' 'm3ua' 'control' ) .
36+ package: #IPA
37+ with: [ spec requires: #('OsmoLogging' #OsmoNetworkPrimitives) ];
38+ package: #OsmoSocket with: [ spec requires: #(#IPA 'OsmoCore') ];
39+ package: #SCTP with: [ spec requires: #(#OsmoSocket) ];
40+ package: #' MTP3-Codec'
41+ with: [ spec requires: #('OsmoCore' 'OsmoLogging') ];
42+ package: #' MTP3-LinkHandling'
43+ with: [ spec requires: #('OsmoCore' 'OsmoLogging' #'MTP3-Codec') ];
44+ package: #' NS-Core'
45+ with: [ spec requires: #(#SCCP #IPA #OsmoSocket #'MTP3-LinkHandling') ].
46+ spec
47+ group: ' default'
48+ with:
49+ #(#OsmoNetworkPrimitives #OsmoSocket #OsmoTLV #SCCP #'NS-Core' #SCTP #IPA) ;
50+ group: ' isup' with: #('default' #ISUP) ;
51+ group: ' m2ua' with: #('default' #M2UA) ;
52+ group: ' m3ua' with: #('default' #M3UA) ;
53+ group: ' control' with: #('default' #OpenBSCControl) ;
54+ group: ' all' with: #('default' 'isup' 'm2ua' 'm3ua' 'control')
5655]
0 commit comments