Compare commits
No commits in common. "rawhide" and "f26" have entirely different histories.
4 changed files with 192 additions and 1 deletions
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
x-tile-1.5.2.tar.gz
|
||||
/x-tile-1.8.2.tar.gz
|
||||
/x-tile-1.8.3.tar.gz
|
||||
/x-tile-1.8.4.tar.gz
|
||||
/x-tile-1.8.5.tar.gz
|
||||
/x-tile-1.8.6.tar.gz
|
||||
/x-tile-1.9.tar.gz
|
||||
/x-tile-2.0.tar.gz
|
||||
/x-tile-2.1.tar.gz
|
||||
/x-tile-2.2.tar.gz
|
||||
/x-tile-2.2.1.tar.gz
|
||||
/x-tile-2.3.1.tar.bz2
|
||||
/x-tile-2.4.tar.bz2
|
||||
/x-tile-2.5.tar.xz
|
||||
|
|
@ -1 +0,0 @@
|
|||
No longer maintained by upstream
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
580ad2acde9a528db95ce5bdab7ed3ef x-tile-2.5.tar.xz
|
||||
177
x-tile.spec
Normal file
177
x-tile.spec
Normal file
|
|
@ -0,0 +1,177 @@
|
|||
Name: x-tile
|
||||
Version: 2.5
|
||||
Release: 7%{?dist}
|
||||
Summary: A GTK application to tile windows in different ways
|
||||
|
||||
Group: User Interface/Desktops
|
||||
License: GPLv2+
|
||||
URL: http://www.giuspen.com/x-tile/
|
||||
Source0: http://www.giuspen.com/software/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: gettext
|
||||
BuildRequires: python-setuptools
|
||||
Requires: gnome-python2-gconf
|
||||
Requires: pygtk2
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
X-tile is a GTK application that allows you to select a number of windows and
|
||||
tile them in different ways. This is especially useful for comparing products in
|
||||
separate web pages, or for programmers referring to documentation as they are
|
||||
programming.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
# Remove import of cons module in setup.py, only needed to get the current
|
||||
# version of x-tile. The cons module calls the gtk one, which needs a running
|
||||
# graphical session
|
||||
sed -i "\|import cons|d; s|cons.VERSION|\"%{version}\"|" setup.py
|
||||
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
|
||||
%install
|
||||
%{__python} setup.py install \
|
||||
--no-compile \
|
||||
--root $RPM_BUILD_ROOT
|
||||
|
||||
rm $RPM_BUILD_ROOT%{_datadir}/%{name}/glade/x-tile.glade.h
|
||||
|
||||
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
|
||||
%post
|
||||
/bin/touch --no-create %{_datadir}/icons/hicolor/ &>/dev/null || :
|
||||
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then
|
||||
/bin/touch --no-create %{_datadir}/icons/hicolor/ &>/dev/null
|
||||
/usr/bin/gtk-update-icon-cache -f %{_datadir}/icons/hicolor/ &>/dev/null || :
|
||||
fi
|
||||
|
||||
|
||||
%posttrans
|
||||
/usr/bin/gtk-update-icon-cache -f %{_datadir}/icons/hicolor/ &>/dev/null || :
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc license
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/icons/hicolor/*/apps/%{name}.svg
|
||||
%{python_sitelib}/*.egg-info
|
||||
%{_mandir}/man1/%{name}.1.*
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Thu Sep 20 2012 Mohamed El Morabity <melmorabity@fedorapeople.org> - 2.5-1
|
||||
- Update to 2.5
|
||||
|
||||
* Wed Jul 18 2012 Mohamed El Morabity <melmorabity@fedoraproject.org> - 2.4-1
|
||||
- Update to 2.4
|
||||
|
||||
* Sat Jul 14 2012 Mohamed El Morabity <melmorabity@fedoraproject.org> - 2.3.1-1
|
||||
- Update to 2.3.1
|
||||
- Remove useless Provides/Obsoletes
|
||||
|
||||
* Mon Feb 20 2012 Mohamed El Morabity <melmorabity@fedoraproject.org> - 2.2.1-1
|
||||
- Update to 2.2.1
|
||||
|
||||
* Tue Jan 03 2012 Mohamed El Morabity <melmorabity@fedoraproject.org> - 2.2-1
|
||||
- Update to 2.2
|
||||
|
||||
* Tue Jul 19 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 2.1-1
|
||||
- Update to 2.1
|
||||
|
||||
* Sun Jul 10 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 2.0-1
|
||||
- Update to 2.0
|
||||
- There is now a single version of x-tile (no more "ng" version), since x-tile
|
||||
sets now an icon in the notification zone
|
||||
|
||||
* Sun Jun 26 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.9-1
|
||||
- Update to 1.9
|
||||
- Only provide the "no applet" version of x-tile since the applet is no loger
|
||||
supported by GNOME 3
|
||||
- merge all former subpackages into a single one
|
||||
|
||||
* Thu Mar 17 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.8.6-1
|
||||
- Update to 1.8.6
|
||||
|
||||
* Thu Mar 10 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.8.5-1
|
||||
- Update to 1.8.5
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Dec 08 2010 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.8.4-1
|
||||
- Update to 1.8.4
|
||||
- Split x-tile into three packages: x-tile-common, x-tile (GNOME application)
|
||||
and x-tile-ng (desktop-independant application)
|
||||
|
||||
* Mon Nov 22 2010 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.8.3-1
|
||||
- Update to 1.8.3
|
||||
|
||||
* Tue Nov 09 2010 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.8.2-2
|
||||
- Add missing BuildRequires python2
|
||||
|
||||
* Tue Nov 09 2010 Mohamed El Morabity <melmorabity@fedoraproject.org> - 1.8.2-1
|
||||
- Update to 1.8.2 (no more manual installation, setup.py provided by this
|
||||
version)
|
||||
|
||||
* Thu Jun 3 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.5.2-1
|
||||
- Update to 1.5.2
|
||||
|
||||
* Wed Jun 2 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.5-2
|
||||
- Bump release
|
||||
|
||||
* Wed Jun 2 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.5-1
|
||||
- Update to 1.5
|
||||
- Drop x-tile-1.4-desktop.patch patch
|
||||
|
||||
* Fri May 14 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.4-3
|
||||
- Remove useless Requires python-psutil
|
||||
- Correct Icon entry in desktop file
|
||||
|
||||
* Sat Apr 24 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.4-2
|
||||
- Use install instead of cp
|
||||
|
||||
* Mon Apr 12 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.4-1
|
||||
- Update to 1.4
|
||||
|
||||
* Sun Mar 7 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.3.2-1
|
||||
- Update to 1.3.2
|
||||
|
||||
* Mon Feb 22 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.3.1-1
|
||||
- Update to 1.3.1
|
||||
- Correct mispelling in %%description
|
||||
- Update .spec from new Python guidelines
|
||||
|
||||
* Tue Jan 12 2010 ELMORABITY Mohamed <melmorabity@fedoraproject.org> 1.3-1
|
||||
- Initial RPM release
|
||||
Loading…
Add table
Add a link
Reference in a new issue