Overview

Request 4214 (accepted)

No description set

flowblade.changes Changed
x
 
1
@@ -1,4 +1,14 @@
2
 -------------------------------------------------------------------
3
+Sun Apr  1 18:22:22 UTC 2018 - avvissu@yandex.by
4
+
5
+- Update to 1.16:
6
+  * see /usr/share/doc/packages/flowblade/RELEASE_NOTES
7
+- Change the home page
8
+- Refresh dependencies
9
+- Fix: non-executable-script
10
+- Spec file cleanup
11
+
12
+-------------------------------------------------------------------
13
 Wed Oct  4 23:03:03 UTC 2017 - avvissu@yandex.by
14
 
15
 - Update to 1.14:
16
flowblade.spec Changed
144
 
1
@@ -1,7 +1,7 @@
2
 #
3
 # spec file for package flowblade
4
 #
5
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
6
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
7
 #
8
 # All modifications and additions to the file contributed by third parties
9
 # remain the property of their copyright owners, unless otherwise agreed
10
@@ -15,48 +15,47 @@
11
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
12
 #
13
 
14
-%define prjname Flowblade
15
+
16
 Name:           flowblade
17
-Version:        1.14
18
+Version:        1.16
19
 Release:        0
20
 Summary:        Multitrack non-linear video editor
21
-License:        GPL-3.0
22
+License:        GPL-3.0-only
23
 Group:          Productivity/Multimedia/Video/Editors and Convertors
24
-Url:            https://code.google.com/p/flowblade/
25
+URL:            http://jliljebl.github.io/flowblade
26
 Source:         https://github.com/jliljebl/flowblade/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
27
-BuildRequires:  python-devel >= 2.7.0
28
-BuildRequires:  update-desktop-files
29
-BuildRequires:  shared-mime-info
30
 BuildRequires:  fdupes
31
 BuildRequires:  frei0r-plugins >= 1.4
32
-# Check list of dependencies:
33
-BuildRequires:  pkgconfig(cairomm-1.0)
34
-BuildRequires:  pkgconfig(librsvg-2.0)
35
-BuildRequires:  libmlt6-modules
36
-BuildRequires:  dbus-1-python
37
-BuildRequires:  python-cairo
38
-BuildRequires:  python-gnomevfs
39
-BuildRequires:  python-imaging
40
-BuildRequires:  python-mlt
41
-BuildRequires:  python-numpy
42
+BuildRequires:  gobject-introspection
43
+BuildRequires:  python-devel >= 2.7.0
44
+BuildRequires:  shared-mime-info
45
+BuildRequires:  update-desktop-files
46
 Requires:       dbus-1-python
47
 Requires:       ffmpeg
48
 Requires:       frei0r-plugins >= 1.4
49
 Requires:       ladspa
50
 Requires:       ladspa-swh-plugins
51
+Requires:       libmlt6-data
52
 Requires:       libmlt6-modules
53
 Requires:       python-cairo
54
-Requires:       python-gnomevfs
55
-Requires:       python-gobject-Gdk
56
 Requires:       python-gobject
57
+Requires:       python-gobject-Gdk
58
 Requires:       python-imaging
59
 Requires:       python-mlt
60
 Requires:       python-numpy
61
+Requires:       rsvg-view
62
 Requires:       sox
63
-Requires:       %(rpm -qf $(readlink -qne %{_libdir}/libcairomm-1.0.so) --qf '%{NAME} >= %{VERSION}')
64
-Requires:       %(rpm -qf $(readlink -qne %{_libdir}/librsvg-2.so) --qf '%{NAME} >= %{VERSION}')
65
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
66
+Recommends:     gmic
67
 BuildArch:      noarch
68
+# SECTION Check dependencies:
69
+BuildRequires:  dbus-1-python
70
+BuildRequires:  libmlt6-modules >= 6.6.0
71
+BuildRequires:  python-cairo
72
+BuildRequires:  python-imaging
73
+BuildRequires:  python-mlt
74
+BuildRequires:  python-numpy
75
+BuildRequires:  rsvg-view
76
+# / SECTION
77
 
78
 %description
79
 Flowblade is designed to provide a fast, precise and robust editing experience.
80
@@ -72,6 +71,9 @@
81
 %prep
82
 %setup -q -n %{name}-%{version}/%{name}-trunk
83
 
84
+# Check MLT build with SDL 1.2
85
+rpm -qR libmlt6-modules | grep -w libSDL || 'SDL 1.2 not found' 2> /dev/null
86
+#
87
 sed -i 's|%{_datadir}/pyshared|%{python_sitelib}|' %{name}
88
 
89
 %build
90
@@ -81,14 +83,25 @@
91
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
92
 
93
 mkdir -p %{buildroot}%{_datadir}/locale
94
-mv %{buildroot}{%{python_sitelib}/%{prjname}/locale/*,%{_datadir}/locale/}
95
+mv %{buildroot}{%{python_sitelib}/Flowblade/locale/*,%{_datadir}/locale/}
96
 find %{buildroot} -type f -name "*.po*" -delete -print
97
 
98
 rm -rf %{buildroot}%{_libexecdir}/mime/packages/%{name}
99
 
100
-%fdupes -s %{buildroot}%{python_sitelib}
101
+%fdupes %{buildroot}%{python_sitelib}
102
 %find_lang %{name}
103
 
104
+# Fix: non-executable-script
105
+pushd %{buildroot}
106
+for _file in $(grep -rl '^\#\!\/'); do
107
+    ! echo $_file | grep '\/usr\/bin\|\/launch' || chmod 0755 $_file 
108
+    find -name ${_file##*/} -type f -perm 644 -exec sed '/^\#\!/d' -i {} \+
109
+    find -name ${_file##*/} -type f -perm 755 -exec sed '/^\#\!\/.\+py/c\#\!%{_bindir}/python' -i {} \+
110
+    find -name ${_file##*/} -type f -perm 755 -exec sed '/^\#\!\/.\+sh/c\#\!/bin/bash' -i {} \+
111
+done
112
+%py_compile .%{python_sitelib}
113
+popd
114
+
115
 %post
116
 %mime_database_post
117
 %desktop_database_post
118
@@ -98,18 +111,16 @@
119
 %desktop_database_postun
120
 
121
 %files
122
-%defattr(0644,root,root)
123
-%doc AUTHORS COPYING README docs/RELEASE_NOTES*
124
-%attr(0755,root,root) %{_bindir}/%{name}
125
+%license COPYING
126
+%doc AUTHORS README docs/RELEASE_NOTES*
127
+%{_bindir}/%{name}
128
 %{_datadir}/applications/%{name}.desktop
129
-%{_mandir}/man?/%{name}.?%{ext_info}
130
-%{_datadir}/pixmaps/%{name}.png
131
+%{_datadir}/pixmaps/%{name}.??g
132
 %{_datadir}/mime/packages/%{name}.xml
133
-%{python_sitelib}/%{prjname}
134
-%attr(0755,root,root) %{python_sitelib}/%{prjname}/launch/%{name}*
135
-%{python_sitelib}/%{name}-*.egg-info
136
+%{_mandir}/man?/%{name}.?%{ext_info}
137
+%{python_sitelib}/Flowblade/
138
+%{python_sitelib}/%{name}*info
139
 
140
 %files lang -f %{name}.lang
141
-%defattr(0644,root,root)
142
 
143
 %changelog
144
flowblade-1.14.tar.gz -> flowblade-1.16.tar.gz Changed
Refresh
Refresh
Request History
Aliaksei Padvalski's avatar

awissu created request about 7 years ago


Aliaksei Padvalski's avatar

awissu accepted request about 7 years ago