From: Nathan Scott Date: Wed, 6 May 2009 02:58:41 +0000 (+1000) Subject: Debian packaging updates, and bumped minor version to 3.0.2. X-Git-Tag: v3.0.2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cffbe0d3a2a453647693dc6aef87ef1c3138e82b;p=thirdparty%2Fxfsprogs-dev.git Debian packaging updates, and bumped minor version to 3.0.2. Signed-off-by: Nathan Scott --- diff --git a/VERSION b/VERSION index f622663fc..94c6a834f 100644 --- a/VERSION +++ b/VERSION @@ -3,5 +3,5 @@ # PKG_MAJOR=3 PKG_MINOR=0 -PKG_REVISION=1 +PKG_REVISION=2 PKG_BUILD=1 diff --git a/debian/changelog b/debian/changelog index ebc0eb7f5..ebf9819eb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xfsprogs (3.0.2) unstable; urgency=low + + * New bugfix release + + -- Nathan Scott Wed, 06 May 2009 11:29:18 +1000 + xfsprogs (3.0.0-1) unstable; urgency=low * New upstream release (closes: #263170) diff --git a/debian/control b/debian/control index b04fbe05a..7c5cb9364 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Nathan Scott Uploaders: Anibal Monsalve Salazar Build-Depends: uuid-dev, autoconf, debhelper (>= 5), gettext, libtool, libreadline5-dev -Standards-Version: 3.7.3 +Standards-Version: 3.8.1 Homepage: http://oss.sgi.com/projects/xfs/ Package: xfsprogs @@ -24,23 +24,30 @@ Description: Utilities for managing the XFS filesystem and scalability. . Refer to the documentation at http://oss.sgi.com/projects/xfs/ - for complete details. This implementation is on-disk compatible - with the IRIX version of XFS. + for complete details. Package: xfslibs-dev Section: libdevel -Priority: extra Depends: libc6-dev | libc-dev, uuid-dev, xfsprogs (>= 3.0.0) Conflicts: xfsprogs (<< 3.0.0) Architecture: any Description: XFS filesystem-specific static libraries and headers xfslibs-dev contains the libraries and header files needed to develop XFS filesystem-specific programs. + . + XFS is a high performance journaling filesystem which originated + on the SGI IRIX platform. It is completely multi-threaded, can + support large files and large filesystems, extended attributes, + variable block sizes, is extent based, and makes extensive use of + Btrees (directories, extents, free space) to aid both performance + and scalability. + . + Refer to the documentation at http://oss.sgi.com/projects/xfs/ + for complete details. Package: xfsprogs-udeb XC-Package-Type: udeb Section: debian-installer -Priority: optional Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: A stripped-down version of xfsprogs, for debian-installer diff --git a/debian/rules b/debian/rules index 4310a9e12..08fbadbb3 100755 --- a/debian/rules +++ b/debian/rules @@ -35,14 +35,14 @@ config: .census .census: @echo "== dpkg-buildpackage: configure" 1>&2 $(checkdir) - $(options) $(MAKE) configure + $(options) $(MAKE) include/platform_defs.h touch .census dibuild: $(checkdir) @echo "== dpkg-buildpackage: installer" 1>&2 if [ ! -f mkfs/mkfs.xfs-$(bootpkg) ]; then \ - $(diopts) $(MAKE) configure; \ + $(diopts) $(MAKE) include/platform_defs.h; \ for dir in include libxfs libdisk mkfs; do \ $(MAKE) -C $$dir; \ done; \ diff --git a/doc/CHANGES b/doc/CHANGES index 53a0662b8..82fd3be52 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,8 @@ -xfsprogs-3.0.1 +xfsprogs-3.0.2 (6 May 2009) + - Updates to Debian build process after recent autoconf tweaks. + - Fix a couple of minor man page syntax issues. + +xfsprogs-3.0.1 (16 April 2009) - Update the Makepkgs script to generate proper source tarballs. - New project(5) and projid(5) man pages. - Fix extent array reallocation in the xfs_io bmap command,