Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

means for adding repository to package from MetacelloToolBox #157

Open
GoogleCodeExporter opened this issue Mar 24, 2015 · 3 comments
Open

Comments

@GoogleCodeExporter
Copy link

see conversation:

  http://forum.world.st/Releasing-a-version-td4165256.html

specifically:

  http://forum.world.st/Releasing-a-version-tp4165256p4165623.html

Original issue reported on code.google.com by [email protected] on 6 Dec 2011 at 6:57

@GoogleCodeExporter
Copy link
Author

Original comment by [email protected] on 6 Dec 2011 at 7:31

  • Changed title: means for adding repository to package from MetacelloToolBox
  • Added labels: Type-Feature
  • Removed labels: Type-Defect

@GoogleCodeExporter
Copy link
Author

Original comment by [email protected] on 18 Jan 2012 at 7:04

  • Added labels: Milestone-1.0-beta.32
  • Removed labels: ****

@GoogleCodeExporter
Copy link
Author

From Issue 158, the method MetacelloTooBox 
class>>modifyVersion:section:for:repository:requiredProjects:packages:dependenci
es:includes:files:repositories:preLoadDoIts:postLoadDoIts:supplyingAnswers:group
s: can also be used to add a repository.

In MetacelloTooBoxAPITestCase>>testComplexModifyBaseline, the following was 
used to dd a package and dependency to version '1.1-baseline':

    MetacelloToolBox
        modifyVersion: '1.1-baseline'
        section: #'common'
        for: self configurationName asString
        repository: nil
        requiredProjects: #()
        packages: #('GoferFoo')
        dependencies: {('GeauxFaux' -> #('GoferFoo'))}
        includes: #()
        files: #()
        repositories: #()
        preLoadDoIts: #()
        postLoadDoIts: #()
        supplyingAnswers: #()
        groups: #().

To add a repository for a particular package (say GoferFoo) you would do the 
following:


    MetacelloToolBox
        modifyVersion: '1.1-baseline'
        section: #'common'
        for: self configurationName asString
        repository: nil
        requiredProjects: #()
        packages: #(')
        dependencies: #()
        includes: #()
        files: #()
        repositories: {('GoferFoo' -> #('http://www.squeaksource.com/CommandShell'))}
        preLoadDoIts: #()
        postLoadDoIts: #()
        supplyingAnswers: #()
        groups: #().

Original comment by [email protected] on 25 Jan 2012 at 10:18

  • Added labels: ****
  • Removed labels: ****

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant