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