- fix building with new rspec

- 3.1.8

- remove X-KDE-Library (bnc#899104)
- 3.1.7

- do not crash if blacklisting empty selection (bnc#896468)
- 3.1.6

- Use a more flexible rubygem requirement syntax (bnc#895069)
- 3.1.5

- fix crash in unban dialog
- 3.1.4

- mark properly string to translation
- 3.1.3

- correctly set textdomain to get translated strings
- 3.1.2

OBS-URL: https://build.opensuse.org/package/show/YaST:Head/yast2-cio?expand=0&rev=1
This commit is contained in:
José Iván López González
2017-09-14 14:56:57 +00:00
committed by Git OBS Bridge
commit 96dee5394d
5 changed files with 154 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
yast2-cio-3.1.8.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:25b99f4c202ebb840fccd07f3e74244b26023c6b3fff1d96a943971943d579e4
size 22209

55
yast2-cio.changes Normal file
View File

@@ -0,0 +1,55 @@
-------------------------------------------------------------------
Fri Jul 31 11:55:51 UTC 2015 - jreidinger@suse.com
- fix building with new rspec
- 3.1.8
-------------------------------------------------------------------
Thu Dec 4 07:13:51 UTC 2014 - jreidinger@suse.com
- remove X-KDE-Library (bnc#899104)
- 3.1.7
-------------------------------------------------------------------
Fri Sep 12 13:35:22 UTC 2014 - jreidinger@suse.com
- do not crash if blacklisting empty selection (bnc#896468)
- 3.1.6
-------------------------------------------------------------------
Thu Sep 4 12:16:17 UTC 2014 - mvidner@suse.com
- Use a more flexible rubygem requirement syntax (bnc#895069)
- 3.1.5
-------------------------------------------------------------------
Tue Jun 3 14:56:15 UTC 2014 - jreidinger@suse.com
- fix crash in unban dialog
- 3.1.4
-------------------------------------------------------------------
Tue Mar 25 15:47:33 UTC 2014 - jreidinger@suse.com
- mark properly string to translation
- 3.1.3
-------------------------------------------------------------------
Mon Mar 24 10:36:59 UTC 2014 - jreidinger@suse.com
- correctly set textdomain to get translated strings
- 3.1.2
-------------------------------------------------------------------
Fri Feb 14 09:14:16 UTC 2014 - jreidinger@suse.com
- Fix invalid STDOUT exception for debugging prints
- Add desktop file
- 3.1.1
-------------------------------------------------------------------
Thu Jan 16 15:21:02 UTC 2014 - jreidinger@suse.com
- initial version (FATE#316579)
- 3.1.0

72
yast2-cio.spec Normal file
View File

@@ -0,0 +1,72 @@
#
# spec file for package yast2-cio
#
# Copyright (c) 2017 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/
#
######################################################################
#
# IMPORTANT: Please do not change spec file in build service directly
# Use https://github.com/yast/yast-cio repo
#
######################################################################
Name: yast2-cio
Version: 3.1.8
Release: 0
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: %{name}-%{version}.tar.bz2
Requires: s390-tools
Requires: yast2 >= 3.0.5
Requires: yast2-ruby-bindings >= 1.2.0
BuildRequires: update-desktop-files
BuildRequires: yast2 >= 3.0.5
BuildRequires: yast2-devtools >= 1.2.0
BuildRequires: yast2-ruby-bindings >= 1.2.0
#for install task
BuildRequires: rubygem(yast-rake)
# for tests
BuildRequires: rubygem(rspec)
Summary: YaST2 - IO Channel management
License: GPL-2.0 or GPL-3.0
Group: System/YaST
Url: https://github.com/yast/yast-cio
%description
Provides interface for blacklisting and unblocking IO channels
%prep
%setup -n %{name}-%{version}
%check
rake test:unit
%install
rake install DESTDIR="%{buildroot}"
%files
%defattr(-,root,root)
%{yast_dir}/clients/*.rb
%{yast_dir}/lib/iochannel
%{yast_desktopdir}/cio.desktop
%doc COPYING README.md
%changelog