Merge pull request #9205 from Rmys/master

libsrtp First release
This commit is contained in:
Rmys
2021-04-05 11:43:07 +03:00
committed by GitHub
11 changed files with 315 additions and 18 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
pisitools.cflags.add("-fPIC")
autotools.autoreconf("-fiv")
autotools.configure("--enable-openssl \
--enable-nss")
def build():
autotools.make("all")
autotools.make("shared_library")
def check():
autotools.make("test")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("LICENSE", "CHANGES", "README*")
@@ -0,0 +1,36 @@
diff -up libsrtp-2.3.0/Makefile.in.sharedfix libsrtp-2.3.0/Makefile.in
--- libsrtp-2.3.0/Makefile.in.sharedfix 2020-01-07 09:48:36.004217062 -0500
+++ libsrtp-2.3.0/Makefile.in 2020-01-07 09:53:08.117725096 -0500
@@ -106,12 +106,14 @@ bindir = @bindir@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libsrtp2.pc
-SHAREDLIBVERSION = 1
+SHAREDLIBMINIVER = 1
+SHAREDLIBVERSION = $(SHAREDLIBMINIVER).0.0
ifneq (,$(or $(findstring linux,@host@), $(findstring gnu,@host@)))
SHAREDLIB_DIR = $(libdir)
-SHAREDLIB_LDFLAGS = -shared -Wl,-soname,$@
SHAREDLIBSUFFIXNOVER = so
+SHAREDLIBMINISUFFIX = $(SHAREDLIBSUFFIXNOVER).$(SHAREDLIBMINIVER)
SHAREDLIBSUFFIX = $(SHAREDLIBSUFFIXNOVER).$(SHAREDLIBVERSION)
+SHAREDLIB_LDFLAGS = -shared -Wl,-soname,libsrtp2.$(SHAREDLIBMINISUFFIX)
else ifneq (,$(or $(findstring cygwin,@host@), $(findstring mingw,@host@)))
SHAREDLIB_DIR = $(bindir)
SHAREDLIB_LDFLAGS = -shared -Wl,--out-implib,libsrtp2.dll.a
@@ -166,6 +168,7 @@ libsrtp2.$(SHAREDLIBSUFFIX): $(srtpobj)
$(CC) -shared -o $@ $(SHAREDLIB_LDFLAGS) \
$^ $(LDFLAGS) $(LIBS)
if [ -n "$(SHAREDLIBVERSION)" ]; then \
+ ln -sfn $@ libsrtp2.$(SHAREDLIBMINISUFFIX); \
ln -sfn $@ libsrtp2.$(SHAREDLIBSUFFIXNOVER); \
fi
@@ -288,6 +291,7 @@ install:
cp libsrtp2.$(SHAREDLIBSUFFIXNOVER) $(DESTDIR)$(SHAREDLIB_DIR)/; \
if [ -n "$(SHAREDLIBVERSION)" ]; then \
ln -sfn libsrtp2.$(SHAREDLIBSUFFIX) $(DESTDIR)$(SHAREDLIB_DIR)/libsrtp2.$(SHAREDLIBSUFFIXNOVER); \
+ ln -sfn libsrtp2.$(SHAREDLIBSUFFIX) $(DESTDIR)$(SHAREDLIB_DIR)/libsrtp2.$(SHAREDLIBMINISUFFIX); \
fi; \
fi
$(INSTALL) -d $(DESTDIR)$(pkgconfigdir)
@@ -0,0 +1,13 @@
diff -up libsrtp-2.3.0/Makefile.in.test-shared libsrtp-2.3.0/Makefile.in
--- libsrtp-2.3.0/Makefile.in.test-shared 2020-10-12 16:00:39.065842309 -0400
+++ libsrtp-2.3.0/Makefile.in 2020-10-12 16:01:11.244097667 -0400
@@ -196,7 +196,7 @@ ifeq (1, $(HAVE_PCAP))
testapp += test/rtp_decoder$(EXE)
endif
-$(testapp): libsrtp2.a
+$(testapp): libsrtp2.$(SHAREDLIBSUFFIX)
test/rtpw$(EXE): test/rtpw.c test/rtp.c test/util.c test/getopt_s.c \
crypto/math/datatypes.c
diff -up libsrtp-2.3.0/Makefile.test-shared libsrtp-2.3.0/Makefile
@@ -0,0 +1,12 @@
diff -r -u libsrtp-2.3.0.orig/test/util.c libsrtp-2.3.0/test/util.c
--- libsrtp-2.3.0.orig/test/util.c 2019-12-23 10:58:25.000000000 +0100
+++ libsrtp-2.3.0/test/util.c 2020-10-09 11:56:31.455502870 +0200
@@ -49,7 +49,7 @@
#include <stdint.h>
/* include space for null terminator */
-char bit_string[MAX_PRINT_STRING_LEN + 1];
+static char bit_string[MAX_PRINT_STRING_LEN + 1];
static inline int hex_char_to_nibble(uint8_t c)
{
@@ -0,0 +1,24 @@
From 55299517f39e2e1a34df05c27cbc9898071ac9db Mon Sep 17 00:00:00 2001
From: Lennart Grahl <lennart.grahl@gmail.com>
Date: Mon, 18 May 2020 18:01:08 +0200
Subject: [PATCH] Fix two-byte RTP header extension encryption
Also ignores the application bits as required by RFC 8285, sec 4.3
Fixes #490
---
srtp/srtp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/srtp/srtp.c b/srtp/srtp.c
index b45cee0f..176b01f0 100644
--- a/srtp/srtp.c
+++ b/srtp/srtp.c
@@ -1423,7 +1423,7 @@ static srtp_err_status_t srtp_process_header_encryption(
xtn_hdr_data++;
}
}
- } else if ((ntohs(xtn_hdr->profile_specific) & 0x1fff) == 0x100) {
+ } else if ((ntohs(xtn_hdr->profile_specific) & 0xfff0) == 0x1000) {
/* RFC 5285, section 4.3. Two-Byte Header */
while (xtn_hdr_data + 1 < xtn_hdr_end) {
uint8_t xid = *xtn_hdr_data;
+62
View File
@@ -0,0 +1,62 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libsrtp</Name>
<Homepage>https://github.com/cisco/libsrtp</Homepage>
<Packager>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>An implementation of the Secure Real-time Transport Protocol (SRTP)</Summary>
<Description>SRTP Kitaplığı (Güvenli Gerçek Zamanlı Aktarım Protokolü)</Description>
<Archive sha1sum="263a45a82cb1acb1a6c7beef64def31949496a02" type="targz">https://github.com/cisco/libsrtp/archive/refs/tags/v2.3.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>nss-devel</Dependency>
<Dependency>libpcap-devel</Dependency>
<Dependency>openssl-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">libsrtp-2.3.0-rtp-header.patch</Patch>
<Patch level="1">fedora/libsrtp-2.3.0-shared-fix.patch</Patch>
<Patch level="1">fedora/libsrtp-2.3.0-test-util.patch</Patch>
<Patch level="1">fedora/libsrtp-2.3.0-shared-test-fix.patch</Patch>
</Patches>
</Source>
<Package>
<Name>libsrtp</Name>
<RuntimeDependencies>
<Dependency>openssl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libsrtp-devel</Name>
<Summary>Development files for libsrtp</Summary>
<RuntimeDependencies>
<Dependency release="current">libsrtp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-04-04</Date>
<Version>2.3.0</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libsrtp</Name>
<Summary xml:lang="tr">An implementation of the Secure Real-time Transport Protocol (SRTP)</Summary>
<Description xml:lang="tr">SRTP Kitaplığı (Güvenli Gerçek Zamanlı Aktarım Protokolü)</Description>
</Source>
</PISI>
+130 -16
View File
@@ -14447,8 +14447,11 @@
<Description xml:lang="en">Scanner Access Now Easy (SANE) is a universal scanner interface. The SANE application programming interface provides standardized access to any raster image scanner hardware.</Description>
<Description xml:lang="tr">SANE ve uygulama programlama arayüzü (API) ile herhangi bir görüntü tarayıcı donanımına standartlaştırlmış erişim sağlar.</Description>
<Icon>sane</Icon>
<Archive type="targz" sha1sum="78195c0deeda3bcb62559b345f062d46e70efbd6" name="sane-backends-1.0.29.tar.gz">https://gitlab.com/sane-project/backends/uploads/54f858b20a364fc35d820df935a86478/sane-backends-1.0.29.tar.gz</Archive>
<Archive type="targz" sha1sum="9a8cac79ec415e99d05204ebd6470918c60f2e13" name="backends-1.0.32.tar.gz">https://gitlab.com/sane-project/backends/-/archive/1.0.32/backends-1.0.32.tar.gz</Archive>
<BuildDependencies>
<Dependency>curl-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>libieee1284-devel</Dependency>
<Dependency>libusb-compat-devel</Dependency>
<Dependency>libusb-devel</Dependency>
@@ -14462,17 +14465,20 @@
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>tiff-devel</Dependency>
<Dependency>net-snmp-devel</Dependency>
<Dependency>autoconf-archive</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">sane-backends-1.0.25-udev.patch</Patch>
<Patch level="1">sane-backends-1.0.23-sane-config-multilib.patch</Patch>
<Patch level="1">sane-backends-1.0.23-udev.patch</Patch>
<Patch level="1">archlinux/network.patch</Patch>
<Patch level="1">sane-epson2-disable-focus.patch</Patch>
</Patches>
<SourceURI>hardware/scannner/sane-backends/pspec.xml</SourceURI>
</Source>
<Package>
<Name>sane-backends</Name>
<RuntimeDependencies>
<Dependency>curl</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libnl</Dependency>
<Dependency>openssl</Dependency>
<Dependency>libusb</Dependency>
@@ -14514,7 +14520,7 @@
<Summary xml:lang="en">Development files for sane-backends</Summary>
<Summary xml:lang="tr">sane-backends için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="6">sane-backends</Dependency>
<Dependency release="7">sane-backends</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
@@ -14530,6 +14536,13 @@
</Files>
</Package>
<History>
<Update release="7">
<Date>2021-04-01</Date>
<Version>1.0.32</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="6">
<Date>2020-02-23</Date>
<Version>1.0.29</Version>
@@ -20987,10 +21000,10 @@
<Description xml:lang="tr">Kaptan, bilgisayarınız ilk defa açıldığında çalışma ortamınızı kişiselleştirmenize yardımcı olur.</Description>
<Description xml:lang="es">Kaptan, el asistente de inicio de Pisi Linux que le ayudará a personalizar su entorno de trabajo.</Description>
<Icon>kaptan</Icon>
<Archive type="targz" sha1sum="3a93c07988d697d0e834c316ee3292d91470673e" name="beta7.4.0.tar.gz">https://github.com/PisiLinuxNew/kaptan/archive/beta7.4.0.tar.gz</Archive>
<Archive type="targz" sha1sum="513e3d34052c09f2c7eb4fe4637d3ab7b9132c57" name="7.4.3.tar.gz">https://github.com/PisiLinuxNew/kaptan/archive/refs/tags/7.4.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-qt5</Dependency>
<Dependency>python3-qt5-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency versionFrom="5.7.1">qt5-linguist</Dependency>
</BuildDependencies>
@@ -21013,6 +21026,13 @@
</Files>
</Package>
<History>
<Update release="18">
<Date>2021-04-03</Date>
<Version>7.4.3</Version>
<Comment>version bump</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="17">
<Date>2020-05-30</Date>
<Version>7.4.0</Version>
@@ -117692,7 +117712,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
<Summary xml:lang="tr">Plasma Specific Protocols for Wayland</Summary>
<Description xml:lang="en">Wayland için Plazma Özel Protokoller</Description>
<Description xml:lang="tr">Wayland için Plazma Özel Protokoller</Description>
<Archive type="tarxz" sha1sum="db7e58572fad932d65d3acb4cefccc87d37ccdad" name="plasma-wayland-protocols-1.1.1.tar.xz">https://download.kde.org/stable/plasma-wayland-protocols/1.1.1/plasma-wayland-protocols-1.1.1.tar.xz</Archive>
<Archive type="tarxz" sha1sum="bca0cca1e021c28b50d2dc1e952aad18dff6d0bf" name="plasma-wayland-protocols-1.2.0.tar.xz">https://download.kde.org/stable/plasma-wayland-protocols/plasma-wayland-protocols-1.2.0.tar.xz</Archive>
<BuildDependencies>
<Dependency versionFrom="5.14.2">qt5-base-devel</Dependency>
<Dependency versionFrom="5.69.0">extra-cmake-modules</Dependency>
@@ -117708,6 +117728,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Files>
</Package>
<History>
<Update release="5">
<Date>2021-03-29</Date>
<Version>1.2.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2021-03-14</Date>
<Version>1.1.1</Version>
@@ -163664,13 +163691,13 @@ functionality to build high-performing, platform-independent programs.</Descript
<PartOf>network.library</PartOf>
<Summary xml:lang="en">QMI modem protocol helper library</Summary>
<Description xml:lang="en">libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol.</Description>
<Archive type="tarxz" sha1sum="40fe26f6b9a477a41a649b3585ce37ae15be97da" name="libqmi-1.28.0.tar.xz">https://www.freedesktop.org/software/libqmi/libqmi-1.28.0.tar.xz</Archive>
<Archive type="tarxz" sha1sum="857ace336958c9ee2a43012342b2ef6b2dce5d5f" name="libqmi-1.28.2.tar.xz">https://www.freedesktop.org/software/libqmi/libqmi-1.28.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency versionFrom="1.20.0">libmbim-devel</Dependency>
<Dependency versionFrom="1.24.6">libmbim-devel</Dependency>
</BuildDependencies>
<SourceURI>network/library/libqmi/pspec.xml</SourceURI>
</Source>
@@ -163696,7 +163723,7 @@ functionality to build high-performing, platform-independent programs.</Descript
<Name>libqmi-devel</Name>
<Summary xml:lang="en">Development files for libqmi</Summary>
<RuntimeDependencies>
<Dependency release="10">libqmi</Dependency>
<Dependency release="11">libqmi</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
@@ -163705,6 +163732,13 @@ functionality to build high-performing, platform-independent programs.</Descript
</Files>
</Package>
<History>
<Update release="11">
<Date>2021-04-03</Date>
<Version>1.28.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2021-02-25</Date>
<Version>1.28.0</Version>
@@ -163840,6 +163874,67 @@ functionality to build high-performing, platform-independent programs.</Descript
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libsrtp</Name>
<Homepage>https://github.com/cisco/libsrtp</Homepage>
<Packager>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<PartOf>network.library</PartOf>
<Summary xml:lang="en">An implementation of the Secure Real-time Transport Protocol (SRTP)</Summary>
<Summary xml:lang="tr">An implementation of the Secure Real-time Transport Protocol (SRTP)</Summary>
<Description xml:lang="en">SRTP Kitaplığı (Güvenli Gerçek Zamanlı Aktarım Protokolü)</Description>
<Description xml:lang="tr">SRTP Kitaplığı (Güvenli Gerçek Zamanlı Aktarım Protokolü)</Description>
<Archive type="targz" sha1sum="263a45a82cb1acb1a6c7beef64def31949496a02" name="v2.3.0.tar.gz">https://github.com/cisco/libsrtp/archive/refs/tags/v2.3.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>nss-devel</Dependency>
<Dependency>libpcap-devel</Dependency>
<Dependency>openssl-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">libsrtp-2.3.0-rtp-header.patch</Patch>
<Patch level="1">fedora/libsrtp-2.3.0-shared-fix.patch</Patch>
<Patch level="1">fedora/libsrtp-2.3.0-test-util.patch</Patch>
<Patch level="1">fedora/libsrtp-2.3.0-shared-test-fix.patch</Patch>
</Patches>
<SourceURI>network/library/libsrtp/pspec.xml</SourceURI>
</Source>
<Package>
<Name>libsrtp</Name>
<RuntimeDependencies>
<Dependency>openssl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libsrtp-devel</Name>
<Summary xml:lang="en">Development files for libsrtp</Summary>
<RuntimeDependencies>
<Dependency release="1">libsrtp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-04-04</Date>
<Version>2.3.0</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>serf</Name>
@@ -163944,7 +164039,7 @@ functionality to build high-performing, platform-independent programs.</Descript
<PartOf>network.library</PartOf>
<Summary xml:lang="en">MBIM modem protocol helper library.</Summary>
<Description xml:lang="en">libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol.</Description>
<Archive type="tarxz" sha1sum="1162a4302be250ca3334f3bfd1e7d04770e4b4ff" name="libmbim-1.24.2.tar.xz">http://www.freedesktop.org/software/libmbim/libmbim-1.24.2.tar.xz</Archive>
<Archive type="tarxz" sha1sum="ab0c9a1f84c48f6f2284245c5e36da75efb790f2" name="libmbim-1.24.6.tar.xz">http://www.freedesktop.org/software/libmbim/libmbim-1.24.6.tar.xz</Archive>
<BuildDependencies>
<Dependency>gtk-doc</Dependency>
<Dependency>glib2-devel</Dependency>
@@ -163976,7 +164071,7 @@ functionality to build high-performing, platform-independent programs.</Descript
<Summary xml:lang="en">libmbim için geliştirme dosyaları</Summary>
<Summary xml:lang="tr">libmbim için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="8">libmbim</Dependency>
<Dependency release="9">libmbim</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
</RuntimeDependencies>
@@ -163986,6 +164081,13 @@ functionality to build high-performing, platform-independent programs.</Descript
</Files>
</Package>
<History>
<Update release="9">
<Date>2021-04-03</Date>
<Version>1.24.6</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="8">
<Date>2020-07-10</Date>
<Version>1.24.2</Version>
@@ -218506,7 +218608,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
<Description xml:lang="nl"> Clementine is een moderne muziekspeler. Clementine is een port van Amarok 1.4, met een aantal functies herschreven om te profiteren van Qt 4.</Description>
<Description xml:lang="pl">Clementine to port Amaroka 1.4 - popularnego odtwarzacza muzycznego dla systemu Linux.</Description>
<Description xml:lang="es">Clementine es un moderno reproductor de música escrito en QT4 y basado en Amarok 1.4.</Description>
<Archive type="targz" sha1sum="66dd8a4f123211e1761ed25656f1d4b2430b8d60" name="1.4.0rc1-320-g3a4d7f3a3.tar.gz">https://github.com/clementine-player/Clementine/archive/1.4.0rc1-320-g3a4d7f3a3.tar.gz</Archive>
<Archive type="targz" sha1sum="32c0ba29313e99a94e26762001d4eea9fe6a550d" name="1.4.0rc1-526-g881898f84.tar.gz">https://github.com/clementine-player/Clementine/archive/refs/tags/1.4.0rc1-526-g881898f84.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ccache</Dependency>
@@ -218522,6 +218624,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
<Dependency>qt5-sql-mysql</Dependency>
<Dependency>libgpod-devel</Dependency>
<Dependency>qt5-svg-devel</Dependency>
<Dependency>libglvnd-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>libplist-devel</Dependency>
<Dependency>libqjson-devel</Dependency>
@@ -218575,6 +218678,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
<Dependency>crypto++</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>libglvnd</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>liblastfm</Dependency>
<Dependency>libmygpo-qt</Dependency>
@@ -218590,7 +218694,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
</Package>
<History>
<Update release="9">
<Date>2020-09-23</Date>
<Date>2021-03-31</Date>
<Version>1.4.0_rc1</Version>
<Comment>Rebuild from git.</Comment>
<Name>Mustafa Cinasal</Name>
@@ -273426,10 +273530,12 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
<Description xml:lang="en">GObject bindings for Udev (Eudev)</Description>
<Description xml:lang="tr">libgudev, ibudev için GObject bağlayıcıları içeren kitaplıklar sunar.</Description>
<Icon>eudev</Icon>
<Archive type="tarxz" sha1sum="003253c2e75f4602193432c45f234c54694e0057" name="libgudev-234.tar.xz">https://download.gnome.org/sources/libgudev/234/libgudev-234.tar.xz</Archive>
<Archive type="tarxz" sha1sum="24a73f68868c0e42940663a64bea952d29a71d17" name="libgudev-236.tar.xz">https://download.gnome.org/sources/libgudev/236/libgudev-236.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>libxslt</Dependency>
<Dependency>vala-devel</Dependency>
<Dependency>python-six</Dependency>
<Dependency>docbook-xsl</Dependency>
<Dependency>eudev-devel</Dependency>
@@ -273449,6 +273555,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
<Path fileType="data">/usr/share/vala/vapi</Path>
<Path fileType="data">/usr/share/gtk-doc</Path>
</Files>
</Package>
@@ -273481,7 +273588,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
<RuntimeDependencies>
<Dependency>eudev-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency release="7">libgudev</Dependency>
<Dependency release="8">libgudev</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
@@ -273489,6 +273596,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
</Files>
</Package>
<History>
<Update release="8">
<Date>2021-04-03</Date>
<Version>236</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="7">
<Date>2020-09-23</Date>
<Version>234</Version>
+1 -1
View File
@@ -1 +1 @@
61ccd1fec875d194251e164a48d884eded1e404c
7c06ed77c0d6f16090d8efd4ce1d63e10195ca87
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
48eedafefdf06265baa29f2046b4a7774a404947
7692002f0e7478ebd2fe51db8886db5512b81dda