summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog11
-rw-r--r--debian/control2
-rw-r--r--debian/rules2
-rw-r--r--lib/et/ChangeLog5
-rw-r--r--lib/et/Makefile.in6
5 files changed, 21 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index 8da7ca98..99d1d011 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+e2fsprogs (1.33-5) unstable; urgency=low
+
+ * Clarify blocksize units when displaying messages in resize2fs, and
+ support using suffixes (sectors, kilobytes, megabites, gigabytes)
+ to the size parameter to indicate units. (Closes: #189814)
+ * Fix debugfs core-dumping problem caused by getopt. (Works around: #192834)
+ * Add package dependency to shlibs for comerr to indicate support
+ for kth compatibility. (Closes: #193096)
+
+ -- Theodore Y. Ts'o <tytso@mit.edu> Tue, 13 May 2003 23:45:08 -0400
+
e2fsprogs (1.33-4) unstable; urgency=low
* Add replaces field to comerr-dev to resolve a file conflict with
diff --git a/debian/control b/debian/control
index fbf86e74..1ca087d7 100644
--- a/debian/control
+++ b/debian/control
@@ -123,7 +123,7 @@ Pre-Depends: ${shlibs:Depends}
Depends:
Suggests: gpart, parted, e2fsck-static
Conflicts: dump (<< 0.4b4-4), quota (<< 1.55-8.1)
-Provides: libcomerr2, libss2, libext2fs2, libe2p2, libuuid1
+Provides: libcomerr2, libcomerr-kth-compat, libss2, libext2fs2, libe2p2, libuuid1
Architecture: any
Description: The EXT2 file system utilities and libraries
EXT2 stands for "Extended Filesystem", version 2. It's the main
diff --git a/debian/rules b/debian/rules
index 8edc9135..4450ac3c 100644
--- a/debian/rules
+++ b/debian/rules
@@ -352,7 +352,7 @@ binary-arch: install install-udeb
>> debian/e2fsprogs/DEBIAN/shlibs
echo "libuuid ${UUID_SOVERSION} libuuid${UUID_SOVERSION}" \
>> debian/e2fsprogs/DEBIAN/shlibs
- echo "libcom_err ${COMERR_SOVERSION} libcomerr${COMERR_SOVERSION}" \
+ echo "libcom_err ${COMERR_SOVERSION} libcomerr${COMERR_SOVERSION}, libcomerr-kth-compat" \
>> debian/e2fsprogs/DEBIAN/shlibs
echo "libss ${SS_SOVERSION} libss${SS_SOVERSION}" \
>> debian/e2fsprogs/DEBIAN/shlibs
diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog
index 06c0ed61..5c09484a 100644
--- a/lib/et/ChangeLog
+++ b/lib/et/ChangeLog
@@ -1,3 +1,8 @@
+2003-05-13 Theodore Ts'o <tytso@mit.edu>
+
+ * Makefile.in: Bump minor version number of libcomerr to indicate
+ the addition of the Himdall compatibility functions.
+
2003-05-05 Theodore Ts'o <tytso@mit.edu>
* et_c.awk, et_h.awk, com_err.h, com_right.c: Add full Heimdall
diff --git a/lib/et/Makefile.in b/lib/et/Makefile.in
index 960dacf7..5b2aa784 100644
--- a/lib/et/Makefile.in
+++ b/lib/et/Makefile.in
@@ -28,20 +28,20 @@ LIBDIR= et
DLL_ADDRESS = 0x66800000
DLL_JUMPSIZE = 0x1000
DLL_GOTSIZE = 0x1000
-DLL_VERSION = 1.0
+DLL_VERSION = 1.1
DLL_IMAGE = libet
DLL_STUB = libcom_err
DLL_MYDIR = et
DLL_INSTALL_DIR = $(root_libdir)
-ELF_VERSION = 2.0
+ELF_VERSION = 2.1
ELF_SO_VERSION = 2
ELF_IMAGE = libcom_err
ELF_MYDIR = et
ELF_INSTALL_DIR = $(root_libdir)
ELF_OTHER_LIBS =
-BSDLIB_VERSION = 1.0
+BSDLIB_VERSION = 1.1
BSDLIB_IMAGE = libcom_err
BSDLIB_MYDIR = et
BSDLIB_INSTALL_DIR = $(root_libdir)