~ubuntu-branches/ubuntu/raring/isomd5sum/raring

« back to all changes in this revision

Viewing changes to isomd5sum.spec

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Finnie
  • Date: 2010-10-21 11:32:13 UTC
  • mfrom: (1.1.4 upstream) (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20101021113213-u2kczgnnbaygia28
Tags: 1:1.0.5-1
* New upstream version.
* debian/rules: Include /usr/share/python/python.mk.
* debian/rules: Use call py_sitename_sh macro to install all python 
  stuffs correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
2
 
 
3
 
Summary: Utilities for working with md5sum implanted in ISO images
4
 
Name: isomd5sum
5
 
Version: 1.0.4
6
 
Release: 1
7
 
Epoch: 1
8
 
License: GPLv2+
9
 
Group: Applications/System
10
 
URL: http://git.fedorahosted.org/git/?p=isomd5sum.git;a=summary
11
 
Source0: http://fedorahosted.org/releases/i/s/isomd5sum/%{name}-%{version}.tar.bz2
12
 
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
13
 
BuildRequires: python-devel popt-devel
14
 
 
15
 
%description
16
 
The isomd5sum package contains utilities for implanting and verifying
17
 
an md5sum implanted into an ISO9660 image.
18
 
 
19
 
%package devel
20
 
Summary: Development headers and library for using isomd5sum 
21
 
Group: Development/System
22
 
Requires: %{name} = %{epoch}:%{version}-%{release}
23
 
 
24
 
%description devel
25
 
This contains header files and a library for working with the isomd5sum
26
 
implanting and checking.
27
 
 
28
 
 
29
 
%prep
30
 
%setup -q
31
 
 
32
 
%build
33
 
make
34
 
 
35
 
%install
36
 
rm -rf $RPM_BUILD_ROOT
37
 
make DESTDIR=$RPM_BUILD_ROOT install
38
 
 
39
 
%clean
40
 
rm -rf $RPM_BUILD_ROOT
41
 
 
42
 
 
43
 
%files
44
 
%defattr(-,root,root,-)
45
 
%doc COPYING
46
 
/usr/bin/implantisomd5
47
 
/usr/bin/checkisomd5
48
 
%{_mandir}/man*/*
49
 
%{python_sitearch}/pyisomd5sum.so
50
 
 
51
 
%files devel
52
 
%defattr(-,root,root,-)
53
 
%{_includedir}/*.h
54
 
%{_libdir}/*.a
55
 
 
56
 
%changelog
57
 
* Thu Feb  7 2008 Jeremy Katz <katzj@redhat.com> - 1:1.0.4-1
58
 
- Add man pages from Ryan Finnie (ryan AT finnie DOT org)
59
 
- Use popt in checkisomd5 (Ryan Finnie)
60
 
- Fix verbose/gauge interactions (Ryan Finnie)
61
 
- A few other little janitorial things (Ryan Finnie)
62
 
 
63
 
* Mon Dec 10 2007 Jeremy Katz <katzj@redhat.com> - 1:1.0.2-1
64
 
- The "fix the build after changing the API" release
65
 
 
66
 
* Mon Dec 10 2007 Jeremy Katz <katzj@redhat.com> - 1:1.0.1-1
67
 
- Add some simple callback support in the library
68
 
 
69
 
* Fri Dec  7 2007 Jeremy Katz <katzj@redhat.com> - 1.0-1
70
 
- Initial build.
71