From 24887035ba428cee8124487262626c67b16aa03219b3a0720adcfbe26b4a149c Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Mon, 26 Feb 2018 09:49:36 +0000 Subject: [PATCH] Accepting request 578641 from home:jubalh OBS-URL: https://build.opensuse.org/request/show/578641 OBS-URL: https://build.opensuse.org/package/show/Base:System/fzy?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++++++++++ .gitignore | 1 + fzy-0.9.tar.gz | 3 +++ fzy.changes | 4 ++++ fzy.spec | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 81 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 fzy-0.9.tar.gz create mode 100644 fzy.changes create mode 100644 fzy.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/fzy-0.9.tar.gz b/fzy-0.9.tar.gz new file mode 100644 index 0000000..7c30485 --- /dev/null +++ b/fzy-0.9.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72182686806ddce7807d85c27efc321a1b01087643ce8006b1225e3617eecff5 +size 42992 diff --git a/fzy.changes b/fzy.changes new file mode 100644 index 0000000..4e3de26 --- /dev/null +++ b/fzy.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Wed Feb 21 10:19:19 UTC 2018 - mvetter@suse.com + +- Create initial package for openSUSE in version 0.9 diff --git a/fzy.spec b/fzy.spec new file mode 100644 index 0000000..ea1a824 --- /dev/null +++ b/fzy.spec @@ -0,0 +1,50 @@ +# +# spec file for package fzy +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +Name: fzy +Version: 0.9 +Release: 0 +Summary: A fuzzy text selector +License: MIT +Group: Productivity/Text/Utilities +URL: https://github.com/jhawthorn/fzy +Source: https://github.com/jhawthorn/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz +BuildRequires: automake + +%description +fzy can be used to filter any list: files, command history, processes, +hostnames, bookmarks, git commits, etc. It's designed to be used both as an +editor plugin and on the command line. Rather than clearing the screen, fzy +displays its interface directly below the current cursor position, scrolling +the screen if necessary. + +%prep +%setup -q + +%build +make %{?_smp_mflags} + +%install +make install PREFIX=%{buildroot}%{_prefix} %{?_smp_mflags} + +%files +%doc CHANGELOG.md README.md LICENSE +%{_bindir}/fzy +%{_mandir}/man1/fzy.1%{ext_man} + +%changelog