Accepting request 588582 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/588582
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pybeam?expand=0&rev=10
This commit is contained in:
Dominique Leuenberger 2018-03-26 09:56:12 +00:00 committed by Git OBS Bridge
commit d851464357
5 changed files with 38 additions and 5 deletions

22
LICENSE Normal file
View File

@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2013 Matwey V. Kornilov <matwey.kornilov@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

3
pybeam-0.4.1.tar.gz Normal file
View File

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

View File

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

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Mar 19 11:25:48 UTC 2018 - matwey.kornilov@gmail.com
- Version 0.4.1:
- Add support for AtU8 chuck (fix Erlang 20.0 beam file format)
-------------------------------------------------------------------
Thu Aug 24 13:50:13 UTC 2017 - jmatejek@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package python-pybeam
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# 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
@ -18,16 +18,19 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pybeam
Version: 0.4
Version: 0.4.1
Release: 0
Summary: Python module to parse Erlang BEAM files
License: MIT
Group: Development/Languages/Python
Url: http://github.com/matwey/pybeam
Source: https://files.pythonhosted.org/packages/source/p/pybeam/pybeam-%{version}.tar.gz
Source1: LICENSE
BuildRequires: %{python_module construct < 2.9}
BuildRequires: %{python_module construct >= 2.8}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: python-rpm-macros
Requires: python-construct
Requires: python-six >= 1.4.0
@ -42,6 +45,7 @@ chunks in pretty python format.
%prep
%setup -q -n pybeam-%{version}
cp %{S:1} .
%build
%python_build
@ -51,6 +55,7 @@ chunks in pretty python format.
%files %{python_files}
%defattr(-,root,root,-)
%doc LICENSE
%{python_sitelib}/*
%changelog