File python-twisted-conch.spec of Package python-twisted-conch
#
# spec file for package python-twisted-conch (Version 8.1.0)
#
# Copyright (c) 2008 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/
#
# norootforbuild
Name: python-twisted-conch
BuildRequires: python-devel python-twisted
Summary: Twisted Conch
Version: 8.1.0
Release: 1
%define tarname TwistedConch
Source: %{tarname}-%{version}.tar.bz2
License: X11/MIT
Group: Development/Languages/Python
Url: http://twistedmatrix.com/trac/wiki/TwistedConch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: python-twisted
%{py_requires}
%description
Conch is an SSHv2 implementation written in Python. SSH is a protocol
designed to allow remote access to shells and commands, but it is
generic enough to allow everything from TCP forwarding to generic
filesystem access. Since conch is written in Python, it interfaces well
with other Python projects, such as Imagination. Conch also includes a
implementations of the telnet and vt102 protocols, as well as support
for rudamentary line editing behaviors. A new implementation of
Twisted's Manhole application is also included, featuring server-side
input history and interactive syntax coloring.
Authors:
--------
twisted-python@twistedmatrix.com
%prep
%setup -n %{tarname}-%{version}
%build
export CFLAGS="$RPM_OPT_FLAGS"
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --record-rpm=INSTALLED_FILES --root="$RPM_BUILD_ROOT"
%clean
rm -rf "$RPM_BUILD_ROOT"
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc LICENSE README NEWS
%changelog
* Fri Sep 05 2008 matejcik@suse.cz
- update to 8.1.0
* minor bugfixes
* removed deprecated mktap API
* installed proper ConchError exception for certain cases
* Thu Apr 17 2008 matejcik@suse.cz
- update to 8.0.0
* new versioning scheme, see python-twisted for explanation
* many bugfixes
* added DEC private mode manipulation methods
* Thu Aug 02 2007 jmatejek@suse.cz
- update to 0.8.0
* support for python2.5
* manhole supports ctrl+L
* old twisted.cred api no longer supported
* Thu Oct 26 2006 jmatejek@suse.cz
- update to 0.7.0
- upgrade to Twisted 2.4 install system
- massive speedup
- support for expect() timing out
* Tue Feb 28 2006 jmatejek@suse.cz
- updated to reflect python changes due to #149809
* Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Thu Jan 05 2006 jmatejek@suse.cz
- update to 0.6.0
* Thu Apr 14 2005 mcihar@suse.cz
- new package (split Twisted according to upstream)