14
0

Accepting request 105299 from home:dimstar:branches:GNOME:Apps

New package, dependency to gtg 0.2.9, which we're preparing in GNOME:Apps; Please forward to openSUSE:Factory

OBS-URL: https://build.opensuse.org/request/show/105299
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-liblarch?expand=0&rev=1
This commit is contained in:
Sascha Peilicke
2012-02-16 10:24:59 +00:00
committed by Git OBS Bridge
commit cdf29e04e5
5 changed files with 84 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
liblarch-0.1.0.tar.gz Normal file
View File

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

5
python-liblarch.changes Normal file
View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Wed Feb 15 19:34:52 UTC 2012 - dimstar@opensuse.org
- Initial package, version 0.1.0.

52
python-liblarch.spec Normal file
View File

@@ -0,0 +1,52 @@
#
# spec file for package
#
# Copyright (c) 2012 Dominique Leuenberger, Amsterdam, The Netherlands.
#
# 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: python-liblarch
%define _name liblarch
Version: 0.1.0
Release: 0
License: GPL-3.0+
Summary: A python library to easily handle data structure
Url: https://live.gnome.org/liblarch
Group: Development/Languages/Python
Source: http://gtg.fritalk.com/publique/gtg.fritalk.com/liblarch/0.1/%{_name}-%{version}.tar.gz
BuildRequires: python
Requires: python-gobject2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%py_requires
%description
Liblarch is a python library built to easily handle data structure such are lists, trees and acyclic graphs
(tree where nodes can have multiple parents)
%prep
%setup -q -n %{_name}-%{version}
%build
python setup.py build
%install
python setup.py install --root %{buildroot} --prefix %{_prefix}
%files
%defattr(-,root,root)
%doc README LICENSE
%{python_sitelib}/%{_name}-%{version}-*.egg-info
%{python_sitelib}/%{_name}/
%changelog