* Bug fixing release to address annoying issues with search
input and external diff, caused by the whole regular
expression "windstorm" due to migration to Qt6.
* Fix issue #162: match partial strings as well as wildcards in
listview search
* Fix issue #164. listview: always wipe clean the branch tags
before painting them
* listview: FIX truncated tag width with Qt5
* some cautionary comments
* Update project URLs to GitHub repo
* mainly a manteinance release with added a new and
* Qt4 port, less security vulnerabilities
- update to 1.5.7
- update to 1.5.6
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/qgit?expand=0&rev=32
91 lines
2.7 KiB
RPMSpec
91 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package qgit
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: qgit
|
|
Version: 2.13
|
|
Release: 0
|
|
Summary: Graphical Git Repository Viewer
|
|
License: GPL-2.0-or-later
|
|
Group: Development/Tools/Version Control
|
|
URL: https://github.com/tibirna/qgit
|
|
Source: https://github.com/tibirna/qgit/archive/%{name}-%{version}.tar.gz
|
|
BuildRequires: c++_compiler
|
|
BuildRequires: cmake >= 2.8.11
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: cmake(Qt6Core) >= 6.2.4
|
|
BuildRequires: cmake(Qt6Core5Compat) >= 6.2.4
|
|
BuildRequires: cmake(Qt6Gui) >= 6.2.4
|
|
BuildRequires: cmake(Qt6Widgets) >= 6.2.4
|
|
Requires: git-core >= 1.5.5
|
|
%if 0%{?suse_version} < 1600
|
|
BuildRequires: gcc12-c++
|
|
%endif
|
|
|
|
%description
|
|
QGit is a git GUI viewer built on Qt/C++.
|
|
|
|
With qgit you will be able to browse revisions history, view patch
|
|
content and changed files, graphically following different development
|
|
branches.
|
|
|
|
Features
|
|
|
|
- View revisions, diffs, files history, files annotation, archive tree.
|
|
|
|
- Commit changes visually cherry picking modified files.
|
|
|
|
- Apply or format patch series from selected commits, drag and drop
|
|
commits between two instances of qgit.
|
|
|
|
- Associate commands sequences, scripts and anything else executable to
|
|
a custom action. Actions can be run from menu and corresponding output
|
|
is grabbed by a terminal window.
|
|
|
|
- qgit implements a GUI for the most common StGIT commands like push/pop
|
|
and apply/format patches. You can also create new patches or refresh
|
|
current top one using the same semantics of git commit, i.e. cherry
|
|
picking single modified files.
|
|
|
|
%prep
|
|
%autosetup -p1 -n qgit-qgit-%{version}
|
|
|
|
%build
|
|
%if 0%{?suse_version} < 1600
|
|
export CXX=g++-12
|
|
%endif
|
|
%cmake
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%check
|
|
%ctest
|
|
|
|
%files
|
|
%license COPYING.rtf
|
|
%doc README.adoc
|
|
%{_bindir}/qgit
|
|
%{_datadir}/applications/qgit.desktop
|
|
%{_datadir}/icons/hicolor/scalable/apps/qgit.svg
|
|
%{_datadir}/icons/hicolor/48x48/apps/qgit.png
|
|
%{_datadir}/metainfo/qgit.appdata.xml
|
|
|
|
%changelog
|