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: <1442878967.3769fd0b8cfa080197cf154b2742bc2d7895ae15.dolsen@gentoo> (raw) commit: 3769fd0b8cfa080197cf154b2742bc2d7895ae15 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Sat Sep 19 04:27:19 2015 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Mon Sep 21 23:42:47 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=3769fd0b repoamn/actions.py: Split out sign_manifest() pym/repoman/actions.py | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py index 5b55ff8..4f516da 100644 --- a/pym/repoman/actions.py +++ b/pym/repoman/actions.py @@ -186,19 +186,7 @@ class Actions(object): digestgen(mysettings=self.repoman_settings, myportdb=self.repo_settings.portdb) if self.repo_settings.sign_manifests: - try: - for x in sorted(vcs_files_to_cps( - chain(myupdates, myremoved, mymanifests), - self.scanner.repolevel, self.scanner.reposplit, self.scanner.categories)): - self.repoman_settings["O"] = os.path.join(self.repo_settings.repodir, x) - manifest_path = os.path.join(self.repoman_settings["O"], "Manifest") - if not need_signature(manifest_path): - continue - gpgsign(manifest_path, self.repoman_settings, self.options) - except portage.exception.PortageException as e: - portage.writemsg("!!! %s\n" % str(e)) - portage.writemsg("!!! Disabled FEATURES='sign'\n") - self.repo_settings.sign_manifests = False + self.sign_manifests(myupdates, myremoved, mymanifests) if self.vcs_settings.vcs == 'git': # It's not safe to use the git commit -a option since there might @@ -821,3 +809,20 @@ class Actions(object): modified = True if modified: portage.util.write_atomic(x, b''.join(mylines), mode='wb') + + + def sign_manifest(self, myupdates, myremoved, mymanifests): + try: + for x in sorted(vcs_files_to_cps( + chain(myupdates, myremoved, mymanifests), + self.scanner.repolevel, self.scanner.reposplit, self.scanner.categories)): + self.repoman_settings["O"] = os.path.join(self.repo_settings.repodir, x) + manifest_path = os.path.join(self.repoman_settings["O"], "Manifest") + if not need_signature(manifest_path): + continue + gpgsign(manifest_path, self.repoman_settings, self.options) + except portage.exception.PortageException as e: + portage.writemsg("!!! %s\n" % str(e)) + portage.writemsg("!!! Disabled FEATURES='sign'\n") + self.repo_settings.sign_manifests = False +
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: <1442878967.3769fd0b8cfa080197cf154b2742bc2d7895ae15.dolsen@gentoo> (raw) Message-ID: <20150921235119.Iwg3ouCIVgX1puvqVqikqzRNL42s48nOXRKWSpIuw-A@z> (raw) commit: 3769fd0b8cfa080197cf154b2742bc2d7895ae15 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Sat Sep 19 04:27:19 2015 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Mon Sep 21 23:42:47 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=3769fd0b repoamn/actions.py: Split out sign_manifest() pym/repoman/actions.py | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py index 5b55ff8..4f516da 100644 --- a/pym/repoman/actions.py +++ b/pym/repoman/actions.py @@ -186,19 +186,7 @@ class Actions(object): digestgen(mysettings=self.repoman_settings, myportdb=self.repo_settings.portdb) if self.repo_settings.sign_manifests: - try: - for x in sorted(vcs_files_to_cps( - chain(myupdates, myremoved, mymanifests), - self.scanner.repolevel, self.scanner.reposplit, self.scanner.categories)): - self.repoman_settings["O"] = os.path.join(self.repo_settings.repodir, x) - manifest_path = os.path.join(self.repoman_settings["O"], "Manifest") - if not need_signature(manifest_path): - continue - gpgsign(manifest_path, self.repoman_settings, self.options) - except portage.exception.PortageException as e: - portage.writemsg("!!! %s\n" % str(e)) - portage.writemsg("!!! Disabled FEATURES='sign'\n") - self.repo_settings.sign_manifests = False + self.sign_manifests(myupdates, myremoved, mymanifests) if self.vcs_settings.vcs == 'git': # It's not safe to use the git commit -a option since there might @@ -821,3 +809,20 @@ class Actions(object): modified = True if modified: portage.util.write_atomic(x, b''.join(mylines), mode='wb') + + + def sign_manifest(self, myupdates, myremoved, mymanifests): + try: + for x in sorted(vcs_files_to_cps( + chain(myupdates, myremoved, mymanifests), + self.scanner.repolevel, self.scanner.reposplit, self.scanner.categories)): + self.repoman_settings["O"] = os.path.join(self.repo_settings.repodir, x) + manifest_path = os.path.join(self.repoman_settings["O"], "Manifest") + if not need_signature(manifest_path): + continue + gpgsign(manifest_path, self.repoman_settings, self.options) + except portage.exception.PortageException as e: + portage.writemsg("!!! %s\n" % str(e)) + portage.writemsg("!!! Disabled FEATURES='sign'\n") + self.repo_settings.sign_manifests = False +
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=1442878967.3769fd0b8cfa080197cf154b2742bc2d7895ae15.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