libgnome-keyring-vl.spec 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. %define glib2_version 2.36.0
  3. %define dbus_version 1.6.4
  4. %define eggdbus_version 0.6
  5. %define gcrypt_version 1.4.6
  6. Summary: Framework for managing passwords and other secrets
  7. Name: libgnome-keyring
  8. Version: 3.8.0
  9. Release: 1%{?_dist_release}
  10. License: GPLv2+ and LGPLv2+
  11. Group: System Environment/Libraries
  12. Source: http://ftp.gnome.org/pub/GNOME/sources/libgnome-keyring/3.8/libgnome-keyring-%{version}.tar.xz
  13. URL: http://live.gnome.org/GnomeKeyring
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  15. BuildRequires: glib2-devel >= %{glib2_version}
  16. BuildRequires: dbus-devel >= %{dbus_version}
  17. BuildRequires: eggdbus-devel >= %{eggdbus_version}
  18. BuildRequires: libgcrypt-devel >= %{gcrypt_version}
  19. BuildRequires: gobject-introspection-devel
  20. BuildRequires: intltool
  21. Conflicts: gnome-keyring < 2.29.4
  22. %description
  23. gnome-keyring is a program that keep password and other secrets for
  24. users. The library libgnome-keyring is used by applications to integrate
  25. with the gnome-keyring system.
  26. %package devel
  27. Summary: Development files for libgnome-keyring
  28. License: LGPLv2+
  29. Group: Development/Libraries
  30. Requires: %{name} = %{version}-%{release}
  31. Requires: glib2-devel
  32. Requires: pkgconfig
  33. Requires: gtk-doc
  34. Conflicts: gnome-keyring-devel < 2.29.4
  35. %description devel
  36. The libgnome-keyring-devel package contains the libraries and
  37. header files needed to develop applications that use libgnome-keyring.
  38. # compat32
  39. %package -n compat32-%{name}
  40. Summary: Framework for managing passwords and other secrets
  41. Group: System Environment/Libraries
  42. Requires: %{name} = %{version}-%{release}
  43. %description -n compat32-%{name}
  44. gnome-keyring is a program that keep password and other secrets for
  45. users. The library libgnome-keyring is used by applications to integrate
  46. with the gnome-keyring system.
  47. %package -n compat32-%{name}-devel
  48. Summary: Development files for libgnome-keyring
  49. License: LGPLv2+
  50. Group: Development/Libraries
  51. Requires: compat32-%{name} = %{version}-%{release}
  52. Requires: compat32-glib2-devel
  53. Conflicts: compat32-gnome-keyring-devel < 2.29.4
  54. %description -n compat32-%{name}-devel
  55. The libgnome-keyring-devel package contains the libraries and
  56. header files needed to develop applications that use libgnome-keyring.
  57. %prep
  58. %setup -q -n libgnome-keyring-%{version}
  59. %build
  60. %configure \
  61. --disable-gtk-doc \
  62. --enable-introspection
  63. make %{?_smp_mflags}
  64. %install
  65. rm -rf $RPM_BUILD_ROOT
  66. make install DESTDIR=$RPM_BUILD_ROOT
  67. rm $RPM_BUILD_ROOT%{_libdir}/*.la
  68. %find_lang libgnome-keyring
  69. %clean
  70. rm -rf $RPM_BUILD_ROOT
  71. %post -p /sbin/ldconfig
  72. %postun -p /sbin/ldconfig
  73. %files -f libgnome-keyring.lang
  74. %defattr(-, root, root, -)
  75. %doc AUTHORS NEWS README COPYING HACKING
  76. %{_libdir}/lib*.so.*
  77. %{_libdir}/girepository-1.0/GnomeKeyring-1.0.typelib
  78. %files devel
  79. %defattr(-, root, root, -)
  80. %{_libdir}/lib*.so
  81. %{_libdir}/pkgconfig/*
  82. %{_includedir}/*
  83. %{_datadir}/gir-1.0/GnomeKeyring-1.0.gir
  84. %doc %{_datadir}/gtk-doc/html/gnome-keyring/
  85. # compat32
  86. %if %{build_compat32}
  87. %files -n compat32-%{name}
  88. %defattr(-, root, root, -)
  89. %{_libdir}/lib*.so.*
  90. %files -n compat32-%{name}-devel
  91. %defattr(-, root, root, -)
  92. %{_libdir}/lib*.so
  93. %endif
  94. %changelog
  95. * Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.8.0-1
  96. - new upstream release
  97. - add BuildRequires: gobject-introspection-devel
  98. * Thu Sep 27 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.6.0-1
  99. - new upstream release
  100. * Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.4.1-1
  101. - new upstream release
  102. * Wed Sep 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.2.0-1
  103. - new upstream release
  104. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.1.92-1
  105. - new upstream release
  106. * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.1.90-1
  107. - new upstream release
  108. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.1.4-1
  109. - new upstream release
  110. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.32.0-1
  111. - new upstream release
  112. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.30.1-2
  113. - build with rpm-4.8.1-1 for pkg-config file
  114. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.30.1-1
  115. - new upstream release
  116. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.30.0-1
  117. - initial build for Vine Linux
  118. * Mon Mar 22 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.29.92-git20100322.1
  119. - Update to a new git snapshot
  120. * Wed Mar 17 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.29.92-git20100317.1
  121. - Update to 2.29.92 git snapshot
  122. * Wed Feb 17 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.29.4-4
  123. - When no password is found, return GNOME_KEYRING_RESULT_NO_MATCH
  124. * Tue Feb 16 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.29.4-3
  125. - Fix assertion when password is not found
  126. * Mon Jan 25 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.29.4-2
  127. - Fix assertion calling deprecated acl function
  128. - Clear the client's session when the service disconnects
  129. - Implement setting of Type property in gnome_keyring_item_set_info()
  130. * Thu Jan 7 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.29.4-1
  131. - Initial packaging