Package: rocksdb Version: 7.2.2-3 Severity: serious Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu kinetic ubuntu-patch X-Debbugs-Cc: bdr...@ubuntu.com
Dear Maintainer, The autopkgtest for balboa fails against rocksdb 7.2.2-3 with: rocksdb_open() failed: `Invalid argument: Compression type LZ4 is not linked with the binary.` In Ubuntu, the attached patch was applied to achieve the following: * Enable LZ4 support (Closes: #1012629) Thanks for considering the patch. -- Benjamin Drung Debian & Ubuntu Developer
diff -Nru rocksdb-7.2.2/debian/control rocksdb-7.2.2/debian/control --- rocksdb-7.2.2/debian/control 2022-05-19 23:16:32.000000000 +0200 +++ rocksdb-7.2.2/debian/control 2022-06-14 15:22:00.000000000 +0200 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Laszlo Boszormenyi (GCS) <g...@debian.org> Build-Depends: debhelper-compat (= 13), cmake, libgflags-dev, libsnappy-dev, - libbz2-dev, zlib1g-dev, libzstd-dev + libbz2-dev, zlib1g-dev, libzstd-dev, liblz4-dev Standards-Version: 4.6.0 Homepage: https://rocksdb.org/ diff -Nru rocksdb-7.2.2/debian/rules rocksdb-7.2.2/debian/rules --- rocksdb-7.2.2/debian/rules 2022-05-21 19:47:37.000000000 +0200 +++ rocksdb-7.2.2/debian/rules 2022-06-14 14:31:59.000000000 +0200 @@ -26,6 +26,7 @@ dh_auto_configure -O--buildsystem=cmake \ -- \ -DWITH_BZ2=ON \ + -DWITH_LZ4=ON \ -DWITH_ZLIB=ON \ -DWITH_ZSTD=ON \ -DWITH_SNAPPY=ON \