jetring-vl.spec 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. Name: jetring
  2. Version: 0.21
  3. Release: 1%{?_dist_release}
  4. Summary: GPG keyring maintenance using changesets
  5. License: GPLv2+
  6. URL: http://joeyh.name/code/jetring/
  7. Source0: http://ftp.debian.org/debian/pool/main/j/%{name}/%{name}_%{version}.tar.gz
  8. BuildArch: noarch
  9. BuildRequires: gnupg
  10. BuildRequires: perl(Cwd)
  11. BuildRequires: perl(File::Temp)
  12. BuildRequires: perl(Getopt::Long)
  13. BuildRequires: perl(strict)
  14. BuildRequires: perl(warnings)
  15. Requires: gnupg
  16. %description
  17. jetring is a collection of tools that allow for GPG keyrings to be maintained
  18. using changesets. It was developed with the Debian keyring in mind, and aims to
  19. solve the problem that a GPG keyring is a binary blob that's hard for multiple
  20. people to collaboratively edit.
  21. %prep
  22. %setup -q -n %{name}
  23. %build
  24. make %{?_smp_mflags}
  25. %install
  26. %make_install
  27. install -Dpm 0644 jetring.7 %{buildroot}%{_mandir}/man7/jetring.7
  28. install -d %{buildroot}%{_mandir}/man1
  29. install -pm 0644 jetring-*.1 %{buildroot}%{_mandir}/man1
  30. %files
  31. %doc README
  32. %license GPL
  33. %{_bindir}/jetring*
  34. %{_mandir}/man1/*
  35. %{_mandir}/man7/*
  36. %changelog
  37. * Sun Nov 15 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 0.21-1
  38. - initial build for Vine Linux
  39. * Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21-2
  40. - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
  41. * Fri Jan 02 2015 Sandro Mani <manisandro@gmail.com> - 0.21-1
  42. - Update to 0.21
  43. * Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20-4
  44. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
  45. * Mon Sep 23 2013 Sandro Mani <manisandro@gmail.com> - 0.20-3
  46. - Add manpages
  47. * Sun Sep 22 2013 Sandro Mani <manisandro@gmail.com> - 0.20-2
  48. - Add missing BR
  49. - Use smp_mflags
  50. - Use correct homepage
  51. * Thu Sep 19 2013 Sandro Mani <manisandro@gmail.com> - 0.20-1
  52. - Initial package