]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Debian packaging updates, and bumped minor version to 3.0.2. v3.0.2
authorNathan Scott <nathans@debian.org>
Wed, 6 May 2009 02:58:41 +0000 (12:58 +1000)
committerNathan Scott <nathans@debian.org>
Wed, 6 May 2009 02:58:41 +0000 (12:58 +1000)
Signed-off-by: Nathan Scott <nathans@debian.org>
VERSION
debian/changelog
debian/control
debian/rules
doc/CHANGES

diff --git a/VERSION b/VERSION
index f622663fc6ac55bbb941f2120442635fce1ba57d..94c6a834f436dfab9ea8af437b8e995affb4bc6b 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
 #
 PKG_MAJOR=3
 PKG_MINOR=0
-PKG_REVISION=1
+PKG_REVISION=2
 PKG_BUILD=1
index ebc0eb7f5659126cc6bc564b06f7f228ad48d2ef..ebf9819ebd9a86478cfc0114ab90e3cd7c2e8820 100644 (file)
@@ -1,3 +1,9 @@
+xfsprogs (3.0.2) unstable; urgency=low
+
+  * New bugfix release
+
+ -- Nathan Scott <nathans@debian.org>  Wed, 06 May 2009 11:29:18 +1000
+
 xfsprogs (3.0.0-1) unstable; urgency=low
 
   * New upstream release (closes: #263170)
index b04fbe05a8e4724f03d583b3596a02fb1c532d2f..7c5cb93643372c720e47bc5b02f3d9dd7433beb5 100644 (file)
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Nathan Scott <nathans@debian.org>
 Uploaders: Anibal Monsalve Salazar <anibal@debian.org>
 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
index 4310a9e12bf0593c07c908d1baa7613acfd25281..08fbadbb381e53de62b9e5b2364470c4d69a89fc 100755 (executable)
@@ -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; \
index 53a0662b8b7530c3915135b5b931d293d3f17bc2..82fd3be522654a269fa9c1f5f5c146997f9bcd49 100644 (file)
@@ -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,