Difference between revisions of "Overlay talk:Flora"
(→Using Flora as an overlay: new section) |
|||
| Line 21: | Line 21: | ||
== Using Flora as an overlay == | == Using Flora as an overlay == | ||
| − | + | --[[User:Jeanfrancis|JF]] 10:44, 11 August 2011 (MDT) | |
For now, packages in Flora that override Portage's package are not merged. This is the reason why one could want to use Flora as an overlay until this feature is added. | For now, packages in Flora that override Portage's package are not merged. This is the reason why one could want to use Flora as an overlay until this feature is added. | ||
Revision as of 16:44, 11 August 2011
--JF 14:03, 25 July 2011 (MDT)
I think that the git add and git commit commands that are listed in the release section are confusing. Adding files and committing is done after creating a new feature/hotfix, and before finishing it. Am I right? Here is the "flow" I used for my new feature :
- git-flow feature start <package-name>
- adding/editing folders/files
- git add <folder-name>
- git commit -m 'message'
- git-flow feature finish <package-name>
- git-flow release start <package-name>
- <Nothing?>
- git-flow release finish <package-name>
I think that the add/commit commands should be removed from the release explanation (or at least moved between the start and finish commands), and added when features and hotfixes are explained.
--golodhrim 15:04, 08/07/2011 (CEST)
already taken care of in the Daily work section :) Thanks for the hint...
Using Flora as an overlay
--JF 10:44, 11 August 2011 (MDT) For now, packages in Flora that override Portage's package are not merged. This is the reason why one could want to use Flora as an overlay until this feature is added.
Let's say that you have a Flora clone into /root/.git/flora. The following steps will set up Flora as an overlay.
If you use the 2008.0 profile:
- echo 'PORTDIR_OVERLAY="${PORTDIR_OVERLAY} /root/.git/flora"' >> /etc/make.conf
If you use the Funtoo 1.0 profile:
- echo '/root/.git/flora' >> /etc/portage/overlays
Then, we want to make sure that the Flora contributors' masks are set up :
- cd /etc/portage/package.mask
- ln -s /root/.git/flora/profiles/packages.mask/* .
Make sure when you update Flora that you check for any new file in /root/.git/flora/profiles/packages.mask/ and link them in your package.mask folder.
And you're done!