[tg_owt] Initial SPEC upload.
by Vitaly Zaitsev
Summary of changes:
9c15989... Initial SPEC upload. (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[tg_owt/f33] Initial SPEC upload.
by Vitaly Zaitsev
Summary of changes:
9c15989... Initial SPEC upload. (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[tg_owt/f32] Initial SPEC upload.
by Vitaly Zaitsev
commit 9c1598985028e0b03c1241b5225163a72835e553
Author: Vitaly Zaitsev <vitaly(a)easycoding.org>
Date: Mon Nov 2 14:35:18 2020 +0100
Initial SPEC upload.
.gitignore | 1 +
sources | 1 +
tg_owt.spec | 153 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 155 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..12dbf20 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/tg_owt-e8fcae7.tar.gz
diff --git a/sources b/sources
index e69de29..62e0d8a 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (tg_owt-e8fcae7.tar.gz) = 236b7f7ec60c8a56818425982addbbedfe2503e018497506920f7e21170cbb06cf1fbf16158822c1286c7f56e9df8695382ca1b8d545994accc3f969e44da75d
diff --git a/tg_owt.spec b/tg_owt.spec
new file mode 100644
index 0000000..80237ea
--- /dev/null
+++ b/tg_owt.spec
@@ -0,0 +1,153 @@
+%undefine __cmake_in_source_build
+
+%global commit0 e8fcae73947445db3d418fb7c20b964b59e14706
+%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
+%global date 20201102
+
+Name: tg_owt
+Version: 0
+Release: 1.%{date}git%{shortcommit0}%{?dist}
+
+# Main project - BSD
+# abseil-cpp - ASL 2.0
+# libsrtp - BSD
+# libwebm - BSD
+# libyuv - BSD
+# openh264 - BSD
+# pffft - BSD
+# rnnoise - BSD
+# usrsctp - BSD
+License: BSD and ASL 2.0
+Summary: WebRTC library for the Telegram messenger
+URL: https://github.com/desktop-app/%{name}
+Source0: %{url}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz
+
+BuildRequires: pkgconfig(alsa)
+BuildRequires: pkgconfig(libavcodec)
+BuildRequires: pkgconfig(libavformat)
+BuildRequires: pkgconfig(libavresample)
+BuildRequires: pkgconfig(libavutil)
+BuildRequires: pkgconfig(libjpeg)
+BuildRequires: pkgconfig(libpulse)
+BuildRequires: pkgconfig(libswscale)
+BuildRequires: pkgconfig(openssl)
+BuildRequires: pkgconfig(opus)
+BuildRequires: pkgconfig(protobuf)
+
+BuildRequires: cmake
+BuildRequires: gcc
+BuildRequires: gcc-c++
+BuildRequires: ninja-build
+BuildRequires: yasm
+
+Provides: bundled(abseil-cpp) = 0~gitfba8a31
+Provides: bundled(base64) = 0~git
+Provides: bundled(fft) = 0~git
+Provides: bundled(fft4g) = 0~git
+Provides: bundled(g711) = 0~git
+Provides: bundled(g722) = 0~git
+Provides: bundled(libevent) = 1.4.15
+Provides: bundled(libsrtp) = 2.2.0~git94ac00d
+Provides: bundled(libvpx) = 1.8.2~git667138e
+Provides: bundled(libwebm) = 0~git
+Provides: bundled(libyuv) = 0~svn1741
+Provides: bundled(openh264) = 1.10.0~git6f26bce
+Provides: bundled(pffft) = 0~git483453d
+Provides: bundled(portaudio) = 0~git
+Provides: bundled(rnnoise) = 0~git91ef40
+Provides: bundled(sigslot) = 0~git
+Provides: bundled(spl_sqrt_floor) = 0~git
+Provides: bundled(usrsctp) = 1.0.0~gitbee946a
+
+%description
+Special fork of the OpenWebRTC library for the Telegram messenger.
+
+%package devel
+Summary: Development files for %{name}
+Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
+Requires: pkgconfig(alsa)
+Requires: pkgconfig(libavcodec)
+Requires: pkgconfig(libavformat)
+Requires: pkgconfig(libavresample)
+Requires: pkgconfig(libavutil)
+Requires: pkgconfig(libjpeg)
+Requires: pkgconfig(libpulse)
+Requires: pkgconfig(libswscale)
+Requires: pkgconfig(openssl)
+Requires: pkgconfig(opus)
+
+%description devel
+%{summary}.
+
+%prep
+%autosetup -n %{name}-%{commit0} -p1
+sed -e 's/STATIC/SHARED/g' -i CMakeLists.txt
+echo 'set_target_properties(tg_owt PROPERTIES SOVERSION 0 VERSION 0.0.0)' >> CMakeLists.txt
+
+mkdir legal
+cp -f -p src/third_party/abseil-cpp/LICENSE legal/LICENSE.abseil-cpp
+cp -f -p src/third_party/abseil-cpp/README.chromium legal/README.abseil-cpp
+cp -f -p src/third_party/libsrtp/LICENSE legal/LICENSE.libsrtp
+cp -f -p src/third_party/libsrtp/README.chromium legal/README.libsrtp
+cp -f -p src/third_party/libvpx/source/libvpx/LICENSE legal/LICENSE.libvpx
+cp -f -p src/third_party/libvpx/source/libvpx/PATENTS legal/PATENTS.libvpx
+cp -f -p src/third_party/libvpx/README.chromium legal/README.libvpx
+cp -f -p src/third_party/libyuv/LICENSE legal/LICENSE.libyuv
+cp -f -p src/third_party/libyuv/PATENTS legal/PATENTS.libyuv
+cp -f -p src/third_party/libyuv/README.chromium legal/README.libyuv
+cp -f -p src/third_party/openh264/src/LICENSE legal/LICENSE.openh264
+cp -f -p src/third_party/openh264/README.chromium legal/README.openh264
+cp -f -p src/third_party/pffft/LICENSE legal/LICENSE.pffft
+cp -f -p src/third_party/pffft/README.chromium legal/README.pffft
+cp -f -p src/third_party/rnnoise/COPYING legal/LICENSE.rnnoise
+cp -f -p src/third_party/rnnoise/README.chromium legal/README.rnnoise
+cp -f -p src/third_party/usrsctp/LICENSE legal/LICENSE.usrsctp
+cp -f -p src/third_party/usrsctp/README.chromium legal/README.usrsctp
+cp -f -p src/third_party/libvpx/source/libvpx/third_party/libwebm/LICENSE.TXT legal/LICENSE.libwebm
+cp -f -p src/third_party/libvpx/source/libvpx/third_party/libwebm/PATENTS.TXT legal/PATENTS.libwebm
+cp -f -p src/third_party/libvpx/source/libvpx/third_party/libwebm/README.libvpx legal/README.libwebm
+cp -f -p src/base/third_party/libevent/LICENSE legal/LICENSE.libevent
+cp -f -p src/base/third_party/libevent/README.chromium legal/README.libevent
+cp -f -p src/common_audio/third_party/fft4g/LICENSE legal/LICENSE.fft4g
+cp -f -p src/common_audio/third_party/fft4g/README.chromium legal/README.fft4g
+cp -f -p src/common_audio/third_party/spl_sqrt_floor/LICENSE legal/LICENSE.spl_sqrt_floor
+cp -f -p src/common_audio/third_party/spl_sqrt_floor/README.chromium legal/README.spl_sqrt_floor
+cp -f -p src/modules/third_party/fft/LICENSE legal/LICENSE.fft
+cp -f -p src/modules/third_party/fft/README.chromium legal/README.fft
+cp -f -p src/modules/third_party/g711/LICENSE legal/LICENSE.g711
+cp -f -p src/modules/third_party/g711/README.chromium legal/README.g711
+cp -f -p src/modules/third_party/g722/LICENSE legal/LICENSE.g722
+cp -f -p src/modules/third_party/g722/README.chromium legal/README.g722
+cp -f -p src/modules/third_party/portaudio/LICENSE legal/LICENSE.portaudio
+cp -f -p src/modules/third_party/portaudio/README.chromium legal/README.portaudio
+cp -f -p src/rtc_base/third_party/base64/LICENSE legal/LICENSE.base64
+cp -f -p src/rtc_base/third_party/base64/README.chromium legal/README.base64
+cp -f -p src/rtc_base/third_party/sigslot/LICENSE legal/LICENSE.sigslot
+cp -f -p src/rtc_base/third_party/sigslot/README.chromium legal/README.sigslot
+
+%build
+# CMAKE_BUILD_TYPE should always be Release due to some hardcoded checks.
+%cmake -G Ninja \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON \
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION:BOOL=OFF \
+ -DTG_OWT_USE_PROTOBUF:BOOL=ON \
+ -DTG_OWT_PACKAGED_BUILD:BOOL=ON
+%cmake_build
+
+%install
+%cmake_install
+
+%files
+%doc src/AUTHORS src/OWNERS legal/README.*
+%license LICENSE src/PATENTS legal/LICENSE.* legal/PATENTS.*
+%{_libdir}/lib%{name}.so.0*
+
+%files devel
+%{_includedir}/%{name}
+%{_libdir}/cmake/%{name}
+%{_libdir}/lib%{name}.so
+
+%changelog
+* Mon Nov 02 2020 Vitaly Zaitsev <vitaly(a)easycoding.org> - 0-2.20201102gite8fcae7
+- Initial SPEC release.
4 years
[qarte/f31] Update to 4.11.0
by Martin Gansser
Summary of changes:
0373f7d... Update to 4.11.0 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[qarte/f32] Update to 4.11.0
by Martin Gansser
Summary of changes:
0373f7d... Update to 4.11.0 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[qarte/f33] Update to 4.11.0
by Martin Gansser
Summary of changes:
0373f7d... Update to 4.11.0 (*)
(*) This commit already existed in another branch; no separate mail sent
4 years
[qarte] Update to 4.11.0
by Martin Gansser
commit 0373f7d4cad34cc4cb965865509f03d76d9c1680
Author: Martin Gansser <mgansser(a)online.de>
Date: Mon Nov 2 14:08:46 2020 +0100
Update to 4.11.0
qarte.spec | 5 ++++-
sources | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/qarte.spec b/qarte.spec
index 4d79e08..4de43c2 100644
--- a/qarte.spec
+++ b/qarte.spec
@@ -2,7 +2,7 @@
%global __python %{__python3}
Name: qarte
-Version: 4.10.0
+Version: 4.11.0
Release: 1%{?dist}
License: GPLv3+
URL: https://launchpad.net/qarte
@@ -48,6 +48,9 @@ cp -pR locale %{buildroot}%{_datadir}
%{_datadir}/icons/hicolor/96x96/apps/%{name}.png
%changelog
+* Mon Nov 02 2020 Martin Gansser <martinkg(a)fedoraproject.org> - 4.11.0-1
+- Update to 4.11.0
+
* Mon Sep 07 2020 Martin Gansser <martinkg(a)fedoraproject.org> - 4.10.0-1
- Update to 4.10.0
diff --git a/sources b/sources
index 75201b4..9db7822 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (qarte-4.10.0.tar.gz) = 539786db6dc0c6721ae1180d634ca9a7e6456c59f5bd3f05840b710ce4e2f09534996ad9bf9a71c2b6de8a5bad06614e549135379d6ff5b46541f5842039ba9a
+SHA512 (qarte-4.11.0.tar.gz) = 95aab7977653af8bc4ee2a5f53696b450c3066dafb68264f56e7e1b6120aeaa679ac521353321b5c1ab9b2a4babde6152efe91b9b3ee0a3408ae5bd2e7c25ad8
4 years
[unifi] Update to 6.0.28, see: https://community.ui.com/releases/UniFi-Network-Controller-6-0-28/23c77a99-
by Richard Shaw
commit 20ce9e94833e8e0f19ddb499402cf0d039370056
Author: Richard Shaw <hobbes1069(a)gmail.com>
Date: Mon Nov 2 07:08:37 2020 -0600
Update to 6.0.28, see:
https://community.ui.com/releases/UniFi-Network-Controller-6-0-28/23c77a9...
.gitignore | 1 +
sources | 2 +-
unifi.spec | 54 +++++++++++++++++++++++++++++++++---------------------
3 files changed, 35 insertions(+), 22 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4a6ad60..84c7876 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,3 +19,4 @@
/UniFi-5.13.32.unix.zip
/UniFi-5.14.22.unix.zip
/UniFi-5.14.23.unix.zip
+/UniFi-6.0.28.unix.zip
diff --git a/sources b/sources
index dff4ccd..d8a362a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (UniFi-5.14.23.unix.zip) = e29969da15bed74fe24eb7b997c14247f3e8c53cc43021c402365f93cda3b7cc48b9222235770101ab37cdd574eb94d1aba445bc04393b70dac386b7a77cebb9
+SHA512 (UniFi-6.0.28.unix.zip) = edb332ccc6624f73c77976a564c157d37f2a11068c2f8af1fa98209efb3b4e01922ab75309f85e5bd053ec50e9eeb433fcaa22bb2c0a27a6ee4de8946a876d46
diff --git a/unifi.spec b/unifi.spec
index c585211..41d1e1b 100644
--- a/unifi.spec
+++ b/unifi.spec
@@ -4,7 +4,7 @@
%global __strip /bin/true
Name: unifi
-Version: 5.14.23
+Version: 6.0.28
Release: 1%{?dist}
Summary: Ubiquiti UniFi controller
@@ -69,7 +69,7 @@ Provides: bundled(commons-dbcp2) = 2.7.0
Provides: bundled(commons-httpclient-3.1-atlassian) = 2
Provides: bundled(commons-httpclient-contrib) = 3.1
Provides: bundled(commons-io) = 2.6
-Provides: bundled(commons-lang3) = 3.9
+Provides: bundled(commons-lang3) = 3.10
Provides: bundled(commons-logging) = 1.2
Provides: bundled(commons-net) = 3.6
Provides: bundled(commons-pool2) = 2.7.0
@@ -104,16 +104,16 @@ Provides: bundled(hibernate-validator) = 6.1.2.Final
Provides: bundled(httpclient) = 4.5.10
Provides: bundled(httpcore) = 4.4.12
Provides: bundled(j2objc-annotations) = 1.1
-Provides: bundled(jackson-annotations) = 2.10.0
-Provides: bundled(jackson-core) = 2.10.0
-Provides: bundled(jackson-databind) = 2.10.0
-Provides: bundled(jackson-datatype-jdk8) = 2.10.0
+Provides: bundled(jackson-annotations) = 2.11.0
+Provides: bundled(jackson-core) = 2.11.0
+Provides: bundled(jackson-databind) = 2.11.0
+Provides: bundled(jackson-datatype-jdk8) = 2.11.0
Provides: bundled(jakarta.validation-api) = 2.0.2
Provides: bundled(java-ipv6) = 0.17
Provides: bundled(java-semver) = 0.9.0
Provides: bundled(javax.mail) = 1.6.2
Provides: bundled(jboss-logging) = 3.3.2.Final
-Provides: bundled(jcl-over-slf4j) = 1.7.28
+Provides: bundled(jcl-over-slf4j) = 1.7.30
Provides: bundled(jenetics) = 4.2.0
Provides: bundled(jmdns) = 3.4.1
Provides: bundled(joda-time) = 2.10.4
@@ -122,10 +122,10 @@ Provides: bundled(json) = 20190722
Provides: bundled(jsr305) = 3.0.2
Provides: bundled(jstl) = 1.2
Provides: bundled(jstun) = 0.7.4
-Provides: bundled(jul-to-slf4j) = 1.7.28
-Provides: bundled(log4j-api) = 2.12.1
-Provides: bundled(log4j-core) = 2.12.1
-Provides: bundled(log4j-slf4j-impl) = 2.12.1
+Provides: bundled(jul-to-slf4j) = 1.7.30
+Provides: bundled(log4j-api) = 2.13.3
+Provides: bundled(log4j-core) = 2.13.3
+Provides: bundled(log4j-slf4j-impl) = 2.13.3
Provides: bundled(mongo-java-driver) = 3.4.3
Provides: bundled(openssh) = 1.0
Provides: bundled(org.eclipse.paho.client.mqttv3) = 1.1.0
@@ -136,11 +136,11 @@ Provides: bundled(protobuf-java-util) = 3.6.0
Provides: bundled(proto-google-common-protos) = 1.12.0
Provides: bundled(proto-google-iam-v1) = 0.12.0
Provides: bundled(radclient4) = 0.12.0
-Provides: bundled(servo-aws) = 0.12.28
-Provides: bundled(servo-core) = 0.12.28
-Provides: bundled(servo-graphite) = 0.12.28
-Provides: bundled(slf4j-api) = 1.7.28
-Provides: bundled(snappy-java) = 1.1.7.3
+Provides: bundled(servo-aws) = 0.13.0
+Provides: bundled(servo-core) = 0.13.0
+Provides: bundled(servo-graphite) = 0.13.0
+Provides: bundled(slf4j-api) = 1.7.30
+Provides: bundled(snappy-java) = 1.1.7.5
Provides: bundled(spectator-api) = 0.88.0
Provides: bundled(spring-aop) = 5.1.5
Provides: bundled(spring-beans) = 5.1.5
@@ -166,13 +166,13 @@ Provides: bundled(spring-websocket) = 5.1.5
Provides: bundled(sshj) = 0.27.0
Provides: bundled(swagger-annotations) = 1.5.20
Provides: bundled(swagger-models) = 1.5.20
-Provides: bundled(tomcat-annotations-api) = 8.5.51
-Provides: bundled(tomcat-embed-core) = 8.5.51
-Provides: bundled(tomcat-embed-el) = 8.5.51
-Provides: bundled(tomcat-embed-jasper) = 8.5.51
+Provides: bundled(tomcat-annotations-api) = 8.5.56
+Provides: bundled(tomcat-embed-core) = 8.5.56
+Provides: bundled(tomcat-embed-el) = 8.5.56
+Provides: bundled(tomcat-embed-jasper) = 8.5.56
Provides: bundled(tomcat-embed-logging-juli) = 8.5.2
Provides: bundled(tomcat-embed-logging-log4j) = 8.5.2
-Provides: bundled(tomcat-embed-websocket) = 8.5.51
+Provides: bundled(tomcat-embed-websocket) = 8.5.56
Provides: bundled(urlrewritefilter) = 4.0.4
### END AUTOMATION ###
@@ -348,6 +348,18 @@ fi
%changelog
+* Sun Oct 25 2020 Richard Shaw <hobbes1069(a)gmail.com> - 6.0.28-1
+- Update to 6.0.28, see:
+ https://community.ui.com/releases/UniFi-Network-Controller-6-0-28/23c77a9...
+
+* Fri Oct 16 2020 Richard Shaw <hobbes1069(a)gmail.com> - 6.0.23-1
+- Update to 6.0.23, see:
+ https://community.ui.com/releases/UniFi-Network-Controller-6-0-23/6ee7262...
+
+* Thu Sep 17 2020 Richard Shaw <hobbes1069(a)gmail.com> - 6.0.22-1
+- Update to 6.0.22 for testing, see:
+ https://community.ui.com/releases/UniFi-Network-Controller-6-0-22/910ceff...
+
* Thu Aug 27 2020 Richard Shaw <hobbes1069(a)gmail.com> - 5.14.23-1
- Update to 5.14.23, for details see:
https://community.ui.com/releases/UniFi-Network-Controller-5-14-23/daf907...
4 years