Skip to content

Commit

Permalink
Keep old besaline as deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Mar 1, 2023
1 parent 7702fae commit c881227
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
"
Description
--------------------
One line summary. For example, ""I represent a paragraph of text"".
Three sentences about my main responsibilities - what I do, what I know.
State my main collaborators and one line about how I interact with them.
Public API and Key Messages
--------------------
- #
- #
- #
Examples
--------------------
Internal Representation and Key Implementation Points.
--------------------
"
Class {
#name : #BaselineOfPolyMathDataStructures,
#superclass : #BaselineOf,
#category : #BaselineOfPolyMathDataStructures
}

{ #category : #testing }
BaselineOfPolyMathDataStructures class >> isDeprecated [
^ true
]

{ #category : #baselines }
BaselineOfPolyMathDataStructures >> baseline: spec [

<baseline>
spec for: #common do: [ "Packages"
spec
package: 'Math-Vector';
package: 'Math-Matrix' with: [ spec requires: #( 'Math-Vector' ) ];
package: 'Math-Vector-Tests' with: [ spec requires: #( 'Math-Vector' ) ];
package: 'Math-Matrix-Tests' with: [ spec requires: #( 'Math-Matrix' ) ].

spec
group: 'Core' with: #( 'Math-Vector' 'Math-Matrix' );
group: 'Tests' with: #( 'Math-Vector-Tests' 'Math-Matrix-Tests' ) ].

spec for: #( #'pharo9.x' #'pharo10.x' ) do: [
spec
package: 'Math-Matrix' with: [ spec requires: #( 'Math-DataStructures-Pharo11' ) ];
package: 'Math-DataStructures-Pharo11' ]
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"
Please comment package here
"
Class {
#name : #ManifestBaselineOfPolyMathDataStructures,
#superclass : #PackageManifest,
#category : #'BaselineOfPolyMathDataStructures-Manifest'
}

{ #category : #testing }
ManifestBaselineOfPolyMathDataStructures class >> isDeprecated [

^ true
]
1 change: 1 addition & 0 deletions src/BaselineOfPolyMathDataStructures/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #BaselineOfPolyMathDataStructures }

0 comments on commit c881227

Please sign in to comment.