summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2007-04-30 02:31:30 +0000
committerMarius Mauch <genone@gentoo.org>2007-04-30 02:31:30 +0000
commit644a6284be66bc1648a930e7c19749741df09a5e (patch)
treeb18404d6f495deb758ec3a8cd8224742a9f78344 /pym
parentf281ed3e6888b50fdaaf615a0e6065b391fb9409 (diff)
downloadportage-644a6284be66bc1648a930e7c19749741df09a5e.tar.gz
portage-644a6284be66bc1648a930e7c19749741df09a5e.tar.bz2
portage-644a6284be66bc1648a930e7c19749741df09a5e.zip
- add new echo module for people who don't want any real logging
- add copyright header in elog modules and enable keyword substitution - enable save_summary and echo modules in make.globals svn path=/main/trunk/; revision=6458
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/elog/__init__.py5
-rw-r--r--pym/portage/elog/mod_custom.py5
-rw-r--r--pym/portage/elog/mod_echo.py30
-rw-r--r--pym/portage/elog/mod_mail.py4
-rw-r--r--pym/portage/elog/mod_mail_summary.py6
-rw-r--r--pym/portage/elog/mod_save.py5
-rw-r--r--pym/portage/elog/mod_save_summary.py5
-rw-r--r--pym/portage/elog/mod_syslog.py5
8 files changed, 60 insertions, 5 deletions
diff --git a/pym/portage/elog/__init__.py b/pym/portage/elog/__init__.py
index c6f6ec47c..be7eb5b66 100644
--- a/pym/portage/elog/__init__.py
+++ b/pym/portage/elog/__init__.py
@@ -1,3 +1,8 @@
+# elog/__init__.py - elog core functions
+# Copyright 2006-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
from portage.const import EBUILD_PHASES
from portage.exception import PortageException
from portage.process import atexit_register
diff --git a/pym/portage/elog/mod_custom.py b/pym/portage/elog/mod_custom.py
index 5fae84078..3433bbbf1 100644
--- a/pym/portage/elog/mod_custom.py
+++ b/pym/portage/elog/mod_custom.py
@@ -1,3 +1,8 @@
+# elog/mod_custom.py - elog dispatch module
+# Copyright 2006-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
import portage.elog_modules.mod_save, portage.process, portage.exception
def process(mysettings, cpv, logentries, fulltext):
diff --git a/pym/portage/elog/mod_echo.py b/pym/portage/elog/mod_echo.py
new file mode 100644
index 000000000..73928b437
--- /dev/null
+++ b/pym/portage/elog/mod_echo.py
@@ -0,0 +1,30 @@
+# elog/mod_echo.py - elog dispatch module
+# Copyright 2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+from portage.output import EOutput
+from portage.const import EBUILD_PHASES
+
+_items = {}
+def process(mysettings, cpv, logentries, fulltext):
+ _items[cpv] = logentries
+
+def finalize(mysettings):
+ printer = EOutput()
+ for cpv in _items.keys():
+ print
+ printer.einfo("Messages for package %s:" % cpv)
+ print
+ for phase in EBUILD_PHASES:
+ if not phase in _items[cpv]:
+ continue
+ for msgtype, msgcontent in _items[cpv][phase]:
+ fmap = {"INFO": printer.einfo,
+ "WARN": printer.ewarn,
+ "ERROR": printer.eerror,
+ "LOG": printer.einfo,
+ "QA": printer.ewarn}
+ for line in msgcontent:
+ fmap[msgtype](line.strip("\n"))
+ return
diff --git a/pym/portage/elog/mod_mail.py b/pym/portage/elog/mod_mail.py
index b84555e8c..4695e8ec4 100644
--- a/pym/portage/elog/mod_mail.py
+++ b/pym/portage/elog/mod_mail.py
@@ -1,5 +1,5 @@
-# portage.py -- core Portage functionality
-# Copyright 1998-2004 Gentoo Foundation
+# elog/mod_mail.py - elog dispatch module
+# Copyright 2006-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
diff --git a/pym/portage/elog/mod_mail_summary.py b/pym/portage/elog/mod_mail_summary.py
index 99c285642..a1f4ed57f 100644
--- a/pym/portage/elog/mod_mail_summary.py
+++ b/pym/portage/elog/mod_mail_summary.py
@@ -1,7 +1,7 @@
-# portage.py -- core Portage functionality
-# Copyright 1998-2004 Gentoo Foundation
+# elog/mod_mail_summary.py - elog dispatch module
+# Copyright 2006-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Id: mod_mail.py 3484 2006-06-10 22:38:44Z genone $
+# $Id$
import portage.mail, socket, os, time
from email.MIMEText import MIMEText as TextMessage
diff --git a/pym/portage/elog/mod_save.py b/pym/portage/elog/mod_save.py
index 2993b45db..eff40edd9 100644
--- a/pym/portage/elog/mod_save.py
+++ b/pym/portage/elog/mod_save.py
@@ -1,3 +1,8 @@
+# elog/mod_save.py - elog dispatch module
+# Copyright 2006-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
import os, time
from portage.data import portage_uid, portage_gid
diff --git a/pym/portage/elog/mod_save_summary.py b/pym/portage/elog/mod_save_summary.py
index eb453e587..aebc6f9aa 100644
--- a/pym/portage/elog/mod_save_summary.py
+++ b/pym/portage/elog/mod_save_summary.py
@@ -1,3 +1,8 @@
+# elog/mod_save_summary.py - elog dispatch module
+# Copyright 2006-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
import os, time
from portage.data import portage_uid, portage_gid
diff --git a/pym/portage/elog/mod_syslog.py b/pym/portage/elog/mod_syslog.py
index 77e1d4ea6..28aa15b3c 100644
--- a/pym/portage/elog/mod_syslog.py
+++ b/pym/portage/elog/mod_syslog.py
@@ -1,3 +1,8 @@
+# elog/mod_syslog.py - elog dispatch module
+# Copyright 2006-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
import syslog
from portage.const import EBUILD_PHASES