15
0
forked from pool/python-PyRIC

Accepting request 603606 from devel:languages:python:misc

Move the package back to d:l:p to try to submit it to Factory again

OBS-URL: https://build.opensuse.org/request/show/603606
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyRIC?expand=0&rev=1
This commit is contained in:
2018-05-03 11:04:55 +00:00
committed by Git OBS Bridge
commit 4d34c4f58b
5 changed files with 94 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
PyRIC-0.1.6.3.tar.gz Normal file
View File

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

9
python-PyRIC.changes Normal file
View File

@@ -0,0 +1,9 @@
-------------------------------------------------------------------
Thu May 3 09:39:31 UTC 2018 - alarrosa@suse.com
- Use %license for the LICENSE file
-------------------------------------------------------------------
Tue Sep 5 16:45:29 UTC 2017 - alarrosa@suse.com
- Initial release of python-PyRIC 0.1.6.3

58
python-PyRIC.spec Normal file
View File

@@ -0,0 +1,58 @@
#
# spec file for package python-PyRIC
#
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-PyRIC
Version: 0.1.6.3
Release: 0
Summary: Python Wireless Library
License: GPL-3.0-only
Group: Development/Languages/Python
Url: http://wraith-wireless.github.io/PyRIC/
Source: https://files.pythonhosted.org/packages/source/P/PyRIC/PyRIC-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
PyRIC is a (Linux-only) library providing wireless developers and pentesters the
ability to identify, enumerate and manipulate their system's wireless cards
programmatically in Python.
%prep
%setup -q -n PyRIC-%{version}
find . -exec grep "^\#\!/usr/bin/env python" "{}" \; -print -exec sed -i -e '1{\,^#!/usr/bin/env python,d}' "{}" \;
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%defattr(-,root,root,-)
%doc CHANGES README.md
%license LICENSE
%{python_sitelib}/*
%changelog