1 |
Name: tyrs |
2 |
Version: 0.5.0 |
3 |
Release: %mkrel 1 |
4 |
Source0: http://pypi.python.org/packages/source/t/tyrs/tyrs-%{version}.tar.gz |
5 |
Summary: ncurses microblogging client |
6 |
URL: http://tyrs.nicosphere.net/ |
7 |
License: GPLv3 |
8 |
Group: Networking/Other |
9 |
BuildRequires: python-setuptools python-distutils-extra |
10 |
BuildArch: noarch |
11 |
|
12 |
%description |
13 |
Tyrs is a ncurses microblogging client. A list of some of the key |
14 |
features: |
15 |
- Supports Identi.ca and Twitter services |
16 |
- OAuth authentication. |
17 |
- UTF-8 support. |
18 |
- Tweets, Retweets, Follow, Unfollow. |
19 |
- Mentions, Replies |
20 |
- Threaded view of replies |
21 |
- Search |
22 |
- Direct messages |
23 |
- Transparency and colors. |
24 |
- Based on ncurses. |
25 |
- Customization of keys binding. |
26 |
- Customization of colors. |
27 |
- Easily configurable, readable configuration. |
28 |
- Opens URL with just single key. |
29 |
- ur1.ca and bit.ly support for url shorter. |
30 |
|
31 |
%prep |
32 |
%setup -q |
33 |
|
34 |
%build |
35 |
%__python setup.py build |
36 |
|
37 |
%install |
38 |
rm -Rf %{buildroot} |
39 |
%__python setup.py install --skip-build --root %{buildroot} |
40 |
|
41 |
%clean |
42 |
rm -Rf %{buildroot} |
43 |
|
44 |
%files |
45 |
%defattr(-,root,root) |
46 |
%doc PKG-INFO README.md doc |
47 |
%{_bindir}/%{name} |
48 |
%{python_sitelib}/src |
49 |
%{python_sitelib}/%{name}*.egg-info |