commit 67b650fec285bab1d8c1f31aa23dc7670992d3b52766a9959b0a893cf9e114f9 Author: Denisart Benjamin Date: Fri Apr 10 04:01:43 2015 +0000 Accepting request 295061 from home:termim:branches:devel:languages:python required for Sphinx-1.3 OBS-URL: https://build.opensuse.org/request/show/295061 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-alabaster?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/alabaster-0.7.3.tar.gz b/alabaster-0.7.3.tar.gz new file mode 100644 index 0000000..ca82c8d --- /dev/null +++ b/alabaster-0.7.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0703c1ea5a6af0bb6d0cec24708301334949d56ebc7f95c64028d9c66f9d8d5d +size 15135 diff --git a/python-alabaster.changes b/python-alabaster.changes new file mode 100644 index 0000000..d6bd40c --- /dev/null +++ b/python-alabaster.changes @@ -0,0 +1,18 @@ +------------------------------------------------------------------- +Thu Apr 9 01:54:05 UTC 2015 - termim@gmail.com + +- copied from python3-alabaster + * add fdupes check + +------------------------------------------------------------------- +Sat Mar 21 20:35:03 UTC 2015 - arun@gmx.de + +- update to version 0.7.3: + * Hide shadow related styles on bibliography elements, in addition + to the earlier change re: border. Thanks again to Philippe Dessus. + +------------------------------------------------------------------- +Sat Mar 14 00:20:15 UTC 2015 - arun@gmx.de + +- initial version + diff --git a/python-alabaster.spec b/python-alabaster.spec new file mode 100644 index 0000000..355aa5d --- /dev/null +++ b/python-alabaster.spec @@ -0,0 +1,55 @@ +# +# spec file for package python3-alabaster +# +# Copyright (c) 2015 SUSE LINUX Products 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/ +# + + +Name: python-alabaster +Version: 0.7.3 +Release: 0 +Summary: Modified Kr Sphinx doc theme +License: MIT +Group: Development/Languages/Python +Url: https://github.com/bitprophet/alabaster +Source: https://pypi.python.org/packages/source/a/alabaster/alabaster-%{version}.tar.gz +BuildRequires: python-devel +BuildRequires: python-setuptools +BuildRequires: fdupes +Requires: python-Sphinx +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch + +%description +This theme is a modified "Kr" Sphinx theme from @kennethreitz +(especially as used in his Requests project), which was itself +originally based on @mitsuhiko's theme used for Flask & related +projects. + +%prep +%setup -q -n alabaster-%{version} + +%build +python setup.py build + +%install +python setup.py install --prefix=%{_prefix} --optimize=2 --root=%{buildroot} +%fdupes $RPM_BUILD_ROOT%{py_sitedir} + +%files +%defattr(-,root,root,-) +%{python_sitelib}/* +%doc README.rst LICENSE + +%changelog