commit cdf29e04e5a5cfa2704961fdcf15c896bcac0d8a08f056bf2370f004a941fc4f Author: Sascha Peilicke Date: Thu Feb 16 10:24:59 2012 +0000 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 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/liblarch-0.1.0.tar.gz b/liblarch-0.1.0.tar.gz new file mode 100644 index 0000000..6c698f1 --- /dev/null +++ b/liblarch-0.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43fcf260fe74c52c30f197b229254bbd95c101eedcc04ec17976212436a2fdc2 +size 19129 diff --git a/python-liblarch.changes b/python-liblarch.changes new file mode 100644 index 0000000..5abf91e --- /dev/null +++ b/python-liblarch.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Wed Feb 15 19:34:52 UTC 2012 - dimstar@opensuse.org + +- Initial package, version 0.1.0. + diff --git a/python-liblarch.spec b/python-liblarch.spec new file mode 100644 index 0000000..1cfedaf --- /dev/null +++ b/python-liblarch.spec @@ -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