Difference between revisions of "Documentation/Nightly/Developers/Tutorials/BuildTestPackageDistributeExtensions"

From Slicer Wiki
Jump to: navigation, search
Line 12: Line 12:
 
* Consider also reading [https://github.com/Slicer/ExtensionsIndex/wiki/Extension-description-file Extension description file format]
 
* Consider also reading [https://github.com/Slicer/ExtensionsIndex/wiki/Extension-description-file Extension description file format]
  
=Requesting an extension version update=
+
= Requesting an extension version update {{updated}} =
  
{{note}} this procedure is still under discussion.
+
On your local fork, the idea is to create the following topic branches:
 +
* <code>update-<YourExtensionName></code> based of [https://github.com/Slicer/ExtensionsIndex/tree/master <code>master</code>] integration branch.
 +
* <code>update-<YourExtensionName>-4.2.0</code> based of [https://github.com/Slicer/ExtensionsIndex/tree/4.2.0 <code>4.2.0</code>] integration branch.
 +
 
 +
The following instruction describes how to contribute extension description file updates for an extension being built against slicer trunk.
  
 
* Update the master branch of both your local clone and your online ExtensionsIndex fork
 
* Update the master branch of both your local clone and your online ExtensionsIndex fork
Line 25: Line 29:
 
</pre>
 
</pre>
 
* Create a branch named update-<YourExtensionName> in the clone of your forked ExtensionsIndex
 
* Create a branch named update-<YourExtensionName> in the clone of your forked ExtensionsIndex
 +
<pre>
 +
git checkout -b update-<YourExtensionName>
 +
</pre>
 
* Regenerate the <YourExtensionName>.s4ext file by configuring your extension with CMake
 
* Regenerate the <YourExtensionName>.s4ext file by configuring your extension with CMake
 
* Commit the <YourExtensionName>.s4ext file to your cloned ExtensionIndex repository (provide a meaningful commit comment)
 
* Commit the <YourExtensionName>.s4ext file to your cloned ExtensionIndex repository (provide a meaningful commit comment)
 
* Push modifications to your ExtensionIndex fork on github
 
* Push modifications to your ExtensionIndex fork on github
 
* Submit a pull request to https://github.com/Slicer/ExtensionsIndex (provide a meaningful commit comment)
 
* Submit a pull request to https://github.com/Slicer/ExtensionsIndex (provide a meaningful commit comment)

Revision as of 14:14, 9 November 2012

Home < Documentation < Nightly < Developers < Tutorials < BuildTestPackageDistributeExtensions

Create a new extension and adding it to the extension index

See instructions on github

Obtain an API key to submit on the extension server

See instructions on github

Upload an extension in the experimental folder

See instructions on github

Contribute an extension description file

Requesting an extension version update   UPDATED

On your local fork, the idea is to create the following topic branches:

  • update-<YourExtensionName> based of master integration branch.
  • update-<YourExtensionName>-4.2.0 based of 4.2.0 integration branch.

The following instruction describes how to contribute extension description file updates for an extension being built against slicer trunk.

  • Update the master branch of both your local clone and your online ExtensionsIndex fork
git add upstream git://github.com/Slicer/ExtensionsIndex   # Add reference to the authoritative ExtensionsIndex
git fetch upstream                                         # Fetch change of the authoritative ExtensionsIndex
git checkout master                                        # Checkout master
git reset --hard upstream/master                           # Reset your local master branch using the authoritative master 
git push origin master                                     # Update the master branch of your online fork
  • Create a branch named update-<YourExtensionName> in the clone of your forked ExtensionsIndex
git checkout -b update-<YourExtensionName>
  • Regenerate the <YourExtensionName>.s4ext file by configuring your extension with CMake
  • Commit the <YourExtensionName>.s4ext file to your cloned ExtensionIndex repository (provide a meaningful commit comment)
  • Push modifications to your ExtensionIndex fork on github
  • Submit a pull request to https://github.com/Slicer/ExtensionsIndex (provide a meaningful commit comment)