| 1 | = Developer information = |
| 2 | |
| 3 | == Package release tags == |
| 4 | |
| 5 | All plug-ins share a common subversion repository. This makes it problematic to create release tags for individual plug-ins following the usual guidelines for subversion usage. We do not expect to be able to provide complete plug-in releases but have a scheme for tagging of individual plug-ins. |
| 6 | |
| 7 | The tags branch will be a shadow directory hierarchy of the trunk branch down to package level. At this level tags are created for the package. For example, in the below structure |
| 8 | {{{ |
| 9 | baseplugins/branches |
| 10 | baseplugins/tags |
| 11 | baseplugins/tags/se/ |
| 12 | baseplugins/tags/se/lu/ |
| 13 | baseplugins/tags/se/lu/onk/ |
| 14 | baseplugins/tags/se/lu/onk/QPackage-0.1 |
| 15 | baseplugins/tags/se/lu/onk/QPackage-0.1.1 |
| 16 | baseplugins/tags/se/lu/onk/ReplicateError-1 |
| 17 | baseplugins/tags/se/lu/thep/ |
| 18 | baseplugins/tags/se/lu/thep/wenni-0.1 |
| 19 | baseplugins/tags/se/lu/thep/wenni-0.2 |
| 20 | baseplugins/trunk |
| 21 | baseplugins/trunk/se/ |
| 22 | baseplugins/trunk/se/lu/ |
| 23 | baseplugins/trunk/se/lu/onk/ |
| 24 | baseplugins/trunk/se/lu/onk/Qpackage |
| 25 | baseplugins/trunk/se/lu/onk/ReplicateError |
| 26 | baseplugins/trunk/se/lu/thep/ |
| 27 | baseplugins/trunk/se/lu/thep/wenni |
| 28 | }}} |
| 29 | There are five tags `QPackage-0.1`, `QPackage-0.1.1`, `ReplicateError-1`, `wenni-0.1`, and `wenni-0.2'. These are created in the same way as tags are created in subversion: |
| 30 | {{{ |
| 31 | svn copy http://lev.thep.lu.se/repository/baseplugins/trunk/se/lu/onk/QPackage \ |
| 32 | http://lev.thep.lu.se/repository/baseplugins/tags/se/lu/onk/QPackage-0.1 \ |
| 33 | -m "Tagging release 0.1 of se.lu.onk.QPackage." |
| 34 | }}} |
| 35 | |
| 36 | Branches can be treated correspondingly. |