| [315] | 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. |
|---|
| [118] | 3 | |
|---|
| [6962] | 4 | %define version 0.1 |
|---|
| [118] | 5 | |
|---|
| 6 | Summary: bootstrap scripts to create a basic Vine Linux system |
|---|
| 7 | Summary(ja): Vine Linux の基本システムを作成するためのスクリプト |
|---|
| 8 | Name: vbootstrap |
|---|
| 9 | Version: %{version} |
|---|
| [8169] | 10 | Release: 2%{?_dist_release} |
|---|
| [118] | 11 | License: public domain |
|---|
| 12 | Group: Development/Tools |
|---|
| 13 | Url: http://trac.vinelinux.org/wiki/VineBootstrap |
|---|
| 14 | |
|---|
| 15 | Source0: %{name}-%{version}.tar.bz2 |
|---|
| 16 | |
|---|
| 17 | Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root |
|---|
| 18 | BuildArch: noarch |
|---|
| 19 | BuildRequires: sed |
|---|
| 20 | Requires: bash, apt |
|---|
| [5508] | 21 | %if %{?_dist_release} >= "vl7" |
|---|
| 22 | Requires: aufs-util |
|---|
| 23 | %else |
|---|
| [485] | 24 | Requires: unionfs-utils |
|---|
| [5508] | 25 | %endif |
|---|
| [118] | 26 | |
|---|
| 27 | Vendor: Project Vine |
|---|
| 28 | Distribution: Vine Linux |
|---|
| 29 | Packager: daisuke, munepi |
|---|
| 30 | |
|---|
| 31 | %description |
|---|
| 32 | vbootstrap is used to create a basic Vine Linux system on existing Vine Linux |
|---|
| 33 | system. It uses rpm and apt to install basic rpm package into a directory |
|---|
| 34 | which can be chrooted into. |
|---|
| 35 | |
|---|
| [689] | 36 | vbuilder constracts a chroot environment with vbootstrap, and builds |
|---|
| 37 | a rpm package inside the chroot. |
|---|
| 38 | it is a useful system to check that a package has correct BuildRequires |
|---|
| 39 | dependencies. |
|---|
| 40 | |
|---|
| 41 | |
|---|
| [118] | 42 | %description -l ja |
|---|
| 43 | vbootstrap は Vine Linux の基本システムを既存の Vine Linux システム上で |
|---|
| 44 | 作成するスクリプトです。rpm および apt を利用して、指定したディレクトリ |
|---|
| 45 | 以下に基本の rpm パッケージをインストールし、chroot できるようにします。 |
|---|
| 46 | |
|---|
| [689] | 47 | vbuilder は vbootstrap を利用して chroot 環境の構築し、 |
|---|
| 48 | その chroot の中でパッケージをビルドします。 |
|---|
| 49 | パッケージが正しい BuildRequires 依存関係を持っているかを確認するために |
|---|
| 50 | 有用なシステムです。 |
|---|
| [118] | 51 | |
|---|
| [689] | 52 | |
|---|
| [118] | 53 | %prep |
|---|
| 54 | [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} |
|---|
| 55 | |
|---|
| 56 | %setup |
|---|
| 57 | |
|---|
| 58 | %build |
|---|
| [1132] | 59 | %__make \ |
|---|
| [4530] | 60 | %if %{?_dist_release} == "vl6" |
|---|
| [1132] | 61 | VBUILDER_DEFAULT_VERSION=\${VBUILDER_STABLE_VERSION} |
|---|
| 62 | %endif |
|---|
| [4530] | 63 | %if %{?_dist_release} == "vl5" |
|---|
| 64 | VBUILDER_DEFAULT_VERSION=5.2 |
|---|
| 65 | %endif |
|---|
| [6714] | 66 | %if %{?_dist_release} == "vl4" |
|---|
| 67 | VBUILDER_DEFAULT_VERSION=4.2 |
|---|
| 68 | %endif |
|---|
| [118] | 69 | |
|---|
| 70 | %install |
|---|
| [513] | 71 | %__make DESTDIR=$RPM_BUILD_ROOT install |
|---|
| [118] | 72 | |
|---|
| [2522] | 73 | %find_lang %{name} |
|---|
| 74 | |
|---|
| [118] | 75 | %clean |
|---|
| 76 | [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} |
|---|
| 77 | |
|---|
| 78 | |
|---|
| [2522] | 79 | %files -f %{name}.lang |
|---|
| [118] | 80 | %defattr(-,root,root) |
|---|
| [2536] | 81 | %{_bindir}/vbuilder |
|---|
| [118] | 82 | %{_sbindir}/vbootstrap |
|---|
| 83 | %{_sbindir}/vbuilder |
|---|
| 84 | %dir %{_datadir}/vbootstrap |
|---|
| 85 | %{_datadir}/vbootstrap/* |
|---|
| [484] | 86 | %{_sysconfdir}/bash_completion.d/vbuilder |
|---|
| [5364] | 87 | %{_sysconfdir}/vbootstrap/profile.d/sample.conf.skip |
|---|
| [323] | 88 | %config(noreplace) %{_sysconfdir}/vbootstrap/vbuilder.conf |
|---|
| [2532] | 89 | %config(noreplace) %{_sysconfdir}/pam.d/vbuilder |
|---|
| 90 | %config(noreplace) %{_sysconfdir}/security/console.apps/vbuilder |
|---|
| [118] | 91 | |
|---|
| 92 | |
|---|
| 93 | %changelog |
|---|
| [8169] | 94 | * Mon Jan 13 2014 Munehiro Yamamoto <munepi@vinelinux.org> 0.1-2 |
|---|
| 95 | - rebuilt |
|---|
| 96 | |
|---|
| [6962] | 97 | * Sat Oct 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.1-1 |
|---|
| 98 | - avoid rpm's NOKEY warning in vboostrap |
|---|
| 99 | - add RPM::Install-Options::=--nosignature |
|---|
| 100 | |
|---|
| [6957] | 101 | * Fri Oct 19 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.60-1 |
|---|
| 102 | - added some processes to mount/unmount /proc in vbootstrap_post() |
|---|
| 103 | for scripts/VineSeed_{i386,x86_64} |
|---|
| 104 | |
|---|
| [6874] | 105 | * Wed Oct 03 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.59-1 |
|---|
| 106 | - add --force rpm option to install packages in vbootstrap |
|---|
| 107 | - add RPM::PM="external" for use external rpm |
|---|
| 108 | - add RPM::Install-Options::=--force to force option |
|---|
| 109 | |
|---|
| [6701] | 110 | * Sat Aug 11 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.58-1 |
|---|
| 111 | - set VBUILDER_STABLE_VERSION=6 in Makefile |
|---|
| [6703] | 112 | - updated po files |
|---|
| [6701] | 113 | |
|---|
| [6665] | 114 | * Mon Jul 30 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.57-1 |
|---|
| 115 | - change 6.0 to 6 |
|---|
| 116 | - install MAKEDEV |
|---|
| 117 | |
|---|
| [6377] | 118 | * Tue Jun 19 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.56-1 |
|---|
| 119 | - use /proc/filesystem to detect aufs capability |
|---|
| 120 | |
|---|
| [6088] | 121 | * Tue May 1 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.55-1 |
|---|
| 122 | - added util-linux in $$BASE_PKGS (scripts/VineSeed_{i386,x86_64}) |
|---|
| 123 | |
|---|
| [5574] | 124 | * Sun Feb 5 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.54-1 |
|---|
| 125 | - rename _filedir() as _vbootstrap_filedir() |
|---|
| 126 | |
|---|
| [5513] | 127 | * Sat Jan 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.53-1 |
|---|
| 128 | - fix unmounting aufs |
|---|
| 129 | |
|---|
| [5508] | 130 | * Fri Jan 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.52-1 |
|---|
| 131 | - update vbuilder.sh.in |
|---|
| 132 | - add "--no-build-essential" option |
|---|
| 133 | - R: aufs-util on vl7 or upper |
|---|
| 134 | |
|---|
| [5504] | 135 | * Fri Jan 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.51-1 |
|---|
| 136 | - update vbuilder.sh.in, libvbuilder.sh.in |
|---|
| 137 | - support aufs |
|---|
| 138 | |
|---|
| [5497] | 139 | * Thu Jan 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.50-1 |
|---|
| 140 | - update 6.0_{i386,x86_64}.sh |
|---|
| 141 | - install nss before glibc on vbootstrap |
|---|
| 142 | |
|---|
| [5452] | 143 | * Sun Jan 22 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.49-1 |
|---|
| 144 | - updated vbuilder.sh.in |
|---|
| 145 | - fixed Usage() |
|---|
| 146 | - avoid to output 'W: Duplicate sources.list entry...' in Build() |
|---|
| 147 | |
|---|
| [5364] | 148 | * Sun Jan 8 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.48-1 |
|---|
| 149 | - updated vbootstrap.sh.in |
|---|
| 150 | - specify a location to fetch base packages |
|---|
| 151 | - updated vbuilder.sh.in |
|---|
| 152 | - replaced "rpm --addsign" with "rpmsign --addsign" |
|---|
| 153 | - added --fetch-url option |
|---|
| 154 | - added --profile option |
|---|
| 155 | - added sample.conf.skip |
|---|
| 156 | |
|---|
| [5012] | 157 | * Wed Oct 19 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.47-1 |
|---|
| [5364] | 158 | - added the category updates in 5.2_{i386,ppc,x86_64}, 6.0_{i386,x86_64} |
|---|
| [5012] | 159 | (Thanks to daisuke-san and miyabi-san) |
|---|
| 160 | |
|---|
| [4622] | 161 | * Sat Aug 20 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.46-1 |
|---|
| [4636] | 162 | - updated vbuilder.sh.in |
|---|
| 163 | - optimized Build() |
|---|
| 164 | - do not install self-build-setup package in Build() |
|---|
| [4622] | 165 | |
|---|
| [4530] | 166 | * Tue Aug 09 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.45-1 |
|---|
| 167 | - set STABLE_VERSION to 6.0 |
|---|
| 168 | |
|---|
| [4171] | 169 | * Sat Jun 18 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.44-1 |
|---|
| [4004] | 170 | - updated vbuilder |
|---|
| 171 | - allowed some illegal patterns of %%{release} |
|---|
| [4070] | 172 | - added UGROUPS=wheel in vbuilder.console |
|---|
| 173 | - supported 6.0_i386 and 6.0_x86_64 |
|---|
| [4170] | 174 | - updated ja.po |
|---|
| [4004] | 175 | |
|---|
| [3742] | 176 | * Sat Apr 30 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.43-1 |
|---|
| [3676] | 177 | - updated vbootstrap |
|---|
| 178 | - supported versions format: <version>_<arch> |
|---|
| [3675] | 179 | - updated vbuilder.sh.in |
|---|
| 180 | - dropped the action "show-info" |
|---|
| [3676] | 181 | - sync the above change for vbootstrap |
|---|
| [3742] | 182 | - added the target "noarch" in $$RPM_TARGET_LIST |
|---|
| [3675] | 183 | |
|---|
| [3479] | 184 | * Sat Apr 16 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.42-1 |
|---|
| 185 | - fixed RPM_Sign(), Login_Chroot() in vbuilder.sh.in |
|---|
| 186 | - the command "vbuilder clean" returns 0. |
|---|
| 187 | |
|---|
| [3380] | 188 | * Sat Apr 09 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.41-1 |
|---|
| [3343] | 189 | - updated vbuilder.sh.in |
|---|
| 190 | - dropped user_from_uid() |
|---|
| [3380] | 191 | - updated ja.po |
|---|
| [3343] | 192 | |
|---|
| [3021] | 193 | * Sun Mar 20 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.40-1 |
|---|
| [2768] | 194 | - updated vbuilder.sh.in |
|---|
| [3300] | 195 | - arranged some procedures to mount /proc and unionfs_dir |
|---|
| 196 | (Thanks to parrot-san and iwai-san) |
|---|
| [3021] | 197 | |
|---|
| 198 | * Sun Feb 27 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.39-1 |
|---|
| 199 | - updated vbuilder.sh.in |
|---|
| [2768] | 200 | - fixed "unionfs_dir" in mount-chroot-mount() (Thanks to Takemikaduchi-san) |
|---|
| [2769] | 201 | - improved Clean() |
|---|
| [2768] | 202 | |
|---|
| [2711] | 203 | * Fri Feb 18 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.38-1 |
|---|
| 204 | - updated vbuilder.sh.in |
|---|
| 205 | - added $$UNIONFS_DIR |
|---|
| [2718] | 206 | - added --debug, --login options |
|---|
| 207 | - applied vbootstrap-0.0.37-armhack.patch (Thanks to parrot-san) |
|---|
| [2711] | 208 | |
|---|
| [2668] | 209 | * Wed Feb 09 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.37-1 |
|---|
| 210 | - fixed a little mistake of vbuilder.sh.in |
|---|
| 211 | - supported --unionfs for RPM_Sign() |
|---|
| 212 | |
|---|
| [2662] | 213 | * Wed Feb 09 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.36-1 |
|---|
| 214 | - updated vbuilder.sh.in |
|---|
| 215 | - improved RPM_Sign() to sign rpms under usermode |
|---|
| 216 | |
|---|
| [2531] | 217 | * Wed Jan 19 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.35-1 |
|---|
| 218 | - updated po translations |
|---|
| 219 | - updated vbuilder.sh.in, vbuilder-bash-completion.sh |
|---|
| 220 | - added --rpmbuild-define, --rpmbuild-without option |
|---|
| [2532] | 221 | - supported usermode |
|---|
| 222 | - dropped require-root() from vbuilder.sh.in |
|---|
| [2531] | 223 | |
|---|
| [2522] | 224 | * Tue Jan 18 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.34-1 |
|---|
| 225 | - updated vbuilder.sh.in |
|---|
| 226 | - defined require-root() (Thanks to tomo-p-san) |
|---|
| 227 | - gettextlize |
|---|
| 228 | - added vbootstrap.po, ja.po, Makefile, POTFILES.in in po/ |
|---|
| 229 | |
|---|
| [2488] | 230 | * Tue Jan 11 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.33-1 |
|---|
| 231 | - added /bin/sh option -l at chroot_sh (Thanks to Takemikaduchi-san) |
|---|
| 232 | |
|---|
| [2324] | 233 | * Fri Dec 10 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.32-1 |
|---|
| 234 | - setarch ix86 if ix86 chroot on x86_64 host |
|---|
| 235 | |
|---|
| [2270] | 236 | * Fri Dec 03 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.31-1 |
|---|
| 237 | - supported Vine Linux 5.2 |
|---|
| 238 | |
|---|
| 239 | * Sun Aug 08 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.30-1 |
|---|
| 240 | - updated vbuilder.sh.in |
|---|
| 241 | - added --rpmbuild-with option |
|---|
| 242 | |
|---|
| [1375] | 243 | * Sat Jul 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.29-1 |
|---|
| [1240] | 244 | - updated vbuilder.sh.in |
|---|
| 245 | - added --sign option |
|---|
| [1267] | 246 | - added --no-install option |
|---|
| [1240] | 247 | |
|---|
| [1136] | 248 | * Fri Jun 04 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.28-1 |
|---|
| 249 | - updated vbuilder.sh.in |
|---|
| 250 | - made /dev/urandom on chroot in Build() |
|---|
| 251 | - added "-o APT::Install::Virtual=true" on apt-get build-dep |
|---|
| 252 | to solve BuildRequires dependenceies of virtual packages |
|---|
| [934] | 253 | |
|---|
| [931] | 254 | * Tue May 04 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.27-1 |
|---|
| 255 | - changed an order of BASE_PKGS in vbootstrap/scripts/*, respectively |
|---|
| 256 | - apt package has Requires: rpm dependence |
|---|
| [932] | 257 | - dropped "rpm" from $$BASE_PKGS |
|---|
| [924] | 258 | |
|---|
| [921] | 259 | * Mon May 03 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.26-1 |
|---|
| 260 | - updated vbuilder.sh.in |
|---|
| 261 | - made /dev/random on chroot in Build() |
|---|
| [885] | 262 | |
|---|
| [884] | 263 | * Sat Apr 24 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.25-1 |
|---|
| [800] | 264 | - updated vbuilder.sh.in |
|---|
| 265 | - supported "test" category |
|---|
| [852] | 266 | - added some comments for mount-chroot() |
|---|
| [800] | 267 | - updated vbuilder-bash-completion.sh |
|---|
| 268 | |
|---|
| [796] | 269 | * Sun Apr 11 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.24-1 |
|---|
| [791] | 270 | - updated vbootstrap.sh.in (daisuke-san) |
|---|
| 271 | - changed to cache /var/lib/apt/lists, /var/cache/apt/archives |
|---|
| 272 | in bootstrap (not in host) |
|---|
| 273 | - set Dir::State and Dir::Cache in APT_OPTS |
|---|
| [796] | 274 | |
|---|
| 275 | * Sun Apr 11 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.23-1 |
|---|
| [791] | 276 | - updated vbuilder.sh.in |
|---|
| 277 | - added --category option |
|---|
| 278 | |
|---|
| [725] | 279 | * Fri Apr 02 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.22-1 |
|---|
| [709] | 280 | - updated vbuilder.sh.in: |
|---|
| [725] | 281 | - added --bootstrap-dir, --built-rpms-dir, --cache-dir options |
|---|
| 282 | - added show-info action |
|---|
| 283 | - defined write-vbuilder-log() |
|---|
| 284 | - added CACHE_DIR in vbuilder.conf.in |
|---|
| [709] | 285 | - updated vbuilder-bash-completion.sh |
|---|
| 286 | |
|---|
| [679] | 287 | * Fri Mar 26 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.21-1 |
|---|
| [688] | 288 | - updated vbuilder.sh.in: |
|---|
| 289 | - added a compatible name for actions: |
|---|
| 290 | dropped two hyphens "--" from the head of an action "--hoge" |
|---|
| 291 | (e.g. build-rpm = --build-rpm) |
|---|
| [689] | 292 | - added about vbuilder in %%description and %%description -l ja |
|---|
| [691] | 293 | - updated vbuilder-bash-completion.sh: s/5.0/5.1/ |
|---|
| [679] | 294 | |
|---|
| [628] | 295 | * Sun Mar 21 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.20-1 |
|---|
| 296 | - fixed RPM_Build() |
|---|
| 297 | |
|---|
| [519] | 298 | * Fri Mar 05 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.0.19-1 |
|---|
| 299 | - remove Retry_vbootstrap-post() from the vbuilder script: |
|---|
| 300 | the trick (implemented in 0.0.18-1) moved to vbootstrap/scripts/* instead |
|---|
| 301 | |
|---|
| [518] | 302 | * Thu Mar 04 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.0.18-1 |
|---|
| 303 | - vbuilder:Retry_vbootstrap-post(): pass --justdb option to rpm |
|---|
| 304 | so that apt-get don't have to actually install packages again |
|---|
| 305 | (this will help avoid creating annoying .rpmorig/.rpmnew files) |
|---|
| 306 | |
|---|
| [516] | 307 | * Thu Mar 04 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.0.17-1 |
|---|
| 308 | - add --help option to vbuilder |
|---|
| 309 | - ensure all files/subdirectories under BUILT_RPMS_DIR |
|---|
| 310 | (i.e. $HOME/vbuilder/{5.1,VineSeed}/{RPMS/{i686,ppc,x86_64},SRPMS}/*) |
|---|
| 311 | have ownerships of the user/group who executed "sudo vbuilder" |
|---|
| 312 | |
|---|
| [485] | 313 | * Mon Feb 22 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.16-1 |
|---|
| 314 | - added Requires: unionfs-utils |
|---|
| 315 | - updated vbuilder.sh.in |
|---|
| 316 | - added --unionfs option |
|---|
| [513] | 317 | - supported 5.1 (by iwai-san) |
|---|
| [485] | 318 | |
|---|
| [484] | 319 | * Sat Feb 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.15-1 |
|---|
| 320 | - added vbuilder-bash-completion.sh |
|---|
| 321 | |
|---|
| [464] | 322 | * Sat Feb 13 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.14-1 |
|---|
| [455] | 323 | - updated vbuilder.sh.in |
|---|
| 324 | - used __chroot_sh |
|---|
| 325 | - improved some functions for mounting file systems |
|---|
| [464] | 326 | - defined Retry_vbootstrap-post() |
|---|
| [455] | 327 | |
|---|
| [452] | 328 | * Sat Feb 06 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.13-1 |
|---|
| 329 | - updated vbuilder.sh.in |
|---|
| 330 | - fixed /home/vbuilder/.rpmmacros for VineSeed_i386, VineSeed |
|---|
| 331 | - improved some mounting processes |
|---|
| 332 | - defined mount_cache_dir() |
|---|
| 333 | |
|---|
| [423] | 334 | * Sun Jan 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.12-1 |
|---|
| 335 | - added 4.2_i386 |
|---|
| 336 | - updated vbuilder.sh.in |
|---|
| 337 | - supported 4.2_i386 chroot on x86_64 |
|---|
| 338 | |
|---|
| [418] | 339 | * Tue Jan 05 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.11-1 |
|---|
| 340 | - updated vbuilder.sh.in |
|---|
| 341 | - added Japanese translations for error messages |
|---|
| 342 | - improved some mounting processes |
|---|
| 343 | - defined some mount functions |
|---|
| [455] | 344 | - defined apt-get-update() function |
|---|
| 345 | - defined check-parameter() function |
|---|
| [412] | 346 | |
|---|
| [411] | 347 | * Tue Dec 29 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.10-1 |
|---|
| 348 | - updated vbuilder.sh.in |
|---|
| 349 | - added --dist-upgrade option which provides a flag to build |
|---|
| 350 | VineSeed bootstrap via stable relase version |
|---|
| 351 | |
|---|
| [407] | 352 | * Sat Dec 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.9-1 |
|---|
| 353 | - fixed vbuilder.sh.in around --target option |
|---|
| 354 | |
|---|
| [406] | 355 | * Sat Dec 26 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.8-1 |
|---|
| 356 | - updated vbuilder.sh.in |
|---|
| 357 | - added --target option which gives a build target of source rpm |
|---|
| 358 | |
|---|
| [396] | 359 | * Sun Nov 22 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.7-1 |
|---|
| 360 | - updated vbuilder.sh.in |
|---|
| 361 | |
|---|
| [371] | 362 | * Sat Oct 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.6-1 |
|---|
| 363 | - updated vbuilder.sh.in, little |
|---|
| 364 | |
|---|
| [370] | 365 | * Sat Oct 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.5-1 |
|---|
| 366 | - updated vbuilder.sh.in and vbuilder.conf.in |
|---|
| 367 | - extended to store built rpms on chroot env. in each arch. of home rpm dir. |
|---|
| [330] | 368 | |
|---|
| [323] | 369 | * Sun Sep 13 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.4-1 |
|---|
| 370 | - added vine-release in BASE_PKGS of scripts/* |
|---|
| 371 | - added vbuilder.conf |
|---|
| [314] | 372 | - updated vbuilder.sh.in |
|---|
| 373 | |
|---|
| [305] | 374 | * Tue Sep 01 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-2 |
|---|
| 375 | - rebuilt to add signature |
|---|
| 376 | |
|---|
| [304] | 377 | * Mon Aug 31 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.0.3-1 |
|---|
| 378 | - support 5.0 (by daisuke-san) |
|---|
| [135] | 379 | - update vbuilder.sh.in |
|---|
| [304] | 380 | - check chroot archtecture |
|---|
| [135] | 381 | |
|---|
| [118] | 382 | * Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.2-1 |
|---|
| 383 | - add vbuilder |
|---|
| 384 | |
|---|
| 385 | * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.0.1-1 |
|---|
| 386 | - initial build |
|---|