diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-06-20 18:47:29 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-06-20 18:47:29 +0000 |
commit | 9d4996b87036144e31ae6303c6016cf738072b25 (patch) | |
tree | beaeb229d2d8d28a624805f6940ed94282c57696 | |
parent | 2478b6d1f46b698779b910f092221f5f249938cc (diff) | |
download | util-linux-old-9d4996b87036144e31ae6303c6016cf738072b25.tar.gz |
New package with fdisk
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 4 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 11 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 6ecf35c9..0827457a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +util-linux (2.17-0+dyson9) unstable; urgency=low + + * Ported fdisk/cfdisk + + -- Igor Pashev <pashev.igor@gmail.com> Wed, 20 Jun 2012 18:19:35 +0000 + util-linux (2.17-0+dyson8) unstable; urgency=low * Added symlink /usr/sbin/wall -> /usr/bin/wall (re #24) diff --git a/debian/control b/debian/control index 85b33cca..8c473d5b 100644 --- a/debian/control +++ b/debian/control @@ -60,7 +60,7 @@ Description: Basic utilities from 4.4BSD-Lite The remaining standard BSD utilities are provided by bsdmainutils. Package: fdisk-udeb -Architecture: alpha amd64 arm armeb armel avr32 hppa i386 ia64 lpia m32r mips mipsel powerpc ppc64 hurd-i386 sh4 sparc s390 +Architecture: alpha amd64 arm armeb armel avr32 hppa i386 ia64 lpia m32r mips mipsel powerpc ppc64 hurd-i386 sh4 sparc s390 illumos-amd64 Priority: extra Section: debian-installer Depends: ${shlibs:Depends}, ${misc:Depends} @@ -69,7 +69,7 @@ XB-Installer-Menu-Item: 99999 Description: Manually partition a hard drive (fdisk) Package: cfdisk-udeb -Architecture: alpha amd64 arm armeb armel avr32 hppa i386 ia64 lpia m32r mips mipsel powerpc ppc64 hurd-i386 sh4 s390 +Architecture: alpha amd64 arm armeb armel avr32 hppa i386 ia64 lpia m32r mips mipsel powerpc ppc64 hurd-i386 sh4 s390 illumos-amd64 Priority: extra Section: debian-installer Depends: ${shlibs:Depends}, ${misc:Depends} diff --git a/debian/rules b/debian/rules index 779a03f8..70e424dd 100755 --- a/debian/rules +++ b/debian/rules @@ -174,6 +174,9 @@ ifeq (,$(findstring $(DEB_HOST_ARCH_OS),linux illumos)) cd debian/util-linux/usr/share/man/man8 ; mv mkswap.8 mkswap.linux.8 endif ifeq (illumos,$(DEB_HOST_ARCH_OS)) + # We also ship illumos' fdisk: + mv debian/util-linux/sbin/fdisk debian/util-linux/sbin/fdisk.ul + mv debian/util-linux/usr/share/man/man8/fdisk.8 debian/util-linux/usr/share/man/man8/fdisk.ul.8 mv debian/util-linux/bin/* debian/util-linux/usr/bin/ rmdir debian/util-linux/bin endif |