15
0

Accepting request 406261 from home:DocB:branches:devel:languages:python

fixed package name - please delete python goocalendar in d:l:p

OBS-URL: https://build.opensuse.org/request/show/406261
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-GooCalendar?expand=0&rev=1
This commit is contained in:
2016-07-04 08:27:51 +00:00
committed by Git OBS Bridge
commit 018c4be9db
6 changed files with 104 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
GooCalendar-0.2.tar.gz Normal file
View File

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

3
_service Normal file
View File

@@ -0,0 +1,3 @@
<services>
<service name="download_files" mode="localonly" /></services>

View File

@@ -0,0 +1,18 @@
-------------------------------------------------------------------
Fri Jul 1 09:21:25 UTC 2016 - axel.braun@gmx.de
- version 0.2
changed download link to pypi.io
correct license string
added License and copyright info to package
-------------------------------------------------------------------
Mon Jul 13 13:12:38 UTC 2015 - toddrme2178@gmail.com
- Fix building on SLES 11
-------------------------------------------------------------------
Sat Jan 11 05:08:28 UTC 2014 - axel.braun@gmx.de
- Initial Build on OBS

56
python-GooCalendar.spec Normal file
View File

@@ -0,0 +1,56 @@
#
# spec file for package python-GooCalendar
#
# Copyright (c) 2016 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/
#
#
%define mod_name GooCalendar
Name: python-GooCalendar
BuildRequires: python-devel
BuildRequires: python-genshi
BuildRequires: python-lxml
BuildRequires: python-setuptools
Version: 0.2
Release: 0
Source: https://files.pythonhosted.org/packages/c7/ab/c0324cf80dbbbab369300a92ffec059a2f11b7df90caf9dcb1af7db3af08/%{mod_name}-%{version}.tar.gz
Url: https://pypi.io/project/GooCalendar/
Summary: A calendar widget for GTK using PyGoocanvas
License: GPL-2.0
Group: Development/Languages/Python
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} > 1110
BuildArch: noarch
%endif
%description
A calendar widget for GTK using PyGoocanvas
%prep
%setup -q -n %{mod_name}-%{version}
%build
python setup.py build
%install
python setup.py install --prefix=%_prefix --root=%buildroot
%files
%defattr(-,root,root)
%doc README COPYRIGHT LICENSE
%{python_sitelib}/*
%changelog