From d8ce76b277a681ad7848cd936b3b95baef4dd15a6b88c37994848bd8993b9974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 3 May 2024 11:06:31 +0200 Subject: [PATCH] Sync from SUSE:SLFO:Main appx-util revision 7e07eae3f03ec68eacc683e944b6192b --- .gitattributes | 23 ++++++++++++++++ appx-util-0.5.tar.gz | 3 +++ appx-util.changes | 19 +++++++++++++ appx-util.spec | 64 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 109 insertions(+) create mode 100644 .gitattributes create mode 100644 appx-util-0.5.tar.gz create mode 100644 appx-util.changes create mode 100644 appx-util.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/appx-util-0.5.tar.gz b/appx-util-0.5.tar.gz new file mode 100644 index 0000000..3f9b870 --- /dev/null +++ b/appx-util-0.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ddc12a7b7eb32c1c11d634abfec61da50047df0bb999fa7edfaa799d1d214fa +size 32891 diff --git a/appx-util.changes b/appx-util.changes new file mode 100644 index 0000000..9907184 --- /dev/null +++ b/appx-util.changes @@ -0,0 +1,19 @@ +------------------------------------------------------------------- +Mon Sep 11 19:24:38 UTC 2023 - Scott Bradnick + +- 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 + +- Add OpenSSL 3.0 support [bsc#1205042] + * Add appx-util-openssl3-support.patch + +------------------------------------------------------------------- +Thu May 27 02:54:28 UTC 2021 - Neal Gompa + +- Initial package based on Fedora packaging + + diff --git a/appx-util.spec b/appx-util.spec new file mode 100644 index 0000000..372b0f1 --- /dev/null +++ b/appx-util.spec @@ -0,0 +1,64 @@ +# +# spec file for package appx-util +# +# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2021 Neal Gompa . +# +# 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