source: projects/vbootstrap/trunk/vbootstrap.spec @ 423

Revision 423, 3.4 KB checked in by munepi, 14 years ago (diff)

vbuilder.sh.in: supported 4.2_i386 chroot on x86_64

Line 
1# This package is maintained on trac svn repository. Please do not change on local.
2# If you find a BUG, please report to Vine@vinelinux.org or mailing list or BTS.
3
4%define version 0.0.12
5
6Summary: bootstrap scripts to create a basic Vine Linux system
7Summary(ja): Vine Linux の基本システムを作成するためのスクリプト
8Name: vbootstrap
9Version: %{version}
10Release: 1%{?_dist_release}
11License: public domain
12Group: Development/Tools
13Url: http://trac.vinelinux.org/wiki/VineBootstrap
14
15Source0: %{name}-%{version}.tar.bz2
16
17Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root
18BuildArch: noarch
19BuildRequires: sed
20Requires: bash, apt
21
22Vendor: Project Vine
23Distribution: Vine Linux
24Packager: daisuke, munepi
25
26%description
27vbootstrap is used to create a basic Vine Linux system on existing Vine Linux
28system. It uses rpm and apt to install basic rpm package into a directory
29which can be chrooted into.
30
31%description -l ja
32vbootstrap は Vine Linux の基本システムを既存の Vine Linux システム上で
33作成するスクリプトです。rpm および apt を利用して、指定したディレクトリ
34以下に基本の rpm パッケージをインストールし、chroot できるようにします。
35
36
37%prep
38[ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
39
40%setup
41
42%build
43make
44
45%install
46make DESTDIR=$RPM_BUILD_ROOT install
47
48%clean
49[ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
50
51
52%files
53%defattr(-,root,root)
54%{_sbindir}/vbootstrap
55%{_sbindir}/vbuilder
56%dir %{_datadir}/vbootstrap
57%{_datadir}/vbootstrap/*
58%config(noreplace) %{_sysconfdir}/vbootstrap/vbuilder.conf
59
60
61%changelog
62* Sun Jan 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.12-1
63- added 4.2_i386
64- updated vbuilder.sh.in
65  - supported 4.2_i386 chroot on x86_64
66
67* Tue Jan 05 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.11-1
68- updated vbuilder.sh.in
69  - added Japanese translations for error messages
70  - improved some mounting processes
71    - defined some mount functions
72    - defined apt-get-update function
73  - defined check-parameter function
74
75* Tue Dec 29 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.10-1
76- updated vbuilder.sh.in
77  - added --dist-upgrade option which provides a flag to build
78    VineSeed bootstrap via stable relase version
79
80* Sat Dec 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.9-1
81- fixed vbuilder.sh.in around --target option
82
83* Sat Dec 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.8-1
84- updated vbuilder.sh.in
85  - added --target option which gives a build target of source rpm
86
87* Sun Nov 22 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.7-1
88- updated vbuilder.sh.in
89
90* Sat Oct 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.6-1
91- updated vbuilder.sh.in, little
92
93* Sat Oct 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.5-1
94- updated vbuilder.sh.in and vbuilder.conf.in
95  - extended to store built rpms on chroot env. in each arch. of home rpm dir.
96
97* Sun Sep 13 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.4-1
98- added vine-release in BASE_PKGS of scripts/*
99- added vbuilder.conf
100- updated vbuilder.sh.in
101
102* Tue Sep 01 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-2
103- rebuilt to add signature
104
105* Mon Aug 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-1
106- support 5.0 (by daisuke-san)
107- update vbuilder.sh.in
108  - check chroot archtecture
109
110* Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.2-1
111- add vbuilder
112
113* Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.1-1
114- initial build
Note: See TracBrowser for help on using the repository browser.