summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/models.py
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2013-11-14 10:52:59 +0000
committerAlexandru DAMIAN <alexandru.damian@intel.com>2013-11-15 12:17:09 +0000
commit3b113312fd0684e7433a288f97005ff5d0724c51 (patch)
treeff0e7e4d3b5f5343302de4d01722ae01ae58328e /bitbake/lib/toaster/orm/models.py
parent6f9c4d9778f001dc2ef4064de9f713a1c33db627 (diff)
downloadpoky-3b113312fd0684e7433a288f97005ff5d0724c51.tar.gz
bitbake: toaster: remove author field
The AUTHOR field in most recipes is not defined, or it's not really consistently set in the metadata, Also does it seem particularly useful. This patch removes the AUTHOR variable from the toaster system [YOCTO #5449] (Bitbake rev: da3ac049300be84defab7b32b0b99ab07c7d0a27) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/orm/models.py')
-rw-r--r--bitbake/lib/toaster/orm/models.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index f60d138fe9..1e82a65f43 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -207,7 +207,6 @@ class Recipe(models.Model):
207 licensing_info = models.TextField(blank=True) 207 licensing_info = models.TextField(blank=True)
208 homepage = models.URLField(blank=True) 208 homepage = models.URLField(blank=True)
209 bugtracker = models.URLField(blank=True) 209 bugtracker = models.URLField(blank=True)
210 author = models.CharField(max_length=100, blank=True)
211 file_path = models.FilePathField(max_length=255) 210 file_path = models.FilePathField(max_length=255)
212 211
213 212