Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 0c6cd4dc3b | |||
| f9152e79a3 | |||
| 0fbb3c374b | |||
| e004751951 | |||
| 80accb5382 | |||
| 766b6916b9 |
BIN
qgit-2.10.tar.gz
LFS
BIN
qgit-2.10.tar.gz
LFS
Binary file not shown.
3
qgit-2.13.tar.gz
Normal file
3
qgit-2.13.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9fa64b011963b7b876b8634b140ec5339a81a422317df71b619fcee5740a364a
|
||||||
|
size 1106606
|
||||||
26
qgit.changes
26
qgit.changes
@@ -1,3 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 17 17:39:38 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 2.13:
|
||||||
|
* 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
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 14 19:32:41 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- update to 2.12:
|
||||||
|
* port to Qt6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jul 5 08:55:41 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- update to 2.11:
|
||||||
|
* Fix annotate when working on the Linux kernel git tree
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 4 22:13:14 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
Fri Feb 4 22:13:14 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
23
qgit.spec
23
qgit.spec
@@ -1,7 +1,8 @@
|
|||||||
#
|
#
|
||||||
# spec file for package qgit
|
# spec file for package qgit
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,18 +18,24 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: qgit
|
Name: qgit
|
||||||
Version: 2.10
|
Version: 2.13
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Graphical Git Repository Viewer
|
Summary: Graphical Git Repository Viewer
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: Development/Tools/Version Control
|
Group: Development/Tools/Version Control
|
||||||
URL: https://github.com/tibirna/qgit
|
URL: https://github.com/tibirna/qgit
|
||||||
Source: https://github.com/tibirna/qgit/archive/%{name}-%{version}.tar.gz
|
Source: https://github.com/tibirna/qgit/archive/%{name}-%{version}.tar.gz
|
||||||
|
BuildRequires: c++_compiler
|
||||||
BuildRequires: cmake >= 2.8.11
|
BuildRequires: cmake >= 2.8.11
|
||||||
BuildRequires: hicolor-icon-theme
|
BuildRequires: hicolor-icon-theme
|
||||||
BuildRequires: cmake(Qt5Core) >= 5.14.0
|
BuildRequires: cmake(Qt6Core) >= 6.2.4
|
||||||
BuildRequires: cmake(Qt5Widgets) >= 5.14.0
|
BuildRequires: cmake(Qt6Core5Compat) >= 6.2.4
|
||||||
|
BuildRequires: cmake(Qt6Gui) >= 6.2.4
|
||||||
|
BuildRequires: cmake(Qt6Widgets) >= 6.2.4
|
||||||
Requires: git-core >= 1.5.5
|
Requires: git-core >= 1.5.5
|
||||||
|
%if 0%{?suse_version} < 1600
|
||||||
|
BuildRequires: gcc12-c++
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
QGit is a git GUI viewer built on Qt/C++.
|
QGit is a git GUI viewer built on Qt/C++.
|
||||||
@@ -56,15 +63,21 @@ current top one using the same semantics of git commit, i.e. cherry
|
|||||||
picking single modified files.
|
picking single modified files.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n qgit-qgit-%{version}
|
%autosetup -p1 -n qgit-qgit-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%if 0%{?suse_version} < 1600
|
||||||
|
export CXX=g++-12
|
||||||
|
%endif
|
||||||
%cmake
|
%cmake
|
||||||
%cmake_build
|
%cmake_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%cmake_install
|
%cmake_install
|
||||||
|
|
||||||
|
%check
|
||||||
|
%ctest
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING.rtf
|
%license COPYING.rtf
|
||||||
%doc README.adoc
|
%doc README.adoc
|
||||||
|
|||||||
Reference in New Issue
Block a user