summaryrefslogtreecommitdiff
path: root/packages
AgeCommit message (Collapse)AuthorFiles
2007-10-06rename compulab-pxa270 machine to cm-x270Cliff Brake2
2007-10-06llvm: commit WIP hacks to keep holger busyKoen Kooi5
2007-10-06openmoko-appmanager2: add itKoen Kooi1
2007-10-06fpdf: r0 Initial releaseShane Volpe2
2007-10-06webkit-gtk: add unstage task till Holger fixes qmakeKoen Kooi3
2007-10-06gcc 4.2.1: make maverick stuff ep93xx specificKoen Kooi2
2007-10-05gtk-sharp 2.10: add packageHenryk Ploetz3
2007-10-05merge of 'aac60b186b977130a688c4d00bfde913fb6221eb'Leon Woestenberg267
and 'f42403739ba7106ebfe92b3af59bf9c81b54f06d'
2007-10-05fastcgi: Disable parallel build, it's brokenLeon Woestenberg1
2007-10-05lighttpd: split plugin modules into separate packages.Leon Woestenberg1
2007-10-04ipkg: check in missing patchKoen Kooi1
2007-10-04ipkg: fix long filenamesHenryk Ploetz1
2007-10-04argtable 2.7: mv to packages, and fix 2.7 version info in recipeCliff Brake2
2007-10-03merge of '841a5712bf3e160a32fddc18de65062237b46ed6'Philip Balister1
and 'f73119cc933563eddde899dd80930c0dfb4625e3'
2007-10-03gumstix-verdex : Add support for wired network interface on netwifimicroSD card.Philip Balister1
2007-10-03mono 1.2.5.1: patch genmdesc.pl to use cpp from staging instead of hostHenryk Ploetz2
2007-10-03mono 1.2.5.1: add perl-native to DEPENDSCliff Brake3
2007-10-03merge of '4ea5a9aef34545de02877a14b307a17a78e03939'Cliff Brake3
and '886aada8adfc803f178de9d934a313ed503451e9'
2007-10-03mono: drop old partially finished versions of monoCliff Brake6
2007-10-03mono 1.2.5.1: disable parallel make due to build issues in the MCS treeCliff Brake2
2007-10-03uboot/u-boot-mkimage-openmoko-native_oe.bb : make build include dirs beGraeme Gregory2
before system dirs to we dont pick up /usr/include and /usr/local/include when we dont want to.
2007-10-03linux/linux-openmoko_2.6.22.5.bb : version bump to get new defconfig thatGraeme Gregory1
allows same kernel on GTA01/2
2007-10-03linux/linux-openmoko/defconfig-2.6.22.5-fic-gta0? : make both of theseGraeme Gregory2
defconfigs the same. The aim of OM kernel is to boot on both devices and now it does.
2007-10-03openmoko2/openmoko-theme-standard2_svn.bb : remove creation of gtkrcGraeme Gregory1
on request of cwiiis <cwiiis> XorA: Hi - could you remove the creation of /etc/gtk-2.0/gtkrc from packages/openmoko2/openmoko-theme-standard2_svn.bb please? It breaks setting the theme and as far as I can tell, isn't necessary
2007-10-03mplayer/mplayer_svn.bb : disable imageon as building is brokenGraeme Gregory1
2007-10-03mplayer: depend on xspKoen Kooi1
2007-10-03ixp4xx-npe: correct download link and instructionsKoen Kooi1
2007-10-03openmoko-panel-gsm: depend on libnotifyKoen Kooi1
2007-10-03merge of '47c30ebda2c1ad0df303493ea5a7b149455d8202'OpenEmbedded Project1
and '49ebc80978a5a98291bc76a35b098b6ef4e9d24d'
2007-10-03portmap: depend on fakeroot-native, closes #3016Russ Ferriday1
2007-10-03linux/linux-rp_2.6.22.bb : re-add the w100-extmem patch so that XimageonGraeme Gregory1
works again.
2007-10-02xorg-xserver/xserver-kdrive-imageon_1.2.0.bb : enable built in fontsGraeme Gregory1
so it will start
2007-10-02merge of '86c3bb401cff2bd54526bee645900700122e1549'Philip Balister21
and 'cd2d09bd89f1169ae4ec847af474c0e14580178d'
2007-10-02wifistix : Update conf file with new device name.Philip Balister1
2007-10-02wifistix : Change wifistix wireless device name from mwlan to wlan. Philip Balister1
2007-10-02merge of '6d07e119d774985e157fc9a56bb59bfbe0dcec50'Philip Balister21
and '7604e2e8a0c76d28ec378a7800c3e1a42b335da5'
2007-10-02wifistix-modules : Fix quoting in EXTRA_OEMAKE.Philip Balister1
2007-10-02mono 1.2.5.1: added mono.bbclass, many changes required for packagingHenryk Ploetz5
New file: packages/mono/mono-mcs-intermediate_1.2.5.1.bb Compiles mono in native mode with standard prefix, then tars up the resulting tree and puts the tarfile into staging New file: packages/mono/mono_files.py Automatically generated using collect-path.py (attached to this mail) and contains a list that maps file patterns to package names (and contained assemblies, see below). New file: classes/mono.bbclass Has a helper function for the list that maps file patterns to package names and assemblies (see below). Also has a function mono_do_clilibs and inserts that function into PACKAGEFUNCS. This function calls mono_find_provides_and_requires which finds out (through calls to monodis --assembly and monodis --assemblyref) which assemblies are provided and required by a particular package. mono_do_clilibs then puts the information about provided assemblies into ${STAGING_DIR}/clilibs/${packagename}.list and information about the required packages into ${PKGDEST}/{packagename}.clilibdeps where it will later be picked up by the modified read_shlibdeps. Originally I had dependency resolution through the partial list in mono_files.py but obviously this doens't scale, so I implemented the new method with mono_do_clilibs. The benefit is now that I don't really need the extra information in mono_files.py anymore and can in principle get rid of mono_get_file_table and related code. Instead it should be possible to modify collect-paths.py to output bitbake .inc code (e.g. PACKAGES = "..." and a whole lot of FILES_... = "...") instead of python code. There's still the minor problem of how to handle the .mdb files, that's why I didn't implement it yet but instead opted for an approach that I knew would work. (Debian just puts the .mdb files into the individual packages, while I would argue that they do belong into corresponding -dbg packages.) Modified file: classes/package.bbclass In read_shlibdeps I folded the two identical code blocks dealing with *.shlibdeps and *.pcdeps into one and added *.clilibdeps (generated by mono_do_clilibs above). Modified file: packages/mono/mono_1.2.5.1.bb Add the mono-mcs-intermediate workaround. Add a whole lot of python code in populate_packages_prepend in order to split up the packages based on information from mono_files.py (via mono.bbclass' mono_get_file_table). As I said above a lot of this code can hopefully be replaced in the future.
2007-10-02linux.inc: replace == with = to make posix shell compliantCliff Brake1
2007-10-02merge of '1e1adf51dc9360eaaa91db46f1ad5ca664d7a0cc'Philip Balister2
and 'a0d6cd0bb1fc7d9eba19c1ed2eb1b84f6eb001c9'
2007-10-02wifistix-module : Clean up bb file, add configuration file.Philip Balister2
2007-10-02xorg-xserver/xserver-kdrive-1.2.0/kdrive-imageon.patch : drop duplicate oldGraeme Gregory1
patch
2007-10-02hildon-1: update PVKoen Kooi1
2007-10-02fontconfig: stage nokia device table headerKoen Kooi1
2007-10-02libhildonhelp: correct DEPENDSKoen Kooi1
2007-10-02merge of '35958473cb3e7c22ae3b948f47dcd57d676d22a0'Koen Kooi4
and 'dd9786d58f303cdd2d0ff136859e41e1b6558b66'
2007-10-02libhildonfm: add 1.9.41 works against a stock gtk+!Koen Kooi3
2007-10-02gtk-2.10.inc: add hack for maemo softwareKoen Kooi1
2007-10-02merge of '528c70fd35c4abbbc5ca2d29a08877e037f09e69'Graeme Gregory1
and 'ece94f3cd93d33253efe66ddd94e233b026e7d47'
2007-10-02openmoko2/openmoko-dates2_svn.bb : version bump to latest for thomasGraeme Gregory1