Sync from SUSE:SLFO:Main appx-util revision 7e07eae3f03ec68eacc683e944b6192b
This commit is contained in:
commit
d8ce76b277
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
|
BIN
appx-util-0.5.tar.gz
(Stored with Git LFS)
Normal file
BIN
appx-util-0.5.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
19
appx-util.changes
Normal file
19
appx-util.changes
Normal file
@ -0,0 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 11 19:24:38 UTC 2023 - Scott Bradnick <scott.bradnick@suse.com>
|
||||
|
||||
- Updating to version 0.5
|
||||
* Add support for OpenSSL 3.0 by @ignatenkobrain in #1
|
||||
* Removing appx-util-openssl3-support.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 9 10:39:54 UTC 2022 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
- Add OpenSSL 3.0 support [bsc#1205042]
|
||||
* Add appx-util-openssl3-support.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 27 02:54:28 UTC 2021 - Neal Gompa <ngompa13@gmail.com>
|
||||
|
||||
- Initial package based on Fedora packaging
|
||||
|
||||
|
64
appx-util.spec
Normal file
64
appx-util.spec
Normal file
@ -0,0 +1,64 @@
|
||||
#
|
||||
# spec file for package appx-util
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2021 Neal Gompa <ngompa13@gmail.com>.
|
||||
#
|
||||
# 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: appx-util
|
||||
Version: 0.5
|
||||
Release: 0
|
||||
Summary: Utility to create Microsoft .appx packages
|
||||
|
||||
# See LICENSING.md for details
|
||||
License: BSD-3-Clause AND MPL-2.0
|
||||
URL: https://github.com/OSInside/appx-util
|
||||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: cmake >= 3.11
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: make
|
||||
BuildRequires: openssl-devel
|
||||
BuildRequires: zlib-devel
|
||||
# For tests
|
||||
BuildRequires: python3
|
||||
|
||||
# Replacement fork of fb-util-for-appx
|
||||
Obsoletes: fb-util-for-appx < %{version}-%{release}
|
||||
Provides: fb-util-for-appx = %{version}-%{release}
|
||||
|
||||
%description
|
||||
appx is a tool which creates and optionally signs
|
||||
Microsoft Windows APPX packages.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%cmake
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
%ctest
|
||||
|
||||
%files
|
||||
%license LICENSE* LICENSING.md
|
||||
%doc README.md CONTRIBUTING.md
|
||||
%{_bindir}/appx
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user