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