Accepting request 895171 from home:mnhauke

Initial package for hobbits

OBS-URL: https://build.opensuse.org/request/show/895171
OBS-URL: https://build.opensuse.org/package/show/editors/hobbits?expand=0&rev=1
This commit is contained in:
Martin Pluskal 2021-05-24 14:22:46 +00:00 committed by Git OBS Bridge
commit e03a6eb6cf
5 changed files with 187 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
hobbits-0.48.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6eb97c04b7212a6e8949db9039281fc8389bd550d7f9c09a3d5119a5fea38e80
size 6372242

66
hobbits.changes Normal file
View File

@ -0,0 +1,66 @@
-------------------------------------------------------------------
Sat May 22 09:49:23 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.48.1
Bug Fixes
* release artifact paths.
- Update to version 0.48.0
Bug Fixes
* [plugin] json error parsing for kaitai compilers.
* correctly load config in standalone builds.
* correctly register Range and RangeHighlight meta types.
* correctly resize BitArrays when setBytes is called.
* prevent potential QFutureWatcher race conditions.
Features
* add basic "What's This?" help for plugin widgets.
* arbitrary view splitting and full view persistence for.
-------------------------------------------------------------------
Thu May 13 16:30:56 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.47.0
* improve plugin parameter specification (helps #84) (cef1055)
-------------------------------------------------------------------
Mon Apr 26 05:58:50 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.46.8
* handle bad display parameters without crashing #99 (7c3c587)
-------------------------------------------------------------------
Sat Apr 24 18:49:11 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.46.7
* appropriately offset imported sub-sections in kaitai (#93)
(03067d4)
-------------------------------------------------------------------
Sat Apr 24 08:02:51 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.46.6
* rollback offset changes in kaitai struct plugin (e2ac3c3)
-------------------------------------------------------------------
Fri Apr 23 19:45:11 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.46.5
* actually synchronize parameter editor preview calls
* track section offsets in kaitai parsing for #93 (ccd01f3)
-------------------------------------------------------------------
Tue Apr 13 14:37:04 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.46.3
* swapped mac and windows binary releases.
-------------------------------------------------------------------
Fri Mar 19 20:30:36 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Update to version 0.46.3
* correctly enforce FFTW thread-safety.
* load python plugins correctly.
-------------------------------------------------------------------
Sun Feb 7 16:03:34 UTC 2021 - Martin Hauke <mardnh@gmx.de>
- Initial package, version 0.46.2

94
hobbits.spec Normal file
View File

@ -0,0 +1,94 @@
#
# spec file for package hobbits
#
# Copyright (c) 2021, Martin Hauke <mardnh@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: hobbits
Version: 0.48.1
Release: 0
Summary: A GUI for bit-based analysis, processing, and visualization
License: MIT
URL: https://github.com/Mahlet-Inc/hobbits
Source: https://github.com/Mahlet-Inc/hobbits/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: libpcap-devel
BuildRequires: pkgconfig
BuildRequires: fdupes
BuildRequires: python39-devel
BuildRequires: pkgconfig(Qt5Concurrent)
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5Network)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(fftw3)
BuildRequires: fftw3-devel
BuildRequires: fftw3-threads-devel
BuildRequires: hicolor-icon-theme
%description
A GUI for bit-based analysis, processing, and visualization.
%package devel
Summary: Development files for hobbits
Group: Development/Libraries/C and C++
Requires: %{name} = %{version}
%description devel
A GUI for bit-based analysis, processing, and visualization.
This subpackage contains files for developing applications thatwant to make use of hobbits.
%prep
%setup -q
%build
cd src
%cmake -DCMAKE_SKIP_RPATH:BOOL=OFF
%make_build
%install
cd src
%cmake_install
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%license LICENSE.txt
%doc CHANGELOG.md README.md
%{_bindir}/hobbits
%{_bindir}/hobbits-runner
%dir %{_libdir}/hobbits
%dir %{_libdir}/hobbits/plugins
%{_libdir}/hobbits/plugins/analyzers/
%{_libdir}/hobbits/plugins/analyzers/
%{_libdir}/hobbits/plugins/displays/
%{_libdir}/hobbits/plugins/importerexporters/
%{_libdir}/hobbits/plugins/operators/
%{_libdir}/libhobbits-core.so
%{_libdir}/libhobbits-python.so
%{_libdir}/libhobbits-widgets.so
%{_datadir}/applications/Hobbits.desktop
# FIXME: icons too large
%dir %{_datadir}/icons/hicolor/624x624/
%dir %{_datadir}/icons/hicolor/624x624/apps/
%{_datadir}/icons/hicolor/624x624/apps/HobbitsRingSmall.png
%files devel
%{_includedir}/hobbits/
%changelog