From: "Brian Dolbec" <dolsen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/portage:repoman commit in: pym/repoman/modules/commit/, pym/repoman/
Date: Tue, 11 Aug 2015 23:54:08 +0000 (UTC) [thread overview]
Message-ID: <1439337171.318499e7ea1a4bc61344c0bb95264ddee8f00a00.dolsen@gentoo> (raw)
commit: 318499e7ea1a4bc61344c0bb95264ddee8f00a00
Author: Tom Wijsman <tomwij <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 2 18:28:34 2014 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Aug 11 23:52:51 2015 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=318499e7
repoman: Fix up commit imports and calls
pym/repoman/argparser.py | 3 ++-
pym/repoman/copyrights.py | 2 +-
pym/repoman/main.py | 24 ++++++++++++++----------
pym/repoman/modules/commit/repochecks.py | 3 ++-
4 files changed, 19 insertions(+), 13 deletions(-)
diff --git a/pym/repoman/argparser.py b/pym/repoman/argparser.py
index 5378e36..45f65fd 100644
--- a/pym/repoman/argparser.py
+++ b/pym/repoman/argparser.py
@@ -8,6 +8,7 @@ import logging
import sys
import portage
+from portage import util
from portage.util._argparse import ArgumentParser
def parse_args(argv, qahelp, repoman_default_opts):
@@ -176,7 +177,7 @@ def parse_args(argv, qahelp, repoman_default_opts):
opts, args = parser.parse_known_args(argv[1:])
if not opts.ignore_default_opts:
- default_opts = portage.util.shlex_split(repoman_default_opts)
+ default_opts = util.shlex_split(repoman_default_opts)
if default_opts:
opts, args = parser.parse_known_args(default_opts + sys.argv[1:])
diff --git a/pym/repoman/copyrights.py b/pym/repoman/copyrights.py
index 231857f..01ce42f 100644
--- a/pym/repoman/copyrights.py
+++ b/pym/repoman/copyrights.py
@@ -83,7 +83,7 @@ def update_copyright(fn_path, year, pretend=False):
new_header.append(line)
break
- line = _update_copyright_year(year, line)
+ line = update_copyright_year(year, line)
new_header.append(line)
difflines = 0
diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index 57b5b40..c75657e 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -59,7 +59,7 @@ from repoman.checks.ebuilds.misc import bad_split_check, pkg_invalid
from repoman.checks.ebuilds.pkgmetadata import PkgMetadata
from repoman.ebuild import Ebuild
from repoman.errors import err
-from repoman.modules import commit
+from repoman.modules.commit import repochecks
from repoman.profile import check_profiles, dev_keywords, setup_profile
from repoman.qa_data import (format_qa_output, format_qa_output_column, qahelp,
qawarnings, qacats, max_desc_len, missingvars,
@@ -190,8 +190,8 @@ repolevel = len(reposplit)
###################
if options.mode == 'commit':
- commit.repochecks.commit_check(repolevel, reposplit)
- commit.repochecks.conflict_check(vcs_settings, options)
+ repochecks.commit_check(repolevel, reposplit)
+ repochecks.conflict_check(vcs_settings, options)
###################
@@ -268,7 +268,8 @@ check_ebuild_notadded = not \
effective_scanlist = scanlist
if options.if_modified == "y":
effective_scanlist = sorted(vcs_files_to_cps(
- chain(changed.changed, changed.new, changed.removed)))
+ chain(changed.changed, changed.new, changed.removed),
+ repolevel, reposplit, categories))
for xpkg in effective_scanlist:
# ebuilds and digests added to cvs respectively.
@@ -1278,7 +1279,8 @@ else:
else:
commitmessage = utilities.get_commit_message_with_stdin()
except KeyboardInterrupt:
- exithandler()
+ logging.fatal("Interrupted; exiting...")
+ sys.exit(1)
if (not commitmessage or not commitmessage.strip()
or commitmessage.strip() == msg_prefix):
print("* no commit message? aborting commit.")
@@ -1339,7 +1341,8 @@ else:
logging.info("checking for unmodified ChangeLog files")
committer_name = utilities.get_committer_name(env=repoman_settings)
for x in sorted(vcs_files_to_cps(
- chain(myupdates, mymanifests, myremoved))):
+ chain(myupdates, mymanifests, myremoved),
+ repolevel, reposplit, categories)):
catdir, pkgdir = x.split("/")
checkdir = repo_settings.repodir + "/" + x
checkdir_relative = ""
@@ -1479,7 +1482,7 @@ else:
print("%s have headers that will change." % green(str(len(myheaders))))
print(
- "* Files with headers will "
+ "* Files with headers will"
" cause the manifests to be changed and committed separately.")
logging.info("myupdates: %s", myupdates)
@@ -1633,9 +1636,9 @@ else:
"doing the entire repository.\"\n")
if vcs_settings.vcs in ('cvs', 'svn') and (myupdates or myremoved):
-
for x in sorted(vcs_files_to_cps(
- chain(myupdates, myremoved, mymanifests))):
+ chain(myupdates, myremoved, mymanifests),
+ repolevel, reposplit, categories)):
repoman_settings["O"] = os.path.join(repo_settings.repodir, x)
digestgen(mysettings=repoman_settings, myportdb=portdb)
@@ -1649,7 +1652,8 @@ else:
signed = True
try:
for x in sorted(vcs_files_to_cps(
- chain(myupdates, myremoved, mymanifests))):
+ chain(myupdates, myremoved, mymanifests),
+ repolevel, reposplit, categories)):
repoman_settings["O"] = os.path.join(repo_settings.repodir, x)
manifest_path = os.path.join(repoman_settings["O"], "Manifest")
if not need_signature(manifest_path):
diff --git a/pym/repoman/modules/commit/repochecks.py b/pym/repoman/modules/commit/repochecks.py
index ac4db6b..d0e2f28 100644
--- a/pym/repoman/modules/commit/repochecks.py
+++ b/pym/repoman/modules/commit/repochecks.py
@@ -3,7 +3,8 @@
from portage.output import red
from repoman.errors import err
-from repoman.vcs import detect_vcs_conflicts
+from repoman.vcs import vcs
+from repoman.vcs.vcs import detect_vcs_conflicts
def commit_check(repolevel, reposplit):
next reply other threads:[~2015-08-11 23:54 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-11 23:54 Brian Dolbec [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-09-17 3:08 [gentoo-commits] proj/portage:repoman commit in: pym/repoman/modules/commit/, pym/repoman/ Brian Dolbec
2015-09-05 21:48 Brian Dolbec
2015-08-10 14:45 Michał Górny
2015-08-10 13:44 Brian Dolbec
2014-11-17 0:55 Brian Dolbec
2014-10-01 23:46 Brian Dolbec
2014-10-01 23:02 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=1439337171.318499e7ea1a4bc61344c0bb95264ddee8f00a00.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: link
Be 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