[qarte] Update to 4.6.0
by Sérgio M. Basto
commit b81a39f65137e25023bfed187c13eec5bba36b8f
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Mon Dec 24 01:03:03 2018 +0000
Update to 4.6.0
qarte.spec | 5 ++++-
sources | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/qarte.spec b/qarte.spec
index e2cd90d..c459d0a 100644
--- a/qarte.spec
+++ b/qarte.spec
@@ -2,7 +2,7 @@
%global __python %{__python3}
Name: qarte
-Version: 4.5.0
+Version: 4.6.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 Dec 24 2018 Sérgio Basto <sergio(a)serjux.com> - 4.6.0-1
+- Update to 4.6.0
+
* Wed Sep 12 2018 Martin Gansser <martinkg(a)fedoraproject.org> - 4.5.0-1
- Update to 4.5.0
diff --git a/sources b/sources
index 58333fa..d70b76d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e8a9517b912935ae8f1bdc7bd70c9d1b qarte-4.5.0.tar.gz
+27c64aec631cb8be341e33c1532d919c qarte-4.6.0.tar.gz
5 years, 11 months
[mythtv-status] Update to 0.10.8
by Sérgio M. Basto
commit b0d378370d06cf065bddeac5333643371f450e25
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Mon Dec 24 00:52:08 2018 +0000
Update to 0.10.8
.gitignore | 1 +
mythtv-status-update-motd.patch | 33 +++++++++++++++++++++++----------
mythtv-status.spec | 7 +++++--
sources | 2 +-
4 files changed, 30 insertions(+), 13 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 63634c9..3493bd3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
mythtv-status-0.10.4.tar.gz
+/mythtv-status-0.10.8.tar.gz
diff --git a/mythtv-status-update-motd.patch b/mythtv-status-update-motd.patch
index 13e2a21..003c615 100644
--- a/mythtv-status-update-motd.patch
+++ b/mythtv-status-update-motd.patch
@@ -1,7 +1,13 @@
---- mythtv-status-0.10.4/bin/mythtv-update-motd.orig 2013-10-28 10:39:56.000000000 +0100
-+++ mythtv-status-0.10.4/bin/mythtv-update-motd 2016-03-07 22:10:12.000000000 +0100
-@@ -1,17 +1,28 @@
- #!/bin/bash
+--- mythtv-status-0.10.8/bin/mythtv-update-motd.orig 2018-12-23 15:52:58.351068982 +0000
++++ mythtv-status-0.10.8/bin/mythtv-update-motd 2018-12-24 00:29:02.533842709 +0000
+@@ -3,12 +3,12 @@
+ # Run mythtv-status to update the MOTD.
+
+ NAME=mythtv-update-motd
+-WORKFILE=/var/run/motd
+-TEMPFILE=/var/run/motd.mythtv-status
++WORKFILE=/etc/motd
++TEMPFILE=/etc/motd.mythtv-status
-. /etc/default/mythtv-status
+. /etc/sysconfig/mythtv-status
@@ -11,8 +17,11 @@
then
exit
fi
+@@ -18,7 +18,16 @@ fi
--[ ! -f /var/run/motd.orig ] && cp /var/run/motd /var/run/motd.orig
+ # Just incase someone has removed their motd file.
+ [ -f $WORKFILE ] || touch $WORKFILE
+-[ -f /var/run/motd.orig ] || cp $WORKFILE /var/run/motd.orig
+# Check if stub exists. If not, assume motd is OK to use as stub
+if [ ! -f /etc/motd.stub ]; then
+ if [ -f /etc/motd ]; then
@@ -24,14 +33,18 @@
+
+# Update motd:
+ # If the tempfile is less than 15 minutes old, object, otherwise
+ # we'll assume that something went wrong and remove it.
+@@ -31,9 +40,9 @@ if [ -f $TEMPFILE ]; then
+ fi
+ fi
+
+-[ ! -f /var/run/motd.orig ] && cp /var/run/motd /var/run/motd.orig
+-
-cp /var/run/motd.orig /var/run/motd.new
+# Insert stub
+cp /etc/motd.stub /tmp/motd.new
+# Add mythtv status to end of stub
ret=0
--mythtv-status $ARGS -h $HOST >> /var/run/motd.new 2> /dev/null || ret=$?
-+mythtv-status $ARGS -h $HOST >> /tmp/motd.new || ret=$?
+ mythtv-status $ARGS -h $HOST >> $TEMPFILE 2> /dev/null || ret=$?
if [ $ret -eq 0 -o $ret -eq 1 ]; then
-- [ -f /var/run/motd.new ] && mv /var/run/motd.new /var/run/motd
-+ [ -f /tmp/motd.new ] && mv /tmp/motd.new /etc/motd
- fi
diff --git a/mythtv-status.spec b/mythtv-status.spec
index 84a5dcb..a5e6128 100644
--- a/mythtv-status.spec
+++ b/mythtv-status.spec
@@ -1,6 +1,6 @@
Name: mythtv-status
-Version: 0.10.4
-Release: 9%{?dist}
+Version: 0.10.8
+Release: 1%{?dist}
Summary: Get the current status of your MythTV system at the command line
Summary(sv): Hämta ett MythTV-systems status på kommandoraden
License: GPLv3
@@ -78,6 +78,9 @@ chmod 755 %{buildroot}%{_sysconfdir}/cron.hourly/mythtv-update-motd.cron
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
%changelog
+* Sun Dec 23 2018 Sérgio Basto <sergio(a)serjux.com> - 0.10.8-1
+- Update to 0.10.8
+
* Fri Jul 27 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 0.10.4-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
diff --git a/sources b/sources
index 1a14b2c..0fc438e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e53666a10a050e47dd371d0083d81b99 mythtv-status-0.10.4.tar.gz
+3ae4b0c58f041e55a3155a28773214ae mythtv-status-0.10.8.tar.gz
5 years, 11 months
[lives/f28] Release 2.10.1
by Antonio
Summary of changes:
a30ded6... Release 2.10.1 (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 11 months
[lives/f29] Release 2.10.1
by Antonio
Summary of changes:
a30ded6... Release 2.10.1 (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 11 months
[lives] Release 2.10.1
by Antonio
commit a30ded6ff14f1117531fc5ac05cf738aa5127d54
Author: sagitter <sagitter(a)fedoraproject.org>
Date: Sun Dec 23 18:12:39 2018 +0100
Release 2.10.1
.gitignore | 1 +
lives.spec | 16 ++++++++++------
sources | 2 +-
3 files changed, 12 insertions(+), 7 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0823bf7..1a27ff3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@
/LiVES-2.8.9.tar.bz2
/lives-2.10.0-pre1.tar.bz2
/LiVES-2.10.0.tar.bz2
+/LiVES-2.10.1.tar.bz2
diff --git a/lives.spec b/lives.spec
index d6999f0..3b69600 100644
--- a/lives.spec
+++ b/lives.spec
@@ -13,7 +13,7 @@
#
Name: lives
-Version: 2.10.0
+Version: 2.10.1
Release: 1%{?dist}
Summary: Video editor and VJ tool
License: GPLv3+ and LGPLv3+
@@ -95,9 +95,9 @@ It is small in size, yet it has many advanced features.
%autosetup -n lives-%{version}
# Remove spurious executable permissions
-for i in `find . -type f \( -name "*.c" -o -name "*.h" -o -name "*.txt" \)`; do
-chmod a-x $i
-done
+find . -type f -name "*.h" -exec chmod 0644 '{}' \;
+find . -type f -name "*.txt" -exec chmod 0644 '{}' \;
+find . -type f -name "*.c" -exec chmod 0644 '{}' \;
%build
%configure --disable-silent-rules --enable-shared --enable-static \
@@ -110,12 +110,13 @@ done
%make_install
%find_lang %{name}
+# Remove libtools archives and static libraries
find %{buildroot} -name '*.la' -exec rm -f {} ';'
find %{buildroot} -name '*.a' -exec rm -f {} ';'
# We want that these libraries are private
-mv %{buildroot}%{_libdir}/libOSC* %{buildroot}%{_libdir}/%{name}
-mv %{buildroot}%{_libdir}/libweed* %{buildroot}%{_libdir}/%{name}
+mv %{buildroot}%{_libdir}/libOSC* %{buildroot}%{_libdir}/%{name}/
+mv %{buildroot}%{_libdir}/libweed* %{buildroot}%{_libdir}/%{name}/
# Weed's devel files removed
rm -rf %{buildroot}%{_libdir}/pkgconfig
@@ -175,6 +176,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.appdata.xml
%{_metainfodir}/LiVES.appdata.xml
%changelog
+* Sun Dec 23 2018 Antonio Trande <sagitterATfedoraproject.org> - 2.10.1-1
+- Release 2.10.1
+
* Tue Sep 04 2018 Antonio Trande <sagitterATfedoraproject.org> - 2.10.0-1
- Release 2.10.0
- Drop Python2 scripts
diff --git a/sources b/sources
index 5fd057b..e80b6c7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3f2cd91b278a9891703636725c89c55c LiVES-2.10.0.tar.bz2
+f32554a295b58c01f69c9ed738562033 LiVES-2.10.1.tar.bz2
5 years, 11 months
[telegram-desktop/f28: 2/2] Merge branch 'master' into f28
by Vitaly Zaitsev
commit 90b82621a9e120e879ed97a9c3e797d25274e95d
Merge: 460cb7c 177f24f
Author: Vitaly Zaitsev <vitaly(a)easycoding.org>
Date: Sun Dec 23 15:35:37 2018 +0500
Merge branch 'master' into f28
telegram-desktop-gcc-fix.patch | 21 +++++++++++++++++++++
telegram-desktop.spec | 3 +++
2 files changed, 24 insertions(+)
---
5 years, 11 months
[telegram-desktop/f28: 1/2] Backported upstream build fix.
by Vitaly Zaitsev
commit 177f24fd7e9fd086a7b243cb1fc81faada140f19
Author: Vitaly Zaitsev <vitaly(a)easycoding.org>
Date: Sun Dec 23 11:35:20 2018 +0100
Backported upstream build fix.
telegram-desktop-gcc-fix.patch | 21 +++++++++++++++++++++
telegram-desktop.spec | 3 +++
2 files changed, 24 insertions(+)
---
diff --git a/telegram-desktop-gcc-fix.patch b/telegram-desktop-gcc-fix.patch
new file mode 100644
index 0000000..8f025b8
--- /dev/null
+++ b/telegram-desktop-gcc-fix.patch
@@ -0,0 +1,21 @@
+From 4e692e2c1e10538d7fd3e7c0e0a66e0ba474fe76 Mon Sep 17 00:00:00 2001
+From: John Preston <johnprestonmail(a)gmail.com>
+Date: Sun, 23 Dec 2018 01:31:12 +0400
+Subject: [PATCH] Version 1.5.3: Fix build for GCC.
+
+---
+ Telegram/SourceFiles/window/window_peer_menu.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/Telegram/SourceFiles/window/window_peer_menu.cpp b/Telegram/SourceFiles/window/window_peer_menu.cpp
+index c6425e763..f8729948a 100644
+--- a/Telegram/SourceFiles/window/window_peer_menu.cpp
++++ b/Telegram/SourceFiles/window/window_peer_menu.cpp
+@@ -33,6 +33,7 @@ For license and copyright information please follow this link:
+ #include "info/profile/info_profile_values.h"
+ #include "data/data_session.h"
+ #include "data/data_feed.h"
++#include "data/data_poll.h"
+ #include "dialogs/dialogs_key.h"
+
+ namespace Window {
diff --git a/telegram-desktop.spec b/telegram-desktop.spec
index 9837171..968b67c 100644
--- a/telegram-desktop.spec
+++ b/telegram-desktop.spec
@@ -32,6 +32,9 @@ Patch0: %{name}-build-fixes.patch
Patch1: %{name}-system-fonts.patch
Patch2: %{name}-unbundle-minizip.patch
+# Temporary patches
+Patch100: %{name}-gcc-fix.patch
+
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
Recommends: libappindicator-gtk3%{?_isa}
Requires: qt5-qtimageformats%{?_isa}
5 years, 11 months