cryptsetup-vl.spec 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. %define _root_sbindir /sbin
  2. %define upstream_version %{version}
  3. Summary: A utility for setting up encrypted disks
  4. Summary(ja): 暗号化ファイルシステム設定用ユーティリティ
  5. Name: cryptsetup
  6. Version: 1.7.5
  7. Release: 1%{?_dist_release}
  8. License: GPLv2 and LGPLv2+
  9. Group: Applications/System
  10. URL: http://cryptsetup.googlecode.com/
  11. Source0: https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/cryptsetup-%{upstream_version}.tar.xz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. BuildRequires: libgcrypt-devel
  14. BuildRequires: popt-devel
  15. BuildRequires: device-mapper-devel
  16. BuildRequires: libgpg-error-devel
  17. BuildRequires: libuuid-devel
  18. BuildRequires: python-devel
  19. Provides: cryptsetup-luks = %{version}-%{release}
  20. Obsoletes: cryptsetup-luks < 1.4.0
  21. Requires: cryptsetup-libs = %{version}-%{release}
  22. %description
  23. The cryptsetup package contains a utility for setting up
  24. disk encryption using dm-crypt kernel module.
  25. %description -l ja
  26. cryptsetup パッケージには、dm-crypt カーネルモジュールを使って
  27. ディスクの暗号化を設定するユーティリティが収録されています。
  28. %package devel
  29. Summary: Headers and libraries for using encrypted file systems
  30. Summary(ja): 暗号化ファイルシステムを使うためのヘッダとライブラリ
  31. Group: Development/Libraries
  32. Requires: %{name} = %{version}-%{release}
  33. Requires: libgcrypt-devel > 1.1.42
  34. Requires: device-mapper-devel
  35. Requires: libuuid-devel
  36. Requires: pkgconfig
  37. Provides: cryptsetup-luks-devel = %{version}-%{release}
  38. Obsoletes: cryptsetup-luks-devel < 1.4.0
  39. %description devel
  40. The cryptsetup-devel package contains libraries and header files
  41. used for writing code that makes use of disk encryption.
  42. %description devel -l ja
  43. cryptsetup-devel パッケージには、ディスクの暗号化を使うコードを
  44. 書くのに使われるライブラリとヘッダファイルが収録されています。
  45. %package libs
  46. Summary: Cryptsetup shared library
  47. Summary(ja): Cryptsetup 共有ライブラリ
  48. Group: System Environment/Libraries
  49. Provides: cryptsetup-luks-libs = %{version}-%{release}
  50. Obsoletes: cryptsetup-luks-libs < 1.4.0
  51. %description libs
  52. This package contains the cryptsetup shared library, libcryptsetup.
  53. %description libs -l ja
  54. このパッケージには、cryptsetup の共有ライブラリ、libcryptsetup が
  55. 収録されています。
  56. %package python
  57. Summary: Python bindings for libcryptsetup
  58. Summary(ja): libcryptsetup の Python バインディング
  59. Group: System Environment/Libraries
  60. Requires: %{name}-libs = %{version}-%{release}
  61. Provides: python-cryptsetup = %{version}-%{release}
  62. Obsoletes: python-cryptsetup < 1.4.0
  63. %description python
  64. This package provides Python bindings for libcryptsetup, a library
  65. for setting up disk encryption using dm-crypt kernel module.
  66. %description python -l ja
  67. このパッケージには、dm-crypt カーネルモジュールを使って
  68. ディスクの暗号化を設定するライブラリ libcryptsetup の
  69. Python バインディングが収録されています。
  70. %prep
  71. %setup -q -n cryptsetup-%{upstream_version}
  72. chmod -x python/pycryptsetup-test.py
  73. %build
  74. %configure --sbindir=%{_root_sbindir} --libdir=/%{_lib} \
  75. --enable-python \
  76. --disable-selinux
  77. # remove rpath
  78. sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  79. sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  80. make %{?_smp_mflags}
  81. %install
  82. rm -rf %{buildroot}
  83. make install DESTDIR=%{buildroot}
  84. rm -rf %{buildroot}/%{_lib}/*.la %{buildroot}/%{_lib}/cryptsetup
  85. # move libcryptsetup.so to %%{_libdir}
  86. pushd %{buildroot}/%{_lib}
  87. rm libcryptsetup.so
  88. mkdir -p %{buildroot}/%{_libdir}
  89. ln -s ../../%{_lib}/$(ls libcryptsetup.so.?.?.?) %{buildroot}/%{_libdir}/libcryptsetup.so
  90. mv %{buildroot}/%{_lib}/pkgconfig %{buildroot}/%{_libdir}
  91. popd
  92. %find_lang cryptsetup
  93. %post -n cryptsetup-libs -p /sbin/ldconfig
  94. %postun -n cryptsetup-libs -p /sbin/ldconfig
  95. %files -f cryptsetup.lang
  96. %doc COPYING ChangeLog AUTHORS TODO FAQ
  97. %{_mandir}/man8/cryptsetup.8.gz
  98. %{_mandir}/man8/veritysetup.8.gz
  99. %{_root_sbindir}/cryptsetup
  100. %{_root_sbindir}/veritysetup
  101. %files devel
  102. %doc docs/examples/*
  103. %{_includedir}/libcryptsetup.h
  104. %{_libdir}/libcryptsetup.so
  105. %{_libdir}/pkgconfig/libcryptsetup.pc
  106. %files libs
  107. %doc COPYING
  108. /%{_lib}/libcryptsetup.so.*
  109. %files python
  110. %doc COPYING.LGPL python/pycryptsetup-test.py
  111. %exclude %{python_sitearch}/pycryptsetup.la
  112. %{python_sitearch}/pycryptsetup.so
  113. %clean
  114. rm -rf %{buildroot}
  115. %changelog
  116. * Sun Sep 10 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.7.5-1
  117. - updated to 1.7.5.
  118. * Sat Dec 6 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.4.1-4
  119. - rebuilt with libgcrypt 1.6.0
  120. * Fri Mar 23 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.4.1-3
  121. - updated to 1.4.1; spec revamp; Japanese summary & description
  122. - Sun Sep 21 2008 Shu KONNO <owa@bg.wakwak.com> 1.0.5-8vl5
  123. - applied new versioning policy
  124. - Sun Dec 9 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.0.5-7vl1
  125. - initial build for VineSeed
  126. * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-2
  127. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  128. * Wed Nov 09 2011 Milan Broz <mbroz@redhat.com> - 1.4.1-1
  129. - Update to cryptsetup 1.4.1.
  130. - Add Python cryptsetup bindings.
  131. - Obsolete separate python-cryptsetup package.
  132. * Wed Oct 26 2011 Milan Broz <mbroz@redhat.com> - 1.4.0-1
  133. - Update to cryptsetup 1.4.0.
  134. * Mon Oct 10 2011 Milan Broz <mbroz@redhat.com> - 1.4.0-0.1
  135. - Update to cryptsetup 1.4.0-rc1.
  136. - Rename package back from cryptsetup-luks to cryptsetup.
  137. * Wed Jun 22 2011 Milan Broz <mbroz@redhat.com> - 1.3.1-2
  138. - Fix return code for status command when device doesn't exist.
  139. * Tue May 24 2011 Milan Broz <mbroz@redhat.com> - 1.3.1-1
  140. - Update to cryptsetup 1.3.1.
  141. * Tue Apr 05 2011 Milan Broz <mbroz@redhat.com> - 1.3.0-1
  142. - Update to cryptsetup 1.3.0.
  143. * Tue Mar 22 2011 Milan Broz <mbroz@redhat.com> - 1.3.0-0.2
  144. - Update to cryptsetup 1.3.0-rc2
  145. * Mon Mar 14 2011 Milan Broz <mbroz@redhat.com> - 1.3.0-0.1
  146. - Update to cryptsetup 1.3.0-rc1
  147. * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
  148. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  149. * Mon Dec 20 2010 Milan Broz <mbroz@redhat.com> - 1.2.0-1
  150. - Update to cryptsetup 1.2.0
  151. * Thu Nov 25 2010 Milan Broz <mbroz@redhat.com> - 1.2.0-0.2
  152. - Fix crypt_activate_by_keyfile() to work with PLAIN devices.
  153. * Tue Nov 16 2010 Milan Broz <mbroz@redhat.com> - 1.2.0-0.1
  154. - Add FAQ to documentation.
  155. - Update to cryptsetup 1.2.0-rc1
  156. * Sat Jul 03 2010 Milan Broz <mbroz@redhat.com> - 1.1.3-1
  157. - Update to cryptsetup 1.1.3
  158. * Mon Jun 07 2010 Milan Broz <mbroz@redhat.com> - 1.1.2-2
  159. - Fix alignment ioctl use.
  160. - Fix API activation calls to handle NULL device name.
  161. * Sun May 30 2010 Milan Broz <mbroz@redhat.com> - 1.1.2-1
  162. - Update to cryptsetup 1.1.2
  163. - Fix luksOpen handling of new line char on stdin.
  164. * Sun May 23 2010 Milan Broz <mbroz@redhat.com> - 1.1.1-1
  165. - Update to cryptsetup 1.1.1
  166. - Fix luksClose for stacked LUKS/LVM devices.
  167. * Mon May 03 2010 Milan Broz <mbroz@redhat.com> - 1.1.1-0.2
  168. - Update to cryptsetup 1.1.1-rc2.
  169. * Sat May 01 2010 Milan Broz <mbroz@redhat.com> - 1.1.1-0.1
  170. - Update to cryptsetup 1.1.1-rc1.
  171. * Sun Jan 17 2010 Milan Broz <mbroz@redhat.com> - 1.1.0-1
  172. - Update to cryptsetup 1.1.0.
  173. * Fri Jan 15 2010 Milan Broz <mbroz@redhat.com> - 1.1.0-0.6
  174. - Fix gcrypt initialisation.
  175. - Fix backward compatibility for hash algorithm (uppercase).
  176. * Wed Dec 30 2009 Milan Broz <mbroz@redhat.com> - 1.1.0-0.5
  177. - Update to cryptsetup 1.1.0-rc4
  178. * Mon Nov 16 2009 Milan Broz <mbroz@redhat.com> - 1.1.0-0.4
  179. - Update to cryptsetup 1.1.0-rc3
  180. * Thu Oct 01 2009 Milan Broz <mbroz@redhat.com> - 1.1.0-0.3
  181. - Update to cryptsetup 1.1.0-rc2
  182. - Fix libcryptsetup to properly export only versioned symbols.
  183. * Tue Sep 29 2009 Milan Broz <mbroz@redhat.com> - 1.1.0-0.2
  184. - Update to cryptsetup 1.1.0-rc1
  185. - Add luksHeaderBackup and luksHeaderRestore commands.
  186. * Fri Sep 11 2009 Milan Broz <mbroz@redhat.com> - 1.1.0-0.1
  187. - Update to new upstream testing version with new API interface.
  188. - Add luksSuspend and luksResume commands.
  189. - Introduce pkgconfig.
  190. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-2
  191. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  192. * Wed Jul 22 2009 Milan Broz <mbroz@redhat.com> - 1.0.7-1
  193. - Update to upstream final release.
  194. - Split libs subpackage.
  195. - Remove rpath setting from cryptsetup binary.
  196. * Wed Jul 15 2009 Till Maas <opensource@till.name> - 1.0.7-0.2
  197. - update BR because of libuuid splitout from e2fsprogs
  198. * Mon Jun 22 2009 Milan Broz <mbroz@redhat.com> - 1.0.7-0.1
  199. - Update to new upstream 1.0.7-rc1.
  200. - Wipe old fs headers to not confuse blkid (#468062)
  201. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-7
  202. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  203. * Thu Oct 30 2008 Milan Broz <mbroz@redhat.com> - 1.0.6-6
  204. - Wipe old fs headers to not confuse blkid (#468062)
  205. * Tue Sep 23 2008 Milan Broz <mbroz@redhat.com> - 1.0.6-5
  206. - Change new project home page.
  207. - Print more descriptive messages for initialization errors.
  208. - Refresh patches to versions commited upstream.
  209. * Sat Sep 06 2008 Milan Broz <mbroz@redhat.com> - 1.0.6-4
  210. - Fix close of zero decriptor.
  211. - Fix udevsettle delays - use temporary crypt device remapping.
  212. * Wed May 28 2008 Till Maas <opensource till name> - 1.0.6-3
  213. - remove a duplicate sentence from the manpage (RH #448705)
  214. - add patch metadata about upstream status
  215. * Tue Apr 15 2008 Bill Nottinghm <notting@redhat.com> - 1.0.6-2
  216. - Add the device to the luksOpen prompt (#433406)
  217. - Use iconv, not recode (#442574)
  218. * Thu Mar 13 2008 Till Maas <opensource till name> - 1.0.6-1
  219. - Update to latest version
  220. - remove patches that have been merged upstream
  221. * Mon Mar 03 2008 Till Maas <opensource till name> - 1.0.6-0.1.pre2
  222. - Update to new version with several bugfixes
  223. - remove patches that have been merged upstream
  224. - add patch from cryptsetup newsgroup
  225. - fix typo / missing luksRemoveKey in manpage (patch)
  226. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0.5-9
  227. - Autorebuild for GCC 4.3
  228. * Sat Jan 19 2008 Peter Jones <pjones@redhat.com> - 1.0.5-8
  229. - Rebuild for broken deps.
  230. * Thu Aug 30 2007 Till Maas <opensource till name> - 1.0.5-7
  231. - update URL
  232. - update license tag
  233. - recode ChangeLog from latin1 to uf8
  234. - add smp_mflags to make
  235. * Fri Aug 24 2007 Till Maas <opensource till name> - 1.0.5-6
  236. - cleanup BuildRequires:
  237. - removed versions, packages in Fedora are new enough
  238. - changed popt to popt-devel
  239. * Thu Aug 23 2007 Till Maas <opensource till name> - 1.0.5-5
  240. - fix devel subpackage requires
  241. - remove empty NEWS README
  242. - remove uneeded INSTALL
  243. - remove uneeded ldconfig requires
  244. - add readonly detection patch
  245. * Wed Aug 08 2007 Till Maas <opensource till name> - 1.0.5-4
  246. - disable patch2, libsepol is now detected by configure
  247. - move libcryptsetup.so to %%{_libdir} instead of /%%{_lib}
  248. * Fri Jul 27 2007 Till Maas <opensource till name> - 1.0.5-3
  249. - Use /%%{_lib} instead of /lib to use /lib64 on 64bit archs
  250. * Thu Jul 26 2007 Till Maas <opensource till name> - 1.0.5-2
  251. - Use /lib as libdir (#243228)
  252. - sync header and library (#215349)
  253. - do not use %%makeinstall (recommended by PackageGuidelines)
  254. - select sbindir with %%configure instead with make
  255. - add TODO
  256. * Wed Jun 13 2007 Jeremy Katz <katzj@redhat.com> - 1.0.5-1
  257. - update to 1.0.5
  258. * Mon Jun 04 2007 Peter Jones <pjones@redhat.com> - 1.0.3-5
  259. - Don't build static any more.
  260. * Mon Feb 05 2007 Alasdair Kergon <agk@redhat.com> - 1.0.3-4
  261. - Add build dependency on new device-mapper-devel package.
  262. - Add preun and post ldconfig requirements.
  263. - Update BuildRoot.
  264. * Wed Nov 1 2006 Peter Jones <pjones@redhat.com> - 1.0.3-3
  265. - Require newer libselinux (#213414)
  266. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.3-2.1
  267. - rebuild
  268. * Wed Jun 7 2006 Jeremy Katz <katzj@redhat.com> - 1.0.3-2
  269. - put shared libs in the right subpackages
  270. * Fri Apr 7 2006 Bill Nottingham <notting@redhat.com> 1.0.3-1
  271. - update to final 1.0.3
  272. * Mon Feb 27 2006 Bill Nottingham <notting@redhat.com> 1.0.3-0.rc2
  273. - update to 1.0.3rc2, fixes bug with HAL & encrypted devices (#182658)
  274. * Wed Feb 22 2006 Bill Nottingham <notting@redhat.com> 1.0.3-0.rc1
  275. - update to 1.0.3rc1, reverts changes to default encryption type
  276. * Tue Feb 21 2006 Bill Nottingham <notting@redhat.com> 1.0.2-1
  277. - update to 1.0.2, fix incompatiblity with old cryptsetup (#176726)
  278. * Mon Feb 20 2006 Karsten Hopp <karsten@redhat.de> 1.0.1-5
  279. - BuildRequires: libselinux-devel
  280. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.1-4.2.1
  281. - bump again for double-long bug on ppc(64)
  282. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.1-4.2
  283. - rebuilt for new gcc4.1 snapshot and glibc changes
  284. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  285. - rebuilt
  286. * Mon Dec 5 2005 Bill Nottingham <notting@redhat.com> 1.0.1-4
  287. - rebuild against new libdevmapper
  288. * Thu Oct 13 2005 Florian La Roche <laroche@redhat.com>
  289. - add -lsepol to rebuild on current fc5
  290. * Mon Aug 22 2005 Karel Zak <kzak@redhat.com> 1.0.1-2
  291. - fix cryptsetup help for isLuks action
  292. * Fri Jul 1 2005 Bill Nottingham <notting@redhat.com> 1.0.1-1
  293. - update to 1.0.1 - fixes incompatiblity with previous cryptsetup for
  294. piped passwords
  295. * Thu Jun 16 2005 Bill Nottingham <notting@redhat.com> 1.0-2
  296. - add patch for 32/64 bit compatibility (#160445, <redhat@paukstadt.de>)
  297. * Tue Mar 29 2005 Bill Nottingham <notting@redhat.com> 1.0-1
  298. - update to 1.0
  299. * Thu Mar 10 2005 Bill Nottingham <notting@redhat.com> 0.993-1
  300. - switch to cryptsetup-luks, for LUKS support
  301. * Tue Oct 12 2004 Bill Nottingham <notting@redhat.com> 0.1-4
  302. - oops, make that *everything* static (#129926)
  303. * Tue Aug 31 2004 Bill Nottingham <notting@redhat.com> 0.1-3
  304. - link some things static, move to /sbin (#129926)
  305. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  306. - rebuilt
  307. * Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 0.1-1
  308. - initial packaging