Skip to content

Instantly share code, notes, and snippets.

@esben
Created August 12, 2011 09:59
Show Gist options
  • Save esben/1141806 to your computer and use it in GitHub Desktop.
Save esben/1141806 to your computer and use it in GitHub Desktop.
New OE-lite bakery.conf example
OESTACK_GITORIOUS = "git://gitorious.org/oe-lite"
OESTACK_PUSH = "ssh://dev.doredevelopment.dk/srv/public/git/oe-lite"
OESTACK += "meta/multimedia"
OESTACK .= ";srcuri=${OESTACK_GITORIOUS}/multimedia.git"
OESTACK .= ";push=${OESTACK_PUSH}/multimedia.git"
OESTACK += "meta/qt"
OESTACK .= ";srcuri=${OESTACK_GITORIOUS}/qt.git"
OESTACK .= ";push=${OESTACK_PUSH}/qt.git"
OESTACK += "meta/xorg"
OESTACK .= ";srcuri=${OESTACK_GITORIOUS}/xorg.git"
OESTACK .= ";push=${OESTACK_PUSH}/xorg.git"
OESTACK += "meta/base"
OESTACK .= ";srcuri=${OESTACK_GITORIOUS}/base.git"
OESTACK .= ";push=${OESTACK_PUSH}/base.git"
OESTACK .= ";remote=esben,git://gitorious.org/oe-lite/base.git"
OESTACK += "meta/core"
OESTACK .= ";srcuri=${OESTACK_GITORIOUS}/core.git"
OESTACK .= ";push=${OESTACK_PUSH}/core.git"
OESTACK .= ";remote=esben,git://gitorious.org/oe-lite/core.git"
OESTACK += "lib/fetching"
OESTACK .= ";srcuri=git://github.com/kergoth/fetching"
OESTACK += "lib/GitPython"
OESTACK .= ";srcuri=git://github.com/gitpython-developers/GitPython.git"
OESTACK .= ";pythonpath="
@esben
Copy link
Author

esben commented Aug 12, 2011

New style OE-lite bakery/repository configuration file example. Syntax similar to SRC_URI, and with option of mixing standardized "meta" layers with non-standard layers such as random Git modules, or non-standard layout OE-lite layers if somebody will ever like to do that.

All meta/* layers implies pythonpath=lib and oerecipes=/.oe

The oerecipes parameter should probably be changed to not imply recipes/ prefix, to not restrict layer layout in that way.

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