From 018c4be9db6dc6ee77661a1f825a4ab7a1af8d0eec7deea7e4c5b4b64f2e1538 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 4 Jul 2016 08:27:51 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 ++++++++++++++++ .gitignore | 1 + GooCalendar-0.2.tar.gz | 3 ++ _service | 3 ++ python-GooCalendar.changes | 18 ++++++++++++ python-GooCalendar.spec | 56 ++++++++++++++++++++++++++++++++++++++ 6 files changed, 104 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 GooCalendar-0.2.tar.gz create mode 100644 _service create mode 100644 python-GooCalendar.changes create mode 100644 python-GooCalendar.spec 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/GooCalendar-0.2.tar.gz b/GooCalendar-0.2.tar.gz new file mode 100644 index 0000000..6edfa0c --- /dev/null +++ b/GooCalendar-0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59d74c87a2ca1ac61b942cc2d96855708a4eac6dece31a89b2e3eaed8792fb7 +size 28308 diff --git a/_service b/_service new file mode 100644 index 0000000..5ad3ad3 --- /dev/null +++ b/_service @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/python-GooCalendar.changes b/python-GooCalendar.changes new file mode 100644 index 0000000..9ef650a --- /dev/null +++ b/python-GooCalendar.changes @@ -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 + diff --git a/python-GooCalendar.spec b/python-GooCalendar.spec new file mode 100644 index 0000000..d765664 --- /dev/null +++ b/python-GooCalendar.spec @@ -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