Accepting request 561152 from home:jengelh:branches:server:dns

- Compact description. Fix RPM groups.

OBS-URL: https://build.opensuse.org/request/show/561152
OBS-URL: https://build.opensuse.org/package/show/server:dns/fstrm?expand=0&rev=8
This commit is contained in:
Marguerite Su 2018-01-04 00:19:04 +00:00 committed by Git OBS Bridge
parent 1335662c5f
commit 660b2446a1
2 changed files with 24 additions and 23 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jan 2 15:59:59 UTC 2018 - jengelh@inai.de
- Compact description. Fix RPM groups.
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 1 07:21:18 UTC 2018 - avindra@opensuse.org Mon Jan 1 07:21:18 UTC 2018 - avindra@opensuse.org

View File

@ -22,37 +22,33 @@ Version: 0.3.2
Release: 0 Release: 0
Summary: Frame Streams implementation in C Summary: Frame Streams implementation in C
License: Apache-2.0 License: Apache-2.0
Group: System/Libraries Group: Development/Libraries/C and C++
Url: https://github.com/farsightsec/fstrm Url: https://github.com/farsightsec/fstrm
Source: https://dl.farsightsecurity.com/dist/%{name}/%{name}-%{version}.tar.gz Source: https://dl.farsightsecurity.com/dist/%{name}/%{name}-%{version}.tar.gz
BuildRequires: libevent-devel >= 2 BuildRequires: libevent-devel >= 2
BuildRequires: pkgconfig BuildRequires: pkgconfig
%description %description
This is fstrm, a C implementation of the Frame Streams data transport protocol. fstrm is a C implementation of Frame Streams that includes a lockless
circular queue implementation and exposes library interfaces for
setting up a dedicated Frame Streams I/O thread and asynchronously
submitting data frames for transport from worker threads.
Frame Streams is a light weight, binary clean protocol that allows for the Frame Streams is a protocol that allows for the transport of
transport of arbitrarily encoded data payload sequences with minimal framing arbitrarily encoded data payload sequences with just 4 bytes per data
overhead -- just four bytes per data frame. Frame Streams does not specify an frame. Frame Streams does not specify an encoding format for frames
encoding format for data frames and can be used with any data serialization and can be used with data serialization formats that produces byte
format that produces byte sequences, such as Protocol Buffers, XML, JSON, sequences, such as Protocol Buffers, XML, JSON, MessagePack, YAML,
MessagePack, YAML, etc. Frame Streams can be used as both a streaming transport etc. Frame Streams can be used both as a streaming transport over a
over a reliable byte stream socket (TCP sockets, TLS connections, AF_UNIX reliable byte stream socket (TCP, AF_UNIX, TLS, etc.) for data in
sockets, etc.) for data in motion as well as a file format for data at rest. A motion, as well as a file format for data at rest. A "Content Type"
"Content Type" header identifies the type of payload being carried over an header identifies the type of payload being carried over an
individual Frame Stream and allows cooperating programs to determine how to individual Frame Stream and allows cooperating programs to determine
interpret a given sequence of data payloads. how to interpret a given sequence of data payloads.
fstrm is an optimized C implementation of Frame Streams that includes a fast,
lockless circular queue implementation and exposes library interfaces for
setting up a dedicated Frame Streams I/O thread and asynchronously submitting
data frames for transport from worker threads. It was originally written to
facilitate the addition of high speed binary logging to DNS servers written in
C using the dnstap log format.
%package -n %{c_lib} %package -n %{c_lib}
Summary: Frame Streams implementation in C - Shared libary file Summary: Frame Streams implementation in C
Group: Development/Libraries/C and C++ Group: System/Libraries
%description -n %{c_lib} %description -n %{c_lib}
This is fstrm, a C implementation of the Frame Streams data transport protocol. This is fstrm, a C implementation of the Frame Streams data transport protocol.
@ -60,7 +56,7 @@ This is fstrm, a C implementation of the Frame Streams data transport protocol.
This packages holds the shared library file. This packages holds the shared library file.
%package devel %package devel
Summary: Frame Streams implementation in C - Development files Summary: Development files for fstrm, a Frame Streams implementation in C
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Requires: %{c_lib} = %{version} Requires: %{c_lib} = %{version}
Provides: libfstrm-devel = %{version}-%{release} Provides: libfstrm-devel = %{version}-%{release}