keychain-vl.spec 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. Name: keychain
  2. Summary: Agent manager for OpenSSH, ssh.com, Sun SSH, and GnuPG
  3. Version: 2.8.2
  4. Release: 2%{?_dist_release}
  5. License: GPLv2
  6. Group: Applications/Internet
  7. URL: http://www.funtoo.org/Keychain
  8. Source0: http://www.funtoo.org/distfiles/keychain/keychain-%{version}.tar.bz2
  9. Source1: keychain.sh
  10. Source2: keychain.csh
  11. Source3: README.Fedora
  12. BuildArch: noarch
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  14. # # https://bugzilla.redhat.com/show_bug.cgi?id=486025
  15. # Conflicts: kde-settings < 4.2-3
  16. # # https://bugzilla.redhat.com/show_bug.cgi?id=314431
  17. # Conflicts: zsh < 4.3.4-7
  18. %description
  19. Keychain is a manager for OpenSSH, ssh.com, Sun SSH and GnuPG agents.
  20. It acts as a front-end to the agents, allowing you to easily have one
  21. long-running agent process per system, rather than per login session.
  22. This dramatically reduces the number of times you need to enter your
  23. passphrase from once per new login session to once every time your
  24. local machine is rebooted.
  25. %prep
  26. %setup -q
  27. sed -i -e 's|/usr/ucb:||' keychain
  28. %install
  29. rm -rf %{buildroot}
  30. mkdir -p %{buildroot}%{_bindir}
  31. mkdir -p %{buildroot}%{_sysconfdir}/profile.d
  32. mkdir -p %{buildroot}%{_mandir}/man1
  33. install -pm 755 keychain %{buildroot}%{_bindir}/keychain
  34. install -pm 644 %{SOURCE1} %{buildroot}%{_sysconfdir}/profile.d/keychain.sh
  35. install -pm 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/profile.d/keychain.csh
  36. install -pm 644 keychain.1 %{buildroot}%{_mandir}/man1
  37. install -pm 644 %{SOURCE3} README.Fedora
  38. %clean
  39. rm -rf %{buildroot}
  40. %files
  41. %defattr(-,root,root)
  42. %doc COPYING.txt ChangeLog README.md README.Fedora
  43. %config(noreplace) %{_sysconfdir}/profile.d/keychain.sh
  44. %config(noreplace) %{_sysconfdir}/profile.d/keychain.csh
  45. %{_bindir}/keychain
  46. %{_mandir}/man1/keychain.1*
  47. %changelog
  48. * Wed Aug 24 2016 Munehiro Yamamoto <munepi@vinelinux.org> 2.8.2-2
  49. - rebuilt
  50. * Sun Dec 6 2015 Munehiro Yamamoto <munepi@vinelinux.org> 2.8.2-1
  51. - new upstream release
  52. * Sun Dec 6 2015 Munehiro Yamamoto <munepi@vinelinux.org> 2.8.0-1
  53. - initial build based on Fedora Rawhide
  54. * Tue Sep 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.3-0vl2
  55. - fix typo in Group:
  56. - use License: instead of Copyright:
  57. * Fri Feb 6 2004 IWAI, Masaharu <iwai@alib.jp> 2.0.3-0vl1
  58. - new upstream release
  59. - add COPYING in %%doc
  60. - update SOURCE0 URL
  61. - update user's manual in %%description
  62. * Sun Feb 03 2002 akira yamada <akira@vinelinux.org> 1.8-0vl3
  63. - requires bash
  64. * Mon Dec 03 2001 Yoichi Imai <yoichi@silver-forest.com>
  65. - 1.8-0vl1
  66. - source update
  67. * Sun Dec 02 2001 Yoichi Imai <yoichi@silver-forest.com>
  68. - 1.7-0vl1
  69. - initial release.