Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions rpm/polo.spec
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
%define vermaj 18
%define vermin 1-beta
%define vermin 3-beta
%define debug_package %{nil}

Name: polo
Version: %{vermaj}
Release: 1_beta%{?dist}
Release: 3_beta%{?dist}
Summary: Advanced file manager for Linux written in Vala.

License: LGPLv3+
URL: https://github.com/teejee2008/%{name}
Source0: https://github.com/teejee2008/%{name}/archive/v%{vermaj}.%{vermin}.tar.gz

BuildRequires: vala, vte291-devel, libgee-devel, json-glib-devel, libxml2-devel, chrpath, gettext
Requires: libgee, vte291, json-glib, libxml2, libmediainfo, rsync, pv, p7zip, p7zip-plugins, tar, gzip, bzip2, xz, fish, qemu-kvm, qemu-img, gvfs, rclone, libsoup
Requires: libgee, vte291, json-glib, libxml2, libmediainfo, rsync, pv, p7zip, p7zip-plugins, tar, gzip
Requires: bzip2, xz, fish, qemu-kvm, qemu-img, gvfs, rclone, libsoup, gvfs-afc, gvfs-afp, gvfs-goa
Requires: gvfs-mtp, gvfs-nfs, gvfs-fuse, gvfs-fuse, gvfs-gphoto2 gvfs-archive, gvfs-smb

%description
Advanced file manager for Linux written in Vala. Supports multiple panes (single, dual, quad)
Expand All @@ -33,7 +35,6 @@ rm %{buildroot}%{_bindir}/polo-uninstall

%files
%{_bindir}/gtk3-version-polo
%{_bindir}/polo-chroot
%{_bindir}/polo-gtk
%{_datarootdir}/applications/polo-gtk.desktop
%{_datarootdir}/appdata/polo-gtk.appdata.xml
Expand All @@ -43,5 +44,8 @@ rm %{buildroot}%{_bindir}/polo-uninstall


%changelog
* Fri Feb 23 2018 <grturner@5x5code.com> 18-2beta
- Fixed error with dependency - gvfs-backed
- see https://github.com/teejee2008/polo/issues/171
* Tue Jan 30 2018 <grturner@5x5code.com> 18-1beta
- Initial packaging
2 changes: 1 addition & 1 deletion src/Gtk/TermBox.vala
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public class TermBox : Gtk.Box {
cmd = "%s\n".printf(cmd);
}

term.feed_child(cmd, -1);
term.feed_child(cmd.to_utf8());
}

public void refresh(){
Expand Down