diff options
author | Gui Chen <gui.chen@intel.com> | 2013-11-26 01:52:26 -0500 |
---|---|---|
committer | Gui Chen <gui.chen@intel.com> | 2013-12-03 21:24:20 -0500 |
commit | ba653fc818eda8aeefc2604f07332cbe72d083fb (patch) | |
tree | ed48880845561ed8098902feee19208be68a06db /debian | |
parent | c0dff6dd4bd3087cceada997df97abf596efd6ef (diff) | |
download | mic-ba653fc818eda8aeefc2604f07332cbe72d083fb.tar.gz mic-ba653fc818eda8aeefc2604f07332cbe72d083fb.tar.bz2 mic-ba653fc818eda8aeefc2604f07332cbe72d083fb.zip |
split native requirements to native-mic package
Change-Id: I3dda824ac750573b4403e087fff31bc78a3ad29a
Signed-off-by: Gui Chen <gui.chen@intel.com>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/control | 40 | ||||
-rw-r--r-- | debian/docs | 1 | ||||
-rw-r--r-- | debian/mic-native.install | 1 | ||||
-rw-r--r-- | debian/mic.install | 3 | ||||
-rwxr-xr-x | debian/rules | 1 |
5 files changed, 32 insertions, 14 deletions
diff --git a/debian/control b/debian/control index 43c48e8..c1b481a 100644 --- a/debian/control +++ b/debian/control @@ -8,17 +8,35 @@ Homepage: http://www.tizen.org Package: mic Architecture: all -Depends: ${misc:Depends}, ${python:Depends}, ${dist:Depends}, +Depends: ${misc:Depends}, ${python:Depends}, + rpm, python-rpm, + python-urlgrabber, + cpio, bzip2, - dmsetup, - dosfstools, + gzip +Conflicts: + mic2 +Description: image creator for Linux distributions + The tool mic is used to create and manipulate images for Linux distributions. + It is composed of three subcommand\: create, convert, chroot. Subcommand create + is used to create images with different types; subcommand convert is used to + convert an image to a specified type; subcommand chroot is used to chroot into + an image. + +Package: mic-native +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, ${dist:Depends}, + util-linux, + coreutils, + psmisc, e2fsprogs (>= 1.41), + dosfstools, isomd5sum, genisoimage, + dmsetup, kpartx, parted, - psmisc, squashfs-tools (>= 4.0), yum (>= 3.2), syslinux (>= 2:4.05), @@ -26,17 +44,11 @@ Depends: ${misc:Depends}, ${python:Depends}, ${dist:Depends}, libzypp, tizen-python-zypp-0.5.14, python-m2crypto, - python-urlgrabber, - psmisc + mic, Recommends: binfmt-support, btrfs-tools, udisks | hal -Conflicts: - mic2 -Description: image creator for Linux distributions - The tool mic is used to create and manipulate images for Linux distributions. - It is composed of three subcommand\: create, convert, chroot. Subcommand create - is used to create images with different types; subcommand convert is used to - convert an image to a specified type; subcommand chroot is used to chroot into - an image. +Description: Native support for mic + The native support package for mic, it includes all requirements + for mic native running. diff --git a/debian/docs b/debian/docs index a1320b1..678115e 100644 --- a/debian/docs +++ b/debian/docs @@ -1 +1,2 @@ README.rst +doc/RELEASE_NOTES diff --git a/debian/mic-native.install b/debian/mic-native.install new file mode 100644 index 0000000..dfb6146 --- /dev/null +++ b/debian/mic-native.install @@ -0,0 +1 @@ +debian/mic/usr/bin/mic-native diff --git a/debian/mic.install b/debian/mic.install new file mode 100644 index 0000000..499f595 --- /dev/null +++ b/debian/mic.install @@ -0,0 +1,3 @@ +debian/mic/usr/bin/mic +debian/mic/usr/lib/* +debian/mic/etc/* diff --git a/debian/rules b/debian/rules index e142fa8..9049449 100755 --- a/debian/rules +++ b/debian/rules @@ -35,6 +35,7 @@ install: build install -m644 doc/mic.1 $(CURDIR)/debian/mic/usr/share/man/man1 install -m755 etc/mic.bash $(CURDIR)/debian/mic/etc/bash_completion.d/mic.sh install -m755 etc/_mic $(CURDIR)/debian/mic/etc/zsh_completion.d/_mic + install -m755 tools/mic $(CURDIR)/debian/mic/usr/bin/mic-native python setup.py install --root=$(CURDIR)/debian/mic binary-indep: build install |