mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

gitignore the cache directory created by the http client the log file for tests is already set up as an absolute path, so no need to recompute the path (Bitbake rev: 80f525e5cbe83e0407ecddf84401d68213c6d5cf) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
57 lines
1.8 KiB
Python
Executable File
57 lines
1.8 KiB
Python
Executable File
#!/usr/bin/python
|
|
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
#
|
|
# Copyright (C) 2015 Alexandru Damian for Intel Corp.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
# Program to receive review requests by email and log tasks to backlog.txt
|
|
# Designed to be run by the email system from a .forward file:
|
|
#
|
|
# cat .forward
|
|
# |[full/path]/recv.py
|
|
|
|
from __future__ import print_function
|
|
import sys, config, shellutils
|
|
|
|
from email.parser import Parser
|
|
|
|
def recv_mail(datastring):
|
|
headers = Parser().parsestr(datastring)
|
|
return headers['subject']
|
|
|
|
def main():
|
|
lock_file = shellutils.lockfile(shellutils.mk_lock_filename(), retry=True)
|
|
|
|
if lock_file is None:
|
|
if config.DEBUG:
|
|
print("Concurrent script in progress, exiting")
|
|
sys.exit(1)
|
|
|
|
subject = recv_mail(sys.stdin.read())
|
|
|
|
subject_parts = subject.split()
|
|
if "[review-request]" in subject_parts:
|
|
task_name = subject_parts[subject_parts.index("[review-request]") + 1]
|
|
with open(config.BACKLOGFILE, "a") as fout:
|
|
line = "%s|%s\n" % (task_name, config.TASKS.PENDING)
|
|
fout.write(line)
|
|
|
|
shellutils.unlockfile(lock_file)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|