From: "Brian Dolbec" <dolsen@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/portage:repoman commit in: pym/repoman/ Date: Mon, 21 Sep 2015 23:47:56 +0000 (UTC) [thread overview] Message-ID: <1442878966.5d91183c50d57d7ddb06721a64f2ae6f95b6aeea.dolsen@gentoo> (raw) commit: 5d91183c50d57d7ddb06721a64f2ae6f95b6aeea Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Sat Sep 19 02:59:11 2015 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Mon Sep 21 23:42:46 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=5d91183c repoman/actions.py: Split out the commit footer to a function pym/repoman/actions.py | 95 ++++++++++++++++++++++++++------------------------ 1 file changed, 49 insertions(+), 46 deletions(-) diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py index 1f70815..e9bf147 100644 --- a/pym/repoman/actions.py +++ b/pym/repoman/actions.py @@ -133,53 +133,8 @@ class Actions(object): sys.exit(1) commitmessage = commitmessage.rstrip() changelog_msg = commitmessage - portage_version = getattr(portage, "VERSION", None) - gpg_key = self.repoman_settings.get("PORTAGE_GPG_KEY", "") - dco_sob = self.repoman_settings.get("DCO_SIGNED_OFF_BY", "") - if portage_version is None: - sys.stderr.write("Failed to insert portage version in message!\n") - sys.stderr.flush() - portage_version = "Unknown" - - report_options = [] - if self.options.force: - report_options.append("--force") - if self.options.ignore_arches: - report_options.append("--ignore-arches") - if self.scanner.include_arches is not None: - report_options.append( - "--include-arches=\"%s\"" % - " ".join(sorted(self.scanner.include_arches))) - - if self.vcs_settings.vcs == "git": - # Use new footer only for git (see bug #438364). - commit_footer = "\n\nPackage-Manager: portage-%s" % portage_version - if report_options: - commit_footer += "\nRepoMan-Options: " + " ".join(report_options) - if self.repo_settings.sign_manifests: - commit_footer += "\nManifest-Sign-Key: %s" % (gpg_key, ) - if dco_sob: - commit_footer += "\nSigned-off-by: %s" % (dco_sob, ) - else: - unameout = platform.system() + " " - if platform.system() in ["Darwin", "SunOS"]: - unameout += platform.processor() - else: - unameout += platform.machine() - commit_footer = "\n\n" - if dco_sob: - commit_footer += "Signed-off-by: %s\n" % (dco_sob, ) - commit_footer += "(Portage version: %s/%s/%s" % \ - (portage_version, self.vcs_settings.vcs, unameout) - if report_options: - commit_footer += ", RepoMan options: " + " ".join(report_options) - if self.repo_settings.sign_manifests: - commit_footer += ", signed Manifest commit with key %s" % \ - (gpg_key, ) - else: - commit_footer += ", unsigned Manifest commit" - commit_footer += ")" + commit_footer = self.get_commit_footer() commitmessage += commit_footer broken_changelog_manifests = [] @@ -797,3 +752,51 @@ class Actions(object): expansion = {} return (mynew, mychanged, myremoved, no_expansion, expansion) + + def get_commit_footer(self): + portage_version = getattr(portage, "VERSION", None) + gpg_key = self.repoman_settings.get("PORTAGE_GPG_KEY", "") + dco_sob = self.repoman_settings.get("DCO_SIGNED_OFF_BY", "") + report_options = [] + if self.options.force: + report_options.append("--force") + if self.options.ignore_arches: + report_options.append("--ignore-arches") + if self.scanner.include_arches is not None: + report_options.append( + "--include-arches=\"%s\"" % + " ".join(sorted(self.scanner.include_arches))) + + if portage_version is None: + sys.stderr.write("Failed to insert portage version in message!\n") + sys.stderr.flush() + portage_version = "Unknown" + # Use new footer only for git (see bug #438364). + if self.vcs_settings.vcs in ["git"]: + commit_footer = "\n\nPackage-Manager: portage-%s" % portage_version + if report_options: + commit_footer += "\nRepoMan-Options: " + " ".join(report_options) + if self.repo_settings.sign_manifests: + commit_footer += "\nManifest-Sign-Key: %s" % (gpg_key, ) + if dco_sob: + commit_footer += "\nSigned-off-by: %s" % (dco_sob, ) + else: + unameout = platform.system() + " " + if platform.system() in ["Darwin", "SunOS"]: + unameout += platform.processor() + else: + unameout += platform.machine() + commit_footer = "\n\n" + if dco_sob: + commit_footer += "Signed-off-by: %s\n" % (dco_sob, ) + commit_footer += "(Portage version: %s/%s/%s" % \ + (portage_version, self.vcs_settings.vcs, unameout) + if report_options: + commit_footer += ", RepoMan options: " + " ".join(report_options) + if self.repo_settings.sign_manifests: + commit_footer += ", signed Manifest commit with key %s" % \ + (gpg_key, ) + else: + commit_footer += ", unsigned Manifest commit" + commit_footer += ")" + return commit_footer
WARNING: multiple messages have this Message-ID (diff)
From: "Brian Dolbec" <dolsen@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/ Date: Mon, 21 Sep 2015 23:51:19 +0000 (UTC) [thread overview] Message-ID: <1442878966.5d91183c50d57d7ddb06721a64f2ae6f95b6aeea.dolsen@gentoo> (raw) Message-ID: <20150921235119.tcdAyD4Alr-uYoA9PmyD5ADcgZbfCTUQoXdFU3dqQwg@z> (raw) commit: 5d91183c50d57d7ddb06721a64f2ae6f95b6aeea Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Sat Sep 19 02:59:11 2015 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Mon Sep 21 23:42:46 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=5d91183c repoman/actions.py: Split out the commit footer to a function pym/repoman/actions.py | 95 ++++++++++++++++++++++++++------------------------ 1 file changed, 49 insertions(+), 46 deletions(-) diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py index 1f70815..e9bf147 100644 --- a/pym/repoman/actions.py +++ b/pym/repoman/actions.py @@ -133,53 +133,8 @@ class Actions(object): sys.exit(1) commitmessage = commitmessage.rstrip() changelog_msg = commitmessage - portage_version = getattr(portage, "VERSION", None) - gpg_key = self.repoman_settings.get("PORTAGE_GPG_KEY", "") - dco_sob = self.repoman_settings.get("DCO_SIGNED_OFF_BY", "") - if portage_version is None: - sys.stderr.write("Failed to insert portage version in message!\n") - sys.stderr.flush() - portage_version = "Unknown" - - report_options = [] - if self.options.force: - report_options.append("--force") - if self.options.ignore_arches: - report_options.append("--ignore-arches") - if self.scanner.include_arches is not None: - report_options.append( - "--include-arches=\"%s\"" % - " ".join(sorted(self.scanner.include_arches))) - - if self.vcs_settings.vcs == "git": - # Use new footer only for git (see bug #438364). - commit_footer = "\n\nPackage-Manager: portage-%s" % portage_version - if report_options: - commit_footer += "\nRepoMan-Options: " + " ".join(report_options) - if self.repo_settings.sign_manifests: - commit_footer += "\nManifest-Sign-Key: %s" % (gpg_key, ) - if dco_sob: - commit_footer += "\nSigned-off-by: %s" % (dco_sob, ) - else: - unameout = platform.system() + " " - if platform.system() in ["Darwin", "SunOS"]: - unameout += platform.processor() - else: - unameout += platform.machine() - commit_footer = "\n\n" - if dco_sob: - commit_footer += "Signed-off-by: %s\n" % (dco_sob, ) - commit_footer += "(Portage version: %s/%s/%s" % \ - (portage_version, self.vcs_settings.vcs, unameout) - if report_options: - commit_footer += ", RepoMan options: " + " ".join(report_options) - if self.repo_settings.sign_manifests: - commit_footer += ", signed Manifest commit with key %s" % \ - (gpg_key, ) - else: - commit_footer += ", unsigned Manifest commit" - commit_footer += ")" + commit_footer = self.get_commit_footer() commitmessage += commit_footer broken_changelog_manifests = [] @@ -797,3 +752,51 @@ class Actions(object): expansion = {} return (mynew, mychanged, myremoved, no_expansion, expansion) + + def get_commit_footer(self): + portage_version = getattr(portage, "VERSION", None) + gpg_key = self.repoman_settings.get("PORTAGE_GPG_KEY", "") + dco_sob = self.repoman_settings.get("DCO_SIGNED_OFF_BY", "") + report_options = [] + if self.options.force: + report_options.append("--force") + if self.options.ignore_arches: + report_options.append("--ignore-arches") + if self.scanner.include_arches is not None: + report_options.append( + "--include-arches=\"%s\"" % + " ".join(sorted(self.scanner.include_arches))) + + if portage_version is None: + sys.stderr.write("Failed to insert portage version in message!\n") + sys.stderr.flush() + portage_version = "Unknown" + # Use new footer only for git (see bug #438364). + if self.vcs_settings.vcs in ["git"]: + commit_footer = "\n\nPackage-Manager: portage-%s" % portage_version + if report_options: + commit_footer += "\nRepoMan-Options: " + " ".join(report_options) + if self.repo_settings.sign_manifests: + commit_footer += "\nManifest-Sign-Key: %s" % (gpg_key, ) + if dco_sob: + commit_footer += "\nSigned-off-by: %s" % (dco_sob, ) + else: + unameout = platform.system() + " " + if platform.system() in ["Darwin", "SunOS"]: + unameout += platform.processor() + else: + unameout += platform.machine() + commit_footer = "\n\n" + if dco_sob: + commit_footer += "Signed-off-by: %s\n" % (dco_sob, ) + commit_footer += "(Portage version: %s/%s/%s" % \ + (portage_version, self.vcs_settings.vcs, unameout) + if report_options: + commit_footer += ", RepoMan options: " + " ".join(report_options) + if self.repo_settings.sign_manifests: + commit_footer += ", signed Manifest commit with key %s" % \ + (gpg_key, ) + else: + commit_footer += ", unsigned Manifest commit" + commit_footer += ")" + return commit_footer
next reply other threads:[~2015-09-21 23:48 UTC|newest] Thread overview: 217+ messages / expand[flat|nested] mbox.gz Atom feed top 2015-09-21 23:47 Brian Dolbec [this message] 2015-09-21 23:51 ` [gentoo-commits] proj/portage:master commit in: pym/repoman/ Brian Dolbec -- strict thread matches above, loose matches on Subject: below -- 2016-05-03 9:33 [gentoo-commits] proj/portage:repoman " Brian Dolbec 2016-04-29 17:24 [gentoo-commits] proj/portage:master " Brian Dolbec 2016-04-28 15:05 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec 2016-04-29 17:24 [gentoo-commits] proj/portage:master " Brian Dolbec 2016-04-28 15:05 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec 2016-04-29 17:24 [gentoo-commits] proj/portage:master " Brian Dolbec 2016-04-26 14:47 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec 2016-04-28 15:05 Brian Dolbec 2016-04-27 5:22 Brian Dolbec 2016-04-27 5:22 Brian Dolbec 2016-04-27 5:22 Brian Dolbec 2016-04-26 18:08 Zac Medico 2016-04-25 15:32 Brian Dolbec 2016-04-25 15:32 Brian Dolbec 2016-04-25 15:32 Brian Dolbec 2016-04-21 16:54 Brian Dolbec 2016-04-21 16:54 Brian Dolbec 2016-04-21 16:54 Brian Dolbec 2016-04-21 16:54 Brian Dolbec 2016-04-17 15:42 Brian Dolbec 2016-04-16 20:00 Zac Medico 2016-03-15 19:00 Brian Dolbec 2016-03-12 18:10 Brian Dolbec 2016-03-12 18:10 Brian Dolbec 2016-03-12 18:10 Brian Dolbec 2016-03-11 0:41 Brian Dolbec 2016-03-11 0:41 Brian Dolbec 2016-03-11 0:41 Brian Dolbec 2016-03-07 21:53 Brian Dolbec 2016-03-07 21:53 Brian Dolbec 2016-03-07 21:53 Brian Dolbec 2016-02-01 7:55 Zac Medico 2016-02-01 7:21 Zac Medico 2016-01-31 20:03 Brian Dolbec 2016-01-31 20:03 Brian Dolbec 2016-01-31 20:03 Brian Dolbec 2016-01-30 8:00 Brian Dolbec 2016-01-30 8:00 Brian Dolbec 2016-01-30 8:00 Brian Dolbec 2016-01-30 6:58 Brian Dolbec 2016-01-30 6:58 Brian Dolbec 2016-01-30 6:58 Brian Dolbec 2016-01-29 5:01 Brian Dolbec 2016-01-29 5:01 Brian Dolbec 2016-01-29 5:01 Brian Dolbec 2016-01-27 23:15 Brian Dolbec 2016-01-27 23:15 Brian Dolbec 2016-01-27 23:15 Brian Dolbec 2016-01-23 1:42 Brian Dolbec 2016-01-23 1:42 Brian Dolbec 2016-01-23 1:42 Brian Dolbec 2016-01-22 20:55 Brian Dolbec 2016-01-22 20:55 Brian Dolbec 2016-01-22 20:55 Brian Dolbec 2016-01-21 19:42 Brian Dolbec 2016-01-21 19:42 Brian Dolbec 2016-01-21 19:15 Brian Dolbec 2016-01-21 18:30 Brian Dolbec 2016-01-21 18:30 Brian Dolbec 2016-01-18 19:23 Brian Dolbec 2016-01-18 19:23 Brian Dolbec 2016-01-11 8:01 Brian Dolbec 2016-01-11 8:01 Brian Dolbec 2016-01-11 6:31 Brian Dolbec 2016-01-11 6:31 Brian Dolbec 2016-01-11 6:31 Brian Dolbec 2016-01-10 20:17 Brian Dolbec 2016-01-10 20:17 Brian Dolbec 2016-01-10 20:17 Brian Dolbec 2016-01-10 3:26 Brian Dolbec 2016-01-10 3:26 Brian Dolbec 2016-01-10 3:26 Brian Dolbec 2016-01-06 4:21 Brian Dolbec 2016-01-06 4:21 Brian Dolbec 2015-12-30 23:38 Brian Dolbec 2015-09-21 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec 2015-09-21 23:47 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec 2015-09-21 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec 2015-09-21 23:47 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec 2015-09-21 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec 2015-09-21 23:47 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec 2015-09-21 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec 2015-09-21 23:47 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec 2015-09-21 23:51 [gentoo-commits] proj/portage:master " Brian Dolbec 2015-09-21 23:47 ` [gentoo-commits] proj/portage:repoman " Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-21 23:47 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 2:06 Brian Dolbec 2015-09-20 0:20 Brian Dolbec 2015-09-19 17:32 Brian Dolbec 2015-09-19 16:48 Brian Dolbec 2015-09-19 16:28 Brian Dolbec 2015-09-19 16:28 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 4:36 Brian Dolbec 2015-09-19 1:22 Brian Dolbec 2015-09-19 1:22 Brian Dolbec 2015-09-17 18:58 Brian Dolbec 2015-09-17 18:58 Brian Dolbec 2015-09-17 15:32 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 4:51 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 3:08 Brian Dolbec 2015-09-17 2:45 Brian Dolbec 2015-09-17 2:45 Brian Dolbec 2015-09-17 2:45 Brian Dolbec 2015-09-05 21:48 Brian Dolbec 2015-09-05 21:48 Brian Dolbec 2015-09-05 21:48 Brian Dolbec 2015-09-05 21:48 Brian Dolbec 2015-09-05 21:48 Brian Dolbec 2015-09-05 21:48 Brian Dolbec 2015-09-05 21:27 Brian Dolbec 2015-09-05 21:27 Brian Dolbec 2015-09-05 21:27 Brian Dolbec 2015-09-05 21:27 Brian Dolbec 2015-09-05 21:27 Brian Dolbec 2015-09-05 21:27 Brian Dolbec 2015-08-11 23:54 Brian Dolbec 2015-08-11 23:54 Brian Dolbec 2015-08-11 23:54 Brian Dolbec 2015-08-11 23:54 Brian Dolbec 2015-08-11 23:54 Brian Dolbec 2015-08-11 23:54 Brian Dolbec 2015-08-10 14:45 Michał Górny 2015-08-10 14:45 Michał Górny 2015-08-10 14:45 Michał Górny 2015-08-10 14:45 Michał Górny 2015-08-10 14:45 Michał Górny 2015-08-10 14:45 Michał Górny 2015-08-10 13:44 Brian Dolbec 2015-08-10 13:44 Brian Dolbec 2015-08-10 13:44 Brian Dolbec 2015-08-10 13:44 Brian Dolbec 2015-08-10 13:44 Brian Dolbec 2015-08-10 13:44 Brian Dolbec 2014-11-17 2:08 Brian Dolbec 2014-11-17 0:55 Brian Dolbec 2014-11-17 0:55 Brian Dolbec 2014-11-17 0:55 Brian Dolbec 2014-11-17 0:55 Brian Dolbec 2014-11-17 0:55 Brian Dolbec 2014-10-01 23:46 Brian Dolbec 2014-10-01 23:46 Brian Dolbec 2014-10-01 23:46 Brian Dolbec 2014-10-01 23:46 Brian Dolbec 2014-10-01 23:46 Brian Dolbec 2014-10-01 23:02 Brian Dolbec 2014-10-01 23:02 Brian Dolbec 2014-10-01 23:02 Brian Dolbec 2014-10-01 23:02 Brian Dolbec 2014-10-01 23:02 Brian Dolbec 2014-06-03 19:33 Brian Dolbec 2014-06-03 18:15 Brian Dolbec 2014-06-03 18:15 Brian Dolbec 2014-06-03 11:29 Tom Wijsman 2014-06-02 17:01 Tom Wijsman 2014-06-02 15:44 Brian Dolbec 2014-06-02 15:44 Brian Dolbec 2014-06-02 15:44 Brian Dolbec 2014-06-02 15:01 Tom Wijsman 2014-06-02 14:24 Brian Dolbec 2014-06-02 14:11 Tom Wijsman 2014-06-02 1:10 Brian Dolbec 2014-06-02 1:10 Brian Dolbec 2014-05-30 13:03 Brian Dolbec 2014-05-30 13:03 Brian Dolbec 2014-05-30 13:03 Brian Dolbec 2014-05-27 6:04 Brian Dolbec 2014-05-27 6:04 Brian Dolbec 2014-05-27 6:04 Brian Dolbec 2014-05-27 6:04 Brian Dolbec 2014-05-27 5:04 Brian Dolbec 2014-05-27 5:04 Brian Dolbec 2014-05-27 5:04 Brian Dolbec
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1442878966.5d91183c50d57d7ddb06721a64f2ae6f95b6aeea.dolsen@gentoo \ --to=dolsen@gentoo.org \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox