source: projects/specs/branches/6/i/isomd5sum/isomd5sum-vl.spec @ 781

Revision 781, 2.3 KB checked in by owa, 14 years ago (diff)

new upstream release

Line 
1%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
2
3Summary: Utilities for working with md5sum implanted in ISO images
4Summary(ja): ISO イメージに埋め込まれた md5sum を処理するためのユーティリティ
5Name: isomd5sum
6Version: 1.0.5
7Release: 1%{?_dist_release}
8License: GPLv2+
9Group: Applications/System
10URL: http://git.fedorahosted.org/git/?p=isomd5sum.git;a=summary
11Source0: http://fedorahosted.org/releases/i/s/isomd5sum/%{name}-%{version}.tar.bz2
12BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
13BuildRequires: python-devel
14BuildRequires: popt-devel
15
16%description
17The isomd5sum package contains utilities for implanting and verifying
18an md5sum implanted into an ISO9660 image.
19
20%package devel
21Summary: Development headers and library for using isomd5sum
22Summary(ja): Development headers and library for using isomd5sum
23Group: Development/Libraries
24Requires: %{name} = %{version}-%{release}
25
26%description devel
27This contains header files and a library for working with the isomd5sum
28implanting and checking.
29
30
31%prep
32%setup -q
33
34%build
35make
36
37%install
38rm -rf $RPM_BUILD_ROOT
39make DESTDIR=$RPM_BUILD_ROOT install
40
41%clean
42rm -rf $RPM_BUILD_ROOT
43
44
45%files
46%defattr(-,root,root,-)
47%doc COPYING
48/usr/bin/implantisomd5
49/usr/bin/checkisomd5
50%{_mandir}/man*/*
51%{python_sitearch}/pyisomd5sum.so
52
53%files devel
54%defattr(-,root,root,-)
55%{_includedir}/*.h
56%{_libdir}/*.a
57
58%changelog
59* Fri Apr 09 2010 Shu KONNO <owa@bg.wakwak.com> 1.0.5-1
60- updated isomd5sum to 1.0.5
61
62* Wed Apr 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.4-2
63- changed devel Group to Development/Libraries
64
65* Tue Aug 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
66- initial build for Vine Linux
67
68* Thu Feb  7 2008 Jeremy Katz <katzj@redhat.com> - 1:1.0.4-1
69- Add man pages from Ryan Finnie (ryan AT finnie DOT org)
70- Use popt in checkisomd5 (Ryan Finnie)
71- Fix verbose/gauge interactions (Ryan Finnie)
72- A few other little janitorial things (Ryan Finnie)
73
74* Mon Dec 10 2007 Jeremy Katz <katzj@redhat.com> - 1:1.0.2-1
75- The "fix the build after changing the API" release
76
77* Mon Dec 10 2007 Jeremy Katz <katzj@redhat.com> - 1:1.0.1-1
78- Add some simple callback support in the library
79
80* Fri Dec  7 2007 Jeremy Katz <katzj@redhat.com> - 1.0-1
81- Initial build.
82
Note: See TracBrowser for help on using the repository browser.