Compare commits

..

No commits in common. "factory" and "factory" have entirely different histories.

4 changed files with 10 additions and 20 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2f8b85f56097e274e7cb4ad1f5c7467470ab237358b376fa5d01018b25e27bac
size 353275

3
qhexedit2-0.8.9.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2c32d0fde1685e9af7978ba60002a7d9fad4f2f3d0d1c4b19bdc18ab74b69e41
size 341341

View File

@ -1,14 +1,3 @@
-------------------------------------------------------------------
Mon Jan 13 19:21:10 UTC 2025 - Luigi Baldoni <aloisio@gmx.com>
- Update to version 0.8.10
* Replace QPallete::Background with QPallete::Window (for Qt6)
* Update main.cpp to add version option and future
extensibility
* Support the use of SIP5
* Some small improvements
- Switch build to Qt6
-------------------------------------------------------------------
Sun Aug 16 20:08:25 UTC 2020 - Dirk Mueller <dmueller@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package qhexedit2
#
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -18,7 +18,7 @@
%define _libver 4
Name: qhexedit2
Version: 0.8.10
Version: 0.8.9
Release: 0
Summary: Qt-based hex editor
License: LGPL-2.0-only
@ -32,7 +32,8 @@ BuildRequires: fdupes
BuildRequires: gcc-c++ >= 4.8
BuildRequires: pkgconfig
BuildRequires: update-desktop-files
BuildRequires: pkgconfig(Qt6Widgets)
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5Widgets)
%description
QHexEdit is a hex editor widget written in C++ for the Qt framework.
@ -64,19 +65,19 @@ Group: System/Libraries
Qt5 library for %{name}.
%prep
%autosetup -p1
%setup -q
%build
mkdir build-lib
pushd build-lib
qmake6 QMAKE_CXXFLAGS="%{optflags}" ../src/qhexedit.pro
qmake-qt5 QMAKE_CXXFLAGS="%{optflags}" ../src/qhexedit.pro
make %{?_smp_mflags}
popd
# Build application
mkdir build-example
pushd build-example
qmake6 QMAKE_CXXFLAGS="%{optflags}" ../example/qhexedit.pro
qmake-qt5 QMAKE_CXXFLAGS="%{optflags}" ../example/qhexedit.pro
make %{?_smp_mflags}
popd