diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:31:02 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:31:02 +0000 |
commit | 3f0e321b489e2eb1de700d20b850d5a43aecf769 (patch) | |
tree | 2e1bf6a66273dce009ed7f1f08dfb5bb9424bc80 /debian/control | |
parent | Adding upstream version 5:7.0.15. (diff) | |
download | redis-3f0e321b489e2eb1de700d20b850d5a43aecf769.tar.xz redis-3f0e321b489e2eb1de700d20b850d5a43aecf769.zip |
Adding debian version 5:7.0.15-1~deb12u1.debian/5%7.0.15-1_deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/control | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..39f620f --- /dev/null +++ b/debian/control @@ -0,0 +1,89 @@ +Source: redis +Section: database +Priority: optional +Maintainer: Chris Lamb <lamby@debian.org> +Build-Depends: + debhelper-compat (= 13), + dpkg-dev (>= 1.17.14), + libhiredis-dev (>= 0.14.0), + libjemalloc-dev [linux-any], + liblua5.1-dev, + liblzf-dev, + libssl-dev, + libsystemd-dev, + lua-bitop-dev, + lua-cjson-dev, + openssl <!nocheck>, + pkg-config, + procps <!nocheck>, + tcl <!nocheck>, + tcl-tls <!nocheck>, +Standards-Version: 4.6.2 +Homepage: https://redis.io/ +Vcs-Git: https://salsa.debian.org/lamby/pkg-redis.git -b debian/experimental +Vcs-Browser: https://salsa.debian.org/lamby/pkg-redis +Rules-Requires-Root: no + +Package: redis +Architecture: all +Depends: + redis-server (<< ${binary:Version}.1~), + redis-server (>= ${binary:Version}), + ${misc:Depends}, +Description: Persistent key-value database with network interface (metapackage) + Redis is a key-value database in a similar vein to memcache but the dataset + is non-volatile. Redis additionally provides native support for atomically + manipulating and querying data structures such as lists and sets. + . + The dataset is stored entirely in memory and periodically flushed to disk. + . + This package depends on the redis-server package. + +Package: redis-sentinel +Architecture: any +Pre-Depends: + ${misc:Pre-Depends}, +Depends: + lsb-base (>= 3.2-14), + redis-tools (= ${binary:Version}), + ${misc:Depends}, +Description: Persistent key-value database with network interface (monitoring) + Redis is a key-value database in a similar vein to memcache but the dataset + is non-volatile. Redis additionally provides native support for atomically + manipulating and querying data structures such as lists and sets. + . + This package contains the Redis Sentinel monitoring software. + +Package: redis-server +Architecture: any +Pre-Depends: + ${misc:Pre-Depends}, +Depends: + lsb-base (>= 3.2-14), + redis-tools (= ${binary:Version}), + ${misc:Depends}, +Description: Persistent key-value database with network interface + Redis is a key-value database in a similar vein to memcache but the dataset + is non-volatile. Redis additionally provides native support for atomically + manipulating and querying data structures such as lists and sets. + . + The dataset is stored entirely in memory and periodically flushed to disk. + +Package: redis-tools +Architecture: any +Depends: + adduser, + ${misc:Depends}, + ${shlibs:Depends}, +Suggests: + ruby-redis, +Replaces: + redis-server (<< 2:2.6.16-1), +Breaks: + redis-server (<< 2:2.6.16-1), +Description: Persistent key-value database with network interface (client) + Redis is a key-value database in a similar vein to memcache but the dataset + is non-volatile. Redis additionally provides native support for atomically + manipulating and querying data structures such as lists and sets. + . + This package contains the command line client and other tools. |