-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
187 lines (159 loc) · 8.2 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# -*- coding: utf-8 -*-
#
# QBzr - Qt frontend to Bazaar commands
# Copyright (C) 2008 Lukáš Lalinský <lalinsky@gmail.com>
# Copyright (C) 2009-2016 QBzr Developers
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""QBzr - Qt5-based frontend for Bazaar
QBzr is a cross platform, Qt-based front-end for Bazaar, providing GUI
applications for many core bzr commands. In addition, it provides several
special dialogs and helper commands. Equivalents for core bzr commands have
the same names as CLI commands but with a prefix of "q".
QBzr requires Qt/PyQt 5 to be installed.
Basic q-commands:
* qadd - GUI for adding files or directories.
* qannotate - Show the origin of each line in a file.
* qbind - Convert the current branch into a checkout of the supplied branch.
* qbranch - Create a new copy of a branch.
* qcat - View the contents of a file as of a given revision.
* qcommit - GUI for committing revisions.
* qconflicts - Show conflicts.
* qdiff - Show differences in working tree in a GUI window.
* qexport - Export current or past revision to a destination directory or archive.
* qignore - Ignore files or patterns.
* qinfo - Shows information about the current location.
* qinit - Initializes a new branch or shared repository.
* qlog - Show log of a repository, branch, file, or directory in a Qt window.
* qmerge - Perform a three-way merge.
* qplugins - Display information about installed plugins.
* qpull - Turn this branch into a mirror of another branch.
* qpush - Update a mirror of this branch.
* qrevert - Revert changes files.
* qsend - Mail or create a merge-directive for submitting changes.
* qswitch - Set the branch of a checkout and update.
* qtag - Edit tags.
* qunbind - Convert the current checkout into a regular branch.
* quncommit - Move the tip of a branch to an earlier revision.
* qupdate - Update working tree with latest changes in the branch.
* qverify-signatures - Show digital signatures information
* qversion - Show version/system information.
Hybrid dialogs:
* qgetnew - Creates a new working tree (either a checkout or full branch).
* qgetupdates - Fetches external changes into the working tree.
Additional commands:
* qbrowse - Show inventory or working tree.
* qconfig - Configure Bazaar and QBzr.
* qrun - Run arbitrary bzr command.
* qviewer - Simple file viewer.
Miscellaneous:
* bug-url - print full URL to a specific bug, or open it in your browser.
RJL 2020:
This is the updated version for QBrz and Qt5
"""
import sys
if sys.version_info < (3,4,0):
sys.stderr.write("You need python 3.4.0 or later to run this script\n")
exit(1)
# New location for sip
# https://www.riverbankcomputing.com/static/Docs/PyQt5/incompatibilities.html#pyqt-v5-11
# from PyQt5 import sip
# sip.setapi('QVariant', 2)
# Note:
# https://doc.bccnsoft.com/docs/PyQt5/pyqt_qvariant.html#ref-qvariant
# In PyQt5 the implementation of QVariant is different to those of PyQt4. By default the behaviour is the same
# as PyQt4’s v2 API. However it is possible to temporarily suppress the automatic conversion of a C++ QVariant
# to a Python object and to return a wrapped Python QVariant instead - behaviour similar to PyQt4’s v1 API - by
# calling the sip.enableautoconversion() function.
# Get the version number from version.txt
# We have to find it relative to ourselves...
import os
base_path = os.path.dirname(os.path.abspath(__file__))
version_file_path = os.path.join(base_path, 'version.txt')
with open(version_file_path, 'r') as f:
v_version, v_major, v_minor = f.read().strip().split('.')
# RJL: Breezy's _format_version_tuple expects integers, not strings
version_info = (int(v_version), int(v_major), int(v_minor),'dev',0)
__version__ = '.'.join(map(str, version_info))
import breezy
from breezy.commands import plugin_cmds
# merge --qpreview disabled for 0.14 because it makes qbrz incompatible with bzr-pipeline plugin
# see bug https://bugs.launchpad.net/bugs/395817
# register_lazy_command('breezy.plugins.qbrz.lib.commands', 'cmd_merge', [], decorate=True) # provides merge --qpreview
lazy_commands = (
# module, command, [aliases]
('breezy.plugins.qbrz.lib.commands', 'cmd_qadd', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qannotate', ['qann', 'qblame']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qbind', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qbranch', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qbrowse', ['qbw']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qmain', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qcat', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qcommit', ['qci']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qconfig', ['qconfigure']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qconflicts', ['qresolve']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qdiff', ['qdi']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qexport', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qgetnew', ['qgetn']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qgetupdates', ['qgetu', 'qgetup']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qhelp', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qignore', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qinfo', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qinit', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qlog', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qmerge', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qplugins', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qpull', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qpush', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qrevert', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qrun', ['qcmd']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qshelve', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qunshelve', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qtag', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_quncommit', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qupdate', ['qup']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qverify_signatures', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qversion', ['qsysinfo']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qviewer', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qsend', ['qsend']),
('breezy.plugins.qbrz.lib.commands', 'cmd_qswitch', []),
('breezy.plugins.qbrz.lib.commands', 'cmd_qunbind', []),
# extra commands
('breezy.plugins.qbrz.lib.extra.bugurl', 'cmd_bug_url', []),
('breezy.plugins.qbrz.lib.extra.isignored', 'cmd_is_ignored', []),
('breezy.plugins.qbrz.lib.extra.isversioned', 'cmd_is_versioned', []),
# hidden power of qbrz ;-)
('breezy.plugins.qbrz.lib.commands', 'cmd_qsubprocess', []),
)
for module, name, aliases in lazy_commands:
plugin_cmds.register_lazy(name, aliases, module)
def post_uncommit_hook(local, master, old_revno, old_tip, new_revno, hook_new_tip):
from breezy.plugins.qbrz.lib.commit_data import QBzrCommitData
branch = local or master
ci_data = QBzrCommitData(branch=branch)
ci_data.set_data_on_uncommit(old_tip, hook_new_tip)
ci_data.save()
try:
from breezy.hooks import install_lazy_named_hook
except ImportError:
from breezy.branch import Branch
Branch.hooks.install_named_hook('post_uncommit', post_uncommit_hook,
'Remember uncomitted revision data for qcommit')
else:
install_lazy_named_hook("breezy.branch", "Branch.hooks", 'post_uncommit',
post_uncommit_hook, 'Remember uncomitted revision data for qcommit')
def load_tests(basic_tests, module, loader):
from breezy.plugins.qbrz.lib.tests import load_tests
return load_tests(basic_tests, module, loader)