aboutsummaryrefslogtreecommitdiffstats
path: root/lib
AgeCommit message (Collapse)Author
2014-12-19package_srpm: replace base_do_configure with a stubRoss Burton
base_do_configure() simply does a clean of an existing build tree, so doesn't serve any purpose in spec files. Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-12-19package_srpm: Add srpm OVERRIDE when translatingRoss Burton
Add "srpm" to OVERRIDES when archiving and translating so that translation-specific modifications can be made to recipes. Based on a series of patches by Patrick Ohly. Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-12-16srpm_utils: replace systemd_unitdirRoss Burton
The Tizen RPM macro %{_unitdir} is the *system* unit directory, so this has to be expanded to the parent of that directory. Ugly, but it works. Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-12-15fix multilib suppressionPatrick Ohly
Replacing oe_multilib_header with an empty function leads to a shell syntax error. A function must have at least one command, so replace with : instead. Signed-off-by: Ross Burton <ross.burton@intel.com>
2014-12-13package_srpm: move clean_data() to a Python moduleRoss Burton
The reference to ${EXTRA_OECONF} in the replacement autotools_do_configure can't be expanded until we want it to, but that's tricky/ugly if it is in the bbclass. Solve this by starting to move code to a new Python helper module. Signed-off-by: Ross Burton <ross.burton@intel.com>