bitbake: notes about files not bein in any package

Christian Rüb christian.rueb at gmx.net
Sun Aug 9 22:00:20 CEST 2009


Hi,

I created the following bb recipe [1], but always get the following notes [2], although package divetools-ab-samples contains the mentioned files (unpacked for test).
The .debug files are fine - I do not want to package them.
Can anyone help me out why this note comes and how to correct it?
I am using OE setup for SHR unstable created by their Makefile if that is of any interest.

Thanks,
 Christian

[1]
DESCRIPTION = "Divetools read data from Suunto DCs."
PN = divetools-ab
SECTION = "x11/applications"
PRIORITY = "optional"
HOMEPAGE = "http://www.acs.uni-duesseldorf.de/~becka/download/dive/"
LICENSE = "GPL"
PV=0.0.4
PR="r4"

SRC_URI = "http://www.acs.uni-duesseldorf.de/~becka/download/dive/dt_ab-${PV}.tar.gz \
file://files/001_usbserial.patch;patch=0"

S = "${WORKDIR}/dt_ab-${PV}/"
SAMPLEDIR = "/divetools/samples/"

do_configure() {
        echo "nothing to configure"
}

do_compile() {
        oe_runmake clean
        oe_runmake
}

do_install() {
        install -d ${D}${bindir}
        install -d "${D}${datadir}${SAMPLEDIR}/dumps"

        oe_runmake install INSTALL_BASE=${D}/usr/ INSTALL_ETC=${D}/etc/divetools
        cp ${S}/sample.dump "${D}${datadir}${SAMPLEDIR}/dumps/stinger.dump"
        cp ${S}/sample_dump/* "${D}${datadir}${SAMPLEDIR}/dumps/"
}

PACKAGES = "${PN} ${PN}-doc ${PN}-samples"

FILES_${PN} += "${bindir}/*"
CONFFILES_${PN} += "/etc/divetools/mixfillrc /etc/divetools/udcf2texrc /etc/divetools/vyperlinkrc /etc/divetools/ppmautoenhancerc"

FILES_${PN}-samples += "${datadir}${SAMPLEDIR}/dumps/*"

[2]

NOTE: package divetools-ab-0.0.4-r4: task do_package: started                                                                                                                                       
NOTE: the following files were installed but not shipped in any package:                                                                                                                            
NOTE:   /usr/share/divetools/samples/dumps/vyper.dump                                                                                                                                               
NOTE:   /usr/share/divetools/samples/dumps/spyder.dump                                                                                                                                              
NOTE:   /usr/share/divetools/samples/dumps/stinger.dump                                                                                                                                             
NOTE:   /usr/share/divetools/samples/dumps/vytec.dump                                                                                                                                               
NOTE:   /usr/share/divetools/samples/dumps/mosquito.dump                                                                                                                                            
NOTE:   /usr/bin/.debug/mixfill                                                                                                                                                                     
NOTE:   /usr/bin/.debug/udcf2tex                                                                                                                                                                    
NOTE:   /usr/bin/.debug/ppmautoenhance                                                                                                                                                              
NOTE:   /usr/bin/.debug/vyper2udcf                                                                                                                                                                  
NOTE:   /usr/bin/.debug/vyperlink



More information about the devel mailing list