Changes of Revision 8
flowblade.changes
Changed
x
1
2
-------------------------------------------------------------------
3
+Mon Mar 3 03:03:03 UTC 2025 - olaf@aepfle.de
4
+
5
+- Update to 2.18.1
6
+
7
+-------------------------------------------------------------------
8
Sun Apr 1 18:22:22 UTC 2018 - avvissu@yandex.by
9
10
- Update to 1.16:
11
flowblade.spec
Changed
163
1
2
#
3
# spec file for package flowblade
4
#
5
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
6
+# Copyright (c) 2025 SUSE LLC
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
11
# license that conforms to the Open Source Definition (Version 1.9)
12
# published by the Open Source Initiative.
13
14
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
15
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
16
#
17
18
19
Name: flowblade
20
-Version: 1.16
21
+Version: 2.18.1
22
Release: 0
23
Summary: Multitrack non-linear video editor
24
License: GPL-3.0-only
25
Group: Productivity/Multimedia/Video/Editors and Convertors
26
URL: http://jliljebl.github.io/flowblade
27
-Source: https://github.com/jliljebl/flowblade/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
28
+Source0: %name-%version.tar
29
+BuildArch: noarch
30
BuildRequires: fdupes
31
-BuildRequires: frei0r-plugins >= 1.4
32
-BuildRequires: gobject-introspection
33
-BuildRequires: python-devel >= 2.7.0
34
-BuildRequires: shared-mime-info
35
-BuildRequires: update-desktop-files
36
-Requires: dbus-1-python
37
+BuildRequires: pkgconfig(python3)
38
+BuildRequires: python-rpm-macros
39
+BuildRequires: python3-setuptools
40
Requires: ffmpeg
41
-Requires: frei0r-plugins >= 1.4
42
+Requires: frei0r-plugins
43
Requires: ladspa
44
Requires: ladspa-swh-plugins
45
-Requires: libmlt6-data
46
-Requires: libmlt6-modules
47
-Requires: python-cairo
48
-Requires: python-gobject
49
-Requires: python-gobject-Gdk
50
-Requires: python-imaging
51
-Requires: python-mlt
52
-Requires: python-numpy
53
+Requires: libmlt7-data
54
+Requires: libmlt7-modules
55
+Requires: python3-Pillow
56
+Requires: python3-cairo
57
+Requires: python3-gobject
58
+Requires: python3-gobject-Gdk
59
+Requires: python3-libusb1
60
+Requires: python3-mlt
61
+Requires: python3-numpy
62
Requires: rsvg-view
63
Requires: sox
64
-Recommends: gmic
65
-BuildArch: noarch
66
-# SECTION Check dependencies:
67
-BuildRequires: dbus-1-python
68
-BuildRequires: libmlt6-modules >= 6.6.0
69
-BuildRequires: python-cairo
70
-BuildRequires: python-imaging
71
-BuildRequires: python-mlt
72
-BuildRequires: python-numpy
73
-BuildRequires: rsvg-view
74
-# / SECTION
75
76
%description
77
Flowblade is designed to provide a fast, precise and robust editing experience.
78
79
%lang_package
80
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
+%autosetup -p1
89
90
%build
91
-python setup.py build
92
+pushd flowblade-trunk
93
+sed -i~ 's|%_datadir/pyshared|%python_sitelib|' %name
94
+diff -u "$_"~ "$_" && exit 1
95
+python3 setup.py build
96
+popd
97
98
%install
99
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
100
-
101
-mkdir -p %{buildroot}%{_datadir}/locale
102
-mv %{buildroot}{%{python_sitelib}/Flowblade/locale/*,%{_datadir}/locale/}
103
-find %{buildroot} -type f -name "*.po*" -delete -print
104
-
105
-rm -rf %{buildroot}%{_libexecdir}/mime/packages/%{name}
106
-
107
-%fdupes %{buildroot}%{python_sitelib}
108
-%find_lang %{name}
109
-
110
-# Fix: non-executable-script
111
-pushd %{buildroot}
112
-for _file in $(grep -rl '^\#\!\/'); do
113
- ! echo $_file | grep '\/usr\/bin\|\/launch' || chmod 0755 $_file
114
- find -name ${_file##*/} -type f -perm 644 -exec sed '/^\#\!/d' -i {} \+
115
- find -name ${_file##*/} -type f -perm 755 -exec sed '/^\#\!\/.\+py/c\#\!%{_bindir}/python' -i {} \+
116
- find -name ${_file##*/} -type f -perm 755 -exec sed '/^\#\!\/.\+sh/c\#\!/bin/bash' -i {} \+
117
-done
118
-%py_compile .%{python_sitelib}
119
+pushd flowblade-trunk
120
+python3 setup.py install --root '%buildroot'
121
+mkdir -p %buildroot%_datadir/locale
122
+mv %buildroot{%python_sitelib/Flowblade/locale/*,%_datadir/locale/}
123
+find %buildroot -type f -name "*.po*" -delete -print
124
+rm -rfv %buildroot%_libexecdir/mime
125
popd
126
-
127
-%post
128
-%mime_database_post
129
-%desktop_database_post
130
-
131
-%postun
132
-%mime_database_postun
133
-%desktop_database_postun
134
+%fdupes %buildroot%python_sitelib
135
+%find_lang %name
136
137
%files
138
-%license COPYING
139
-%doc AUTHORS README docs/RELEASE_NOTES*
140
-%{_bindir}/%{name}
141
-%{_datadir}/applications/%{name}.desktop
142
-%{_datadir}/pixmaps/%{name}.??g
143
-%{_datadir}/mime/packages/%{name}.xml
144
-%{_mandir}/man?/%{name}.?%{ext_info}
145
-%{python_sitelib}/Flowblade/
146
-%{python_sitelib}/%{name}*info
147
-
148
-%files lang -f %{name}.lang
149
+%license LICENSE
150
+%doc flowblade-trunk/docs/RELEASE_NOTES.md
151
+%_bindir/*
152
+%_datadir/applications/*.desktop
153
+%_datadir/icons/*
154
+%_datadir/metainfo/*.xml
155
+%_datadir/mime/packages/*.xml
156
+%_mandir/man?/*
157
+%python_sitelib/Flowblade/
158
+%python_sitelib/%name-*-info
159
+
160
+%files lang -f %name.lang
161
162
%changelog
163
_service
Added
20
1
2
+<services>
3
+ <service name="obs_scm">
4
+ <param name="filename">flowblade</param>
5
+ <param name="revision">8bede966fa66c526ec97d35254cca75704799e58</param>
6
+ <param name="scm">git</param>
7
+ <param name="submodules">disable</param>
8
+ <param name="url">https://github.com/jliljebl/flowblade.git</param>
9
+ <param name="versionformat">@PARENT_TAG@</param>
10
+ <param name="versionrewrite-pattern">v?(^\++)(.*)</param>
11
+ <param name="versionrewrite-replacement">\1</param>
12
+ </service>
13
+ <service mode="buildtime" name="tar">
14
+ <param name="obsinfo">flowblade.obsinfo</param>
15
+ </service>
16
+ <service mode="buildtime" name="set_version">
17
+ <param name="basename">flowblade</param>
18
+ </service>
19
+</services>
20
_service:obs_scm:flowblade-2.18.1.obscpio
Added
_service:obs_scm:flowblade.obsinfo
Added
6
1
2
+name: flowblade
3
+version: 2.18.1
4
+mtime: 1739778503
5
+commit: 8bede966fa66c526ec97d35254cca75704799e58
6
flowblade-1.16.tar.gz
Deleted