This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues/pull-requests.
khepri-tftpy/rpm/python-tftpy.spec

53 lines
1.2 KiB
Plaintext

Name: python-tftpy
Version: 0.5.1
Release: 01
Packager: Michael P. Soulier <michael_soulier@mitel.com>
Summary: A pure python TFTP library.
License: BSD
Group: Libraries/Net
URL: http://tftpy.sf.net/
Source0: tftpy-%{version}.tar.gz
BuildRequires: python-devel
Requires: python
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildArch: noarch
AutoReqProv: no
%define debug_package %{nil}
%define __os_install_post %{nil}
%description
This module is a pure Python implementation of the TFTP protocol, RFCs 1350,
2347, 2348 and the tsize option from 2349.
%changelog
* Tue Feb 15 2011 Michael P. Soulier <michael_soulier@mitel.com>
- [0.5.1-01]
- Initial rpm build.
%prep
%setup -q -n tftpy-%{version}
%build
%{__python} setup.py build
%install
rm -rf $RPM_BUILD_ROOT
%{__python} setup.py install \
--prefix=$RPM_BUILD_ROOT/usr \
--record=filelist-%{name}-%{version}-%{release}-temp
cat filelist-%{name}-%{version}-%{release}-temp | \
sed -e "s;^$RPM_BUILD_ROOT;;" \
> filelist-%{name}-%{version}-%{release}
%clean
rm -rf $RPM_BUILD_ROOT
%files -f filelist-%{name}-%{version}-%{release}
%defattr(-,root,root)
%doc COPYING
%doc README
%doc ChangeLog
%doc PKG-INFO