Compare commits

...
This repository has been archived on 2026-09-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.

16 commits

Author SHA1 Message Date
Till Maas
6902ec1e27 2017-02-17: Retired orphaned package, because it was orphaned for
more than six weeks.
2017-02-17 19:51:07 +01:00
Fedora Release Engineering
89174da739 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild 2017-02-11 18:21:47 +00:00
Fedora Release Engineering
c322854645 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages 2016-07-19 13:15:20 +00:00
Fedora Release Engineering
249207b37a - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild 2016-02-05 04:03:25 +00:00
Dennis Gilmore
e685d9ed30 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild 2015-06-19 04:43:33 +00:00
Toshio Kuratomi
81575f756e Replace python-setuptools-devel BR with python-setuptools 2014-06-30 18:26:58 -07:00
Dennis Gilmore
1d4260110d - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-07 13:01:29 -05:00
Dennis Gilmore
c987448781 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild 2013-08-04 04:43:52 -05:00
Dennis Gilmore
a341005095 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild 2013-02-14 22:16:50 -06:00
Dennis Gilmore
9b3ab27972 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-22 02:59:10 -05:00
Dennis Gilmore
c2fdb0d6a1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild 2012-01-14 03:33:43 -06:00
Dennis Gilmore
229896f6b7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-08 02:29:04 -06:00
Fedora Release Engineering
46534229ee dist-git conversion 2010-07-29 16:27:38 +00:00
0d3806d945 - Rebuilt for
https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2010-07-22 07:23:04 +00:00
Bill Nottingham
4fd2b7f917 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:39:17 +00:00
Jesse Keating
da56d3d7fd - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 08:59:05 +00:00
7 changed files with 3 additions and 82 deletions

View file

@ -1 +0,0 @@
zapplet-0.1.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: zapplet
# $Id$
NAME := zapplet
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -1,2 +0,0 @@
To have Zapplet start on login use the following command as root:
'cp /usr/share/applications/zapplet.desktop /etc/xdg/autostart/zapplet.desktop'

3
dead.package Normal file
View file

@ -0,0 +1,3 @@
2017-02-17: Retired orphaned package, because it was orphaned for
more than six weeks.

View file

@ -1,2 +0,0 @@
zapplet-0_1-3:HEAD:zapplet-0.1-3.src.rpm:1232129636
zapplet-0_1-4_fc10:HEAD:zapplet-0.1-4.fc10.src.rpm:1232367927

View file

@ -1 +0,0 @@
d12db237f805d6711d8d720080e06eaa zapplet-0.1.tar.gz

View file

@ -1,55 +0,0 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: zapplet
Version: 0.1
Release: 5%{dist}
Summary: Zenoss Tray Applet
Group: Applications/Communications
License: GPLv2+
URL: http://zapplet.sourceforge.net
Source0: http://downloads.sourceforge.net/zapplet/zapplet-%{version}.tar.gz
Source1: http://ke4qqq.fedorapeople.org/zapplet/README.fedora
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: python
BuildRequires: python-setuptools-devel
BuildRequires: desktop-file-utils
Requires: pygtk2
BuildArch: noarch
%description
Zapplet is a tray applet for monitoring aspects of Zenoss from the desktop.
%prep
%setup -q -n zapplet-%{version}
cp %{SOURCE1} ./README.fedora
%build
CFLAGS="%{optflags}" %{__python} setup.py build
%install
rm -rf %{buildroot}
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
desktop-file-install --add-category="Network" --dir=%{buildroot}%{_datadir}/applications zapplet.desktop
rm -rf %{buildroot}%{_sysconfdir}/xdg/autostart/zapplet.desktop
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%{python_sitelib}/*
%{_bindir}/%{name}
%{_datadir}/applications/zapplet.desktop
%doc README.fedora
%changelog
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Mon Jan 19 2009 David Nalley <david@gnsa.us> 0.1-4
- Made changes suggested by ianweller to fix cvs issues
* Sun Dec 28 2008 David Nalley <david@gnsa.us> 0.1-3
- Made changes suggested by Brian Pepple
* Sat Dec 27 2008 David Nalley <david@gnsa.us> 0.1-2
- Making corrections suggested by Fabian Affolter
* Sun Dec 14 2008 David Nalley <david@gnsa.us> 0.1-1
- Initial packaging efforts