1
0
OBS User unknown 2007-01-15 23:34:01 +00:00 committed by Git OBS Bridge
commit 78d52d7c58
6 changed files with 88 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
httplib2-0.2.0.tar.gz Normal file
View File

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

5
python-httplib2.changes Normal file
View File

@ -0,0 +1,5 @@
-------------------------------------------------------------------
Sat Oct 21 22:37:29 CEST 2006 - dgollub@suse.de
- initial version of python-httplib2 (0.2.0)

56
python-httplib2.spec Normal file
View File

@ -0,0 +1,56 @@
#
# spec file for package python-httplib2 (Version 0.2.0)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: python-httplib2
BuildRequires: python-devel
Summary: A Python HTTP library
Version: 0.2.0
Release: 1
Source0: httplib2-%{version}.tar.gz
License: X11/MIT
Group: Development/Libraries/Python
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Prefix: %{_prefix}
URL: http://bitworking.org/projects/httplib2/
%py_requires
%description
A comprehensive python HTTP client library, which supports many
features left out of other HTTP libraries.
Authors:
--------
Joe Gregorio <joe@bitworking.org>
%prep
%setup -q -n httplib2-%{version}
%build
CFLAGS="$RPM_OPT_FLAGS" python setup.py build
%install
rm -rf $RPM_BUILD_ROOT
python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT --record-rpm=INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc PKG-INFO README
%changelog -n python-httplib2
* Sat Oct 21 2006 - dgollub@suse.de
- initial version of python-httplib2 (0.2.0)

0
ready Normal file
View File