source: projects/specs/trunk/d/debootstrap/debootstrap-vl.spec @ 7572

Revision 7572, 4.5 KB checked in by daisuke, 11 years ago (diff)

debootstrap: update to 1.0.46

Line 
1Name:           debootstrap
2Version:        1.0.46
3Release:        1%{?_dist_release}
4Summary:        Debian GNU/Linux bootstrapper
5
6Group:          System Environment/Base
7License:        MIT
8URL:            http://code.erisian.com.au/Wiki/debootstrap
9Source0:        http://ftp.debian.org/debian/pool/main/d/debootstrap/debootstrap_%{version}.tar.gz
10Patch0:         debootstrap-devices.patch
11Patch1:         debootstrap-perms.patch
12BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
13BuildArch:      noarch
14
15BuildRequires:  fakeroot, MAKEDEV
16Requires:       gettext, wget, tar, gzip, binutils
17
18
19%description
20debootstrap is used to create a Debian base system from scratch, without
21requiring the availability of dpkg or apt.  It does this by downloading
22.deb files from a mirror site, and carefully unpacking them into a
23directory which can eventually be chrooted into.
24
25This might be often useful coupled with virtualization techniques to run
26Debian GNU/Linux guest system.
27
28
29%prep
30%setup -q
31%patch0 -p1 -b .devices
32%patch1 -p1 -b .perms
33
34
35%build
36# in Makefile, path is hardcoded, modify it to take rpm macros into account
37sed -i -e 's;/usr/sbin;%{_sbindir};' Makefile
38
39# _smp_mflags would make no sense at all
40fakeroot make
41
42
43%install
44rm -rf $RPM_BUILD_ROOT
45install -d $RPM_BUILD_ROOT%{_datadir}/debootstrap/scripts/
46install -d $RPM_BUILD_ROOT%{_sbindir}
47install -d $RPM_BUILD_ROOT%{_mandir}/man8
48install -p -m 0644 debootstrap.8 $RPM_BUILD_ROOT%{_mandir}/man8
49make install DESTDIR=$RPM_BUILD_ROOT \
50       VERSION="%{version}-%{release}" \
51       DSDIR=$RPM_BUILD_ROOT%{_datadir}/debootstrap
52# substitute the rpm macro path
53sed -i -e 's;/usr/share;%{_datadir};' $RPM_BUILD_ROOT%{_sbindir}/debootstrap
54# correct the debootstrap script timestamp
55touch -r debootstrap  $RPM_BUILD_ROOT%{_sbindir}/debootstrap
56
57
58%clean
59rm -rf $RPM_BUILD_ROOT
60
61
62%files
63%defattr(-,root,root,-)
64%{_datadir}/debootstrap
65%{_sbindir}/debootstrap
66%{_mandir}/man8/debootstrap.8*
67%doc debian/changelog debian/copyright README
68
69
70%changelog
71* Fri Mar 22 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.46-1
72- new upstream release
73
74* Sat Aug 18 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.42-1
75- new upstream release
76
77* Tue Dec 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.38-1
78- new upstram release
79
80* Tue Feb 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.27-1
81- initial build for Vine Linux
82
83* Wed Feb 09 2011 Jan Vcelak <jvcelak@redhat.com> 1.0.27-1
84- new upstream release (typo in --private-key, improve Hurd support)
85
86* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.26-2
87- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
88
89* Mon Nov 22 2010 Jan Vcelak <jvcelak@redhat.com> 1.0.26-1
90- new upstream release (fix typos and remove old workaround for md5sum)
91
92* Mon Oct 25 2010 Jan Vcelak <jvcelak@redhat.com> 1.0.25-1
93- new upstream release (support for HTTPS, added Ubuntu Nanty, added Debian Wheezy)
94
95* Wed May 26 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.23-1
96- rebased to 1.0.23 (Add ${misc:Depends}, Add (Ubuntu) maverick as symlink to gutsy)
97
98* Fri Mar 05 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.22-1
99- rebased to 1.0.22
100
101* Wed Sep 30 2009 Adam Goode <adam@spicenitz.org> - 1.0.19-2
102- Make sure to create /dev/console in devices.tar.gz
103
104* Wed Sep 30 2009 Adam Goode <adam@spicenitz.org> - 1.0.19-1
105- New upstream release
106   + Many bugfixes
107   + Support for new distributions
108- Arch patch no longer needed
109- Rebase other patches
110
111* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.10-3
112- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
113
114* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.10-2
115- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
116
117* Tue Jul 15 2008 Lubomir Rintel <lkundrak@v3.sk> - 1.0.10-1
118- New upstream version
119
120* Sun Jun 15 2008 Adam Goode <adam@spicenitz.org> - 1.0.9-1
121- 1.0.9
122
123* Fri Feb 22 2008 Lubomir Kundrak <lkundrak@redhat.com> - 1.0.8-1
124- 1.0.8
125
126* Sun Nov 18 2007 Patrice Dumas <pertusus@free.fr> 1.0.7-2
127- keep timestamps
128- use rpm macros instead of hardcoded paths
129
130* Sat Nov 17 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.0.7-1
131- Version bump
132
133* Thu Nov 15 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.0.3-2
134- Some more fixes, thanks to Patrice Dumas (#329291)
135
136* Fri Oct 12 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.0.3-1
137- Incorporating advises from Patrice Dumas (#329291) in account
138
139* Fri Oct 12 2007 Lubomir Kundrak <lkundrak@redhat.com> 0.3.3.2etch1-1
140- Initial package
Note: See TracBrowser for help on using the repository browser.