source: projects/specs/branches/6/d/debootstrap/debootstrap-vl.spec @ 2741

Revision 2741, 4.2 KB checked in by daisuke, 13 years ago (diff)

debootstrap: new package, 1.0.27

Line 
1Name:           debootstrap
2Version:        1.0.27
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 -n debootstrap
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* Tue Feb 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.27-1
72- initial build for Vine Linux
73
74* Wed Feb 09 2011 Jan Vcelak <jvcelak@redhat.com> 1.0.27-1
75- new upstream release (typo in --private-key, improve Hurd support)
76
77* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.26-2
78- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
79
80* Mon Nov 22 2010 Jan Vcelak <jvcelak@redhat.com> 1.0.26-1
81- new upstream release (fix typos and remove old workaround for md5sum)
82
83* Mon Oct 25 2010 Jan Vcelak <jvcelak@redhat.com> 1.0.25-1
84- new upstream release (support for HTTPS, added Ubuntu Nanty, added Debian Wheezy)
85
86* Wed May 26 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.23-1
87- rebased to 1.0.23 (Add ${misc:Depends}, Add (Ubuntu) maverick as symlink to gutsy)
88
89* Fri Mar 05 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.22-1
90- rebased to 1.0.22
91
92* Wed Sep 30 2009 Adam Goode <adam@spicenitz.org> - 1.0.19-2
93- Make sure to create /dev/console in devices.tar.gz
94
95* Wed Sep 30 2009 Adam Goode <adam@spicenitz.org> - 1.0.19-1
96- New upstream release
97   + Many bugfixes
98   + Support for new distributions
99- Arch patch no longer needed
100- Rebase other patches
101
102* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.10-3
103- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
104
105* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.10-2
106- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
107
108* Tue Jul 15 2008 Lubomir Rintel <lkundrak@v3.sk> - 1.0.10-1
109- New upstream version
110
111* Sun Jun 15 2008 Adam Goode <adam@spicenitz.org> - 1.0.9-1
112- 1.0.9
113
114* Fri Feb 22 2008 Lubomir Kundrak <lkundrak@redhat.com> - 1.0.8-1
115- 1.0.8
116
117* Sun Nov 18 2007 Patrice Dumas <pertusus@free.fr> 1.0.7-2
118- keep timestamps
119- use rpm macros instead of hardcoded paths
120
121* Sat Nov 17 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.0.7-1
122- Version bump
123
124* Thu Nov 15 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.0.3-2
125- Some more fixes, thanks to Patrice Dumas (#329291)
126
127* Fri Oct 12 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.0.3-1
128- Incorporating advises from Patrice Dumas (#329291) in account
129
130* Fri Oct 12 2007 Lubomir Kundrak <lkundrak@redhat.com> 0.3.3.2etch1-1
131- Initial package
Note: See TracBrowser for help on using the repository browser.