Page Menu
Home
Solus
Search
Configure Global Search
Log In
Files
F10878386
D7239.id17351.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
7 KB
Referenced Files
None
Subscribers
None
D7239.id17351.diff
View Options
diff --git a/abi_used_libs b/abi_used_libs
--- a/abi_used_libs
+++ b/abi_used_libs
@@ -1,13 +1,10 @@
-libatk-1.0.so.0
libc.so.6
-libcairo-gobject.so.2
libcairo.so.2
libgdk-3.so.0
-libgdk_pixbuf-2.0.so.0
libgio-2.0.so.0
libglib-2.0.so.0
libgobject-2.0.so.0
libgtk-3.so.0
libkeybinder-3.0.so.0
libpango-1.0.so.0
-libpangocairo-1.0.so.0
+libpthread.so.0
diff --git a/files/0003-avoid-double-free-when-passing-string-array-to-async-function.patch b/files/0003-avoid-double-free-when-passing-string-array-to-async-function.patch
deleted file mode 100644
--- a/files/0003-avoid-double-free-when-passing-string-array-to-async-function.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From: Bernhard Übelacker <bernhardu@mailbox.org>
-Date: Mon, 6 May 2019 13:29:50 -0400
-Subject: Avoid double free when passing string array to async function
-
-Bug-Debian: https://bugs.debian.org/926386
-Last-Update: 2019-04-20
-Forwarded: https://github.com/phw/peek/issues/419
----
- src/post-processing/ffmpeg-post-processor.vala | 20 ++++++++++++--------
- 1 file changed, 12 insertions(+), 8 deletions(-)
-
-diff --git a/src/post-processing/ffmpeg-post-processor.vala b/src/post-processing/ffmpeg-post-processor.vala
-index c9727c0..1a3d59c 100644
---- a/src/post-processing/ffmpeg-post-processor.vala
-+++ b/src/post-processing/ffmpeg-post-processor.vala
-@@ -79,15 +79,19 @@ namespace Peek.PostProcessing {
- var extension = Utils.get_file_extension_for_format (config.output_format);
- var output_file = Utils.create_temp_file (extension);
-
-- string[] args = {
-- "ffmpeg", "-y",
-- "-i", input_file.get_path (),
-- "-i", palette_file.get_path (),
-- "-filter_complex", "fps=%d,paletteuse".printf (config.framerate)
-- };
--
- var argv = new Array<string> ();
-- argv.append_vals (args, args.length);
-+
-+ argv.append_val ("ffmpeg");
-+ argv.append_val ("-y");
-+
-+ argv.append_val ("-i");
-+ argv.append_val (input_file.get_path ());
-+
-+ argv.append_val ("-i");
-+ argv.append_val (palette_file.get_path ());
-+
-+ argv.append_val ("-filter_complex");
-+ argv.append_val ("fps=%d,paletteuse".printf (config.framerate));
-
- if (config.output_format == OutputFormat.APNG) {
- argv.append_val ("-plays");
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,12 +1,11 @@
name : peek
-version : 1.3.1
-release : 22
+version : 1.4.0
+release : 23
source :
- - https://github.com/phw/peek/archive/1.3.1.tar.gz : 8104b65b041858b7f7f482e1425f8f22d429524340ad341f95f08b08fe4e8602
+ - https://github.com/phw/peek/archive/1.4.0.tar.gz : 506c5797102629ff4a319c5fcc4eb6b771ffd680bb83ea07c1e5e8166000d605
license : GPL-3.0-or-later
component : multimedia.video
-summary : A simple tool that allows you to record short animated GIF images from
- your screen
+summary : A simple tool that allows you to record short animated GIF images from your screen
description: |
A simple tool that allows you to record short animated GIF images from your screen.
builddeps :
@@ -20,12 +19,8 @@
- gifski
- imagemagick
setup : |
- %patch -p1 < $pkgfiles/0003-avoid-double-free-when-passing-string-array-to-async-function.patch
-
- %cmake . -DBUILD_TESTS=ON
+ %meson_configure
build : |
- %make
+ %ninja_build
install : |
- %make_install
-check : |
- %make test
+ %ninja_install
\ No newline at end of file
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -2,8 +2,8 @@
<Source>
<Name>peek</Name>
<Packager>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
+ <Name>Jacob Alzén</Name>
+ <Email>jacob.alzen@gmail.com</Email>
</Packager>
<License>GPL-3.0-or-later</License>
<PartOf>multimedia.video</PartOf>
@@ -23,14 +23,8 @@
<Path fileType="data">/usr/share/applications/com.uploadedlobster.peek.desktop</Path>
<Path fileType="data">/usr/share/dbus-1/services/com.uploadedlobster.peek.service</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/com.uploadedlobster.peek.gschema.xml</Path>
- <Path fileType="data">/usr/share/icons/hicolor/128x128/apps/com.uploadedlobster.peek.png</Path>
- <Path fileType="data">/usr/share/icons/hicolor/16x16/apps/com.uploadedlobster.peek.png</Path>
- <Path fileType="data">/usr/share/icons/hicolor/24x24/apps/com.uploadedlobster.peek.png</Path>
- <Path fileType="data">/usr/share/icons/hicolor/256x256/apps/com.uploadedlobster.peek.png</Path>
- <Path fileType="data">/usr/share/icons/hicolor/32x32/apps/com.uploadedlobster.peek.png</Path>
- <Path fileType="data">/usr/share/icons/hicolor/48x48/apps/com.uploadedlobster.peek.png</Path>
- <Path fileType="data">/usr/share/icons/hicolor/512x512/apps/com.uploadedlobster.peek.png</Path>
- <Path fileType="data">/usr/share/icons/hicolor/64x64/apps/com.uploadedlobster.peek.png</Path>
+ <Path fileType="data">/usr/share/icons/hicolor/scalable/apps/com.uploadedlobster.peek.svg</Path>
+ <Path fileType="data">/usr/share/icons/hicolor/symbolic/apps/com.uploadedlobster.peek-symbolic.svg</Path>
<Path fileType="localedata">/usr/share/locale/ar/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/ca/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/cs/LC_MESSAGES/peek.mo</Path>
@@ -43,6 +37,8 @@
<Path fileType="localedata">/usr/share/locale/hr/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/id/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/it/LC_MESSAGES/peek.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/ja/LC_MESSAGES/peek.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/kn/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/ko/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/lt/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/nap/LC_MESSAGES/peek.mo</Path>
@@ -54,6 +50,7 @@
<Path fileType="localedata">/usr/share/locale/ru/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/sr/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/sv/LC_MESSAGES/peek.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/tr/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/uk_UA/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/zh_CN/LC_MESSAGES/peek.mo</Path>
<Path fileType="localedata">/usr/share/locale/zh_TW/LC_MESSAGES/peek.mo</Path>
@@ -61,12 +58,12 @@
</Files>
</Package>
<History>
- <Update release="22">
- <Date>2019-06-18</Date>
- <Version>1.3.1</Version>
+ <Update release="23">
+ <Date>2019-09-24</Date>
+ <Version>1.4.0</Version>
<Comment>Packaging update</Comment>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
+ <Name>Jacob Alzén</Name>
+ <Email>jacob.alzen@gmail.com</Email>
</Update>
</History>
</PISI>
\ No newline at end of file
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Jun 22 2023, 8:25 AM (7 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5859350
Default Alt Text
D7239.id17351.diff (7 KB)
Attached To
Mode
D7239: Update peek to 1.4.0
Attached
Detach File
Event Timeline
Log In to Comment