forked from pool/signify
Accepting request 704833 from home:mnhauke
Initial package for signify OBS-URL: https://build.opensuse.org/request/show/704833 OBS-URL: https://build.opensuse.org/package/show/utilities/signify?expand=0&rev=1
This commit is contained in:
commit
7510ac6c7e
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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
38
signify.changes
Normal file
38
signify.changes
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 8 19:44:28 UTC 2019 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
- Update to version 25
|
||||||
|
* Updated to the latest upstream sources, the `-z` command line flag can
|
||||||
|
now be used to zero the timestamp when producing a signature.
|
||||||
|
- Run spec-cleaner
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Sep 23 10:22:02 UTC 2018 - AxelKoellhofer@web.de
|
||||||
|
|
||||||
|
- updated to version 24
|
||||||
|
* Fixed memory corruption due to incorrect remapping of SHA-224, SHA-384,
|
||||||
|
and SHA-512-256 to incompatible counterparts in `compat.h`. Thanks to
|
||||||
|
Ori Bernstein for the bug report (#17) and Wolfgang Müller for submitting
|
||||||
|
the fix (#18).
|
||||||
|
* Bumped version of libbsd to 0.9.1 for bundling, which does not need
|
||||||
|
patching to work with Musl.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 10 14:38:11 UTC 2017 - AxelKoellhofer@web.de
|
||||||
|
|
||||||
|
- updated to version 23
|
||||||
|
* Fixed handling of the `errno` variable.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 23 09:29:38 UTC 2017 - AxelKoellhofer@web.de
|
||||||
|
|
||||||
|
- updated to version 22
|
||||||
|
* For systems using GNU libc 2.25 or newer, the version of `explicit_bzero()`
|
||||||
|
supplied by the C library is used by default instead of the bundled one.
|
||||||
|
* The bundled implementation of `explicit_bzero()` was changed, the old one
|
||||||
|
was likely to be inlined by the compiler.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 5 21:25:06 UTC 2017 - AxelKoellhofer@web.de
|
||||||
|
|
||||||
|
- initial package, version 21
|
52
signify.spec
Normal file
52
signify.spec
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
#
|
||||||
|
# spec file for package signify
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
|
#
|
||||||
|
# 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: signify
|
||||||
|
Version: 25
|
||||||
|
Release: 0
|
||||||
|
Summary: OpenBSD tool to sign and verify signatures on files (portable version)
|
||||||
|
License: BSD-3-Clause
|
||||||
|
Group: Productivity/Networking/Security
|
||||||
|
URL: https://github.com/aperezdc/signify
|
||||||
|
Source0: https://github.com/aperezdc/%{name}/archive/v%{version}.tar.gz
|
||||||
|
BuildRequires: pkgconfig
|
||||||
|
BuildRequires: pkgconfig(libbsd) >= 0.8
|
||||||
|
|
||||||
|
%description
|
||||||
|
Signify - Sign and Verify.
|
||||||
|
A portable version of the OpenBSD tool to sign and verify signatures on files.
|
||||||
|
See http://www.tedunangst.com/flak/post/signify for more information.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
export EXTRA_CFLAGS="%{optflags} -D_GNU_SOURCE"
|
||||||
|
export PREFIX="%{_prefix}"
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
%install
|
||||||
|
export EXTRA_CFLAGS="%{optflags} -D_GNU_SOURCE"
|
||||||
|
export PREFIX="%{_prefix}"
|
||||||
|
%make_install
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc README.md CHANGELOG.md
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
%{_mandir}/man1/%{name}.1%{?ext_man}
|
||||||
|
|
||||||
|
%changelog
|
3
v25.tar.gz
Normal file
3
v25.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6404b4d945b421e1e67357e8ac0c5b4a6cae301e1dcc9047741219b91f9884c3
|
||||||
|
size 92172
|
Loading…
Reference in New Issue
Block a user