summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcf-agent
AgeCommit message (Expand)Author
2020-02-15tcf-agent: Mangle arch for armebJeremy A. Puhlman
2020-01-19tcf-agent: Add LCL_STOP_SERVICES for powerpc64 LEKhem Raj
2018-11-13tcf-agent: Disable architecture-specific features for ARCAlexey Brodkin
2018-09-04tcf-agent: Disable non-building features on riscv64Khem Raj
2018-07-24tcf-agent: upgrade to 1.7.0Ross Burton
2018-03-11tcf-agent: refresh patchesRoss Burton
2018-01-29tcf-agent: update machine setting for aarch64 bigendian buildChunrong Guo
2017-11-09tcf-agent: latest upstream version is now knownAlexander Kanavin
2017-08-16selftest: fix distrodata.py to use per-recipe UPSTREAM_VERSION_UNKNOWN settingAlexander Kanavin
2017-06-12tcf-agent: Fix daemon terminationJan Kiszka
2017-06-12tcf-agent: kill with USR2 in systemd stopMartin Kelly
2017-06-06tcf-agent: correct CFLAGSJoe Slater
2017-05-10tcf-agent: enable default target debugging featuresGernot Hillier
2017-05-10tcf-agent: fix machine setting for arm64 buildGernot Hillier
2016-08-01tcf-agent: update to 1.4_neon_bugfix branchTim Orling
2016-01-22tcf-agent: Implement canonicalize_file_name() for musl as wellKhem Raj
2015-12-08package_regex.inc: split GITTAGREGEX entries into recipe filesAlexander Kanavin
2015-11-25tcf-agent: obey LDFLAGSChristopher Larson
2015-07-24tcf-agent: Update to version 1.3Randy Witt
2014-07-03meta: fix no newline at end of fileRobert Yang
2014-04-24tcf-agent: add systemd supportChen Qi
2014-02-02Revert "Add missing RDEPENDS of initscripts-functions"Chen Qi
2014-01-06Add missing RDEPENDS of initscripts-functionsChen Qi
2014-01-02Replace one-line DESCRIPTION with SUMMARYPaul Eggleton
2013-12-10meta/*: remove unnecessary patchesChong Lu
2013-11-27tcf-agent: add init.d/tcf-agent status commandLi Wang
2013-08-30remove the unnecessary protocol parametersJackie Huang
2013-05-16tcf-agent: Use common two-digit sequence numbers for init script linksStefan Herbrechtsmeier
2013-04-08tcf-agent: Use kill instead of killproc to stop agentIoana Grigoropol
2013-04-02tcf-agent: Don't download epl-v10.html just for LIC_FILES_CHKSUM validationMartin Jansa
2012-07-16Update proto -> protocol for recipesSaul Wold
2012-03-22tcf-agent: Using git repository instead of svn.Lianhao Lu
2012-02-26More quoting fixesMartin Jansa
2011-12-08OECore license fixes: meta/*Elizabeth Flanagan
2011-11-30PR Bump for OpenSSL 1.0Saul Wold
2011-08-16tcf-agent: add openssl into DEPENDSDexuan Cui
2011-07-25tcf-agent: upgrade to the latest stable revision 0.0+svnr1855Dexuan Cui
2011-05-27License Field Cleanup: Non-standard field namesBeth Flanagan
2011-05-12recpies: add Upstream-Status for multiple recipes' patchesDexuan Cui
2011-05-04poky-default-revisions: move the SRCREV to recipe fileYu Ke
2011-01-06recpies: use SRCPV instead of SRCREV for PVYu Ke
2010-09-01packages: Separate out most of the remaining packages into recipesRichard Purdie
>: for path in self._track_for_cleanup: if os.path.isdir(path): shutil.rmtree(path) if os.path.isfile(path): os.remove(path) self._track_for_cleanup = [] self.tearDownLocal() def tearDownLocal(self): pass # add test specific commands to the tearDown method. def add_command_to_tearDown(self, command): self.log.debug("Adding command '%s' to tearDown for this test." % command) self._extra_tear_down_commands.append(command) # add test specific files or directories to be removed in the tearDown method def track_for_cleanup(self, path): self.log.debug("Adding path '%s' to be cleaned up when test is over" % path) self._track_for_cleanup.append(path) # write to <builddir>/conf/selftest.inc def write_config(self, data): self.log.debug("Writing to: %s\n%s\n" % (self.testinc_path, data)) ftools.write_file(self.testinc_path, data) # append to <builddir>/conf/selftest.inc def append_config(self, data): self.log.debug("Appending to: %s\n%s\n" % (self.testinc_path, data)) ftools.append_file(self.testinc_path, data) # remove data from <builddir>/conf/selftest.inc def remove_config(self, data): self.log.debug("Removing from: %s\n\%s\n" % (self.testinc_path, data)) ftools.remove_from_file(self.testinc_path, data) # write to meta-sefltest/recipes-test/<recipe>/test_recipe.inc def write_recipeinc(self, recipe, data): inc_file = os.path.join(self.testlayer_path, 'recipes-test', recipe, 'test_recipe.inc') self.log.debug("Writing to: %s\n%s\n" % (inc_file, data)) ftools.write_file(inc_file, data) # append data to meta-sefltest/recipes-test/<recipe>/test_recipe.inc def append_recipeinc(self, recipe, data): inc_file = os.path.join(self.testlayer_path, 'recipes-test', recipe, 'test_recipe.inc') self.log.debug("Appending to: %s\n%s\n" % (inc_file, data)) ftools.append_file(inc_file, data) # remove data from meta-sefltest/recipes-test/<recipe>/test_recipe.inc def remove_recipeinc(self, recipe, data): inc_file = os.path.join(self.testlayer_path, 'recipes-test', recipe, 'test_recipe.inc') self.log.debug("Removing from: %s\n%s\n" % (inc_file, data)) ftools.remove_from_file(inc_file, data) # delete meta-sefltest/recipes-test/<recipe>/test_recipe.inc file def delete_recipeinc(self, recipe): inc_file = os.path.join(self.testlayer_path, 'recipes-test', recipe, 'test_recipe.inc') self.log.debug("Deleting file: %s" % inc_file) try: os.remove(inc_file) except OSError as e: if e.errno != errno.ENOENT: raise