Compare commits
36 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e4b7dd4dc6 | ||
|
|
15654a643f | ||
| a5bbfbf55f | |||
|
|
426abd0968 | ||
|
|
83aa7abf62 | ||
|
|
81c57a21a1 | ||
|
|
da5cfd9a9b | ||
|
|
5a958ac528 | ||
|
|
2d93d207a0 | ||
|
|
ce57551e09 | ||
|
|
9c594d9649 | ||
|
|
4debd4284f | ||
|
|
fbff5c2dd5 | ||
|
|
a8da1a21c8 | ||
|
|
14509a2106 | ||
|
|
491efc4fc6 | ||
|
|
904f2f4e46 | ||
|
|
16a2005fca | ||
|
|
1e7c37f47b | ||
|
|
72c0ac8308 | ||
|
|
cdfce81f50 | ||
|
|
4ce8d02b9f | ||
|
|
2bb65b8b15 | ||
|
|
358b6818d6 | ||
|
|
9ce5bd2755 | ||
|
|
fec1861cf7 | ||
|
|
79f14bfddc | ||
|
|
7d6ae70d94 | ||
|
|
8c43a2503a | ||
|
|
d9adc2969a | ||
|
|
952099ba1a | ||
|
|
11c44da373 | ||
|
|
80f69340c9 | ||
|
|
dc5c08d68f | ||
|
|
84c6ed9b23 | ||
|
|
9aa9e097a1 |
5 changed files with 1 additions and 121 deletions
|
|
@ -1 +0,0 @@
|
|||
yum-updatesd-0.9.tar.bz2
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: yum-updatesd
|
||||
# $Id$
|
||||
NAME := yum-updatesd
|
||||
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)
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Superseded by DNF. For details, see: https://fedoraproject.org/wiki/Changes/Retire_YUM_3
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
b03a3b3bf78a11fec240c82bf2f53b2b yum-updatesd-0.9.tar.bz2
|
||||
|
|
@ -1,98 +0,0 @@
|
|||
Summary: Update notification daemon
|
||||
Name: yum-updatesd
|
||||
Epoch: 1
|
||||
Version: 0.9
|
||||
Release: 2%{?dist}
|
||||
License: GPLv2
|
||||
Group: System Environment/Base
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
URL: http://linux.duke.edu/yum/
|
||||
BuildArch: noarch
|
||||
BuildRequires: python
|
||||
Requires: python >= 2.4
|
||||
Requires: yum >= 3.2.0
|
||||
Requires: dbus-python
|
||||
Requires: pygobject2
|
||||
Requires: gamin-python
|
||||
Requires(preun): /sbin/chkconfig
|
||||
Requires(post): /sbin/chkconfig
|
||||
Requires(preun): /sbin/service
|
||||
Requires(post): /sbin/service
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
%description
|
||||
yum-updatesd provides a daemon which checks for available updates and
|
||||
can notify you when they are available via email, syslog or dbus.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
make
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make DESTDIR=$RPM_BUILD_ROOT install
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post
|
||||
/sbin/chkconfig --add yum-updatesd
|
||||
/sbin/service yum-updatesd condrestart >/dev/null 2>&1
|
||||
exit 0
|
||||
|
||||
%preun
|
||||
if [ $1 = 0 ]; then
|
||||
/sbin/chkconfig --del yum-updatesd
|
||||
/sbin/service yum-updatesd stop >/dev/null 2>&1
|
||||
fi
|
||||
exit 0
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING
|
||||
%{_sysconfdir}/rc.d/init.d/yum-updatesd
|
||||
%config(noreplace) %{_sysconfdir}/yum/yum-updatesd.conf
|
||||
%config %{_sysconfdir}/dbus-1/system.d/yum-updatesd.conf
|
||||
%{_sbindir}/yum-updatesd
|
||||
%{_libexecdir}/yum-updatesd-helper
|
||||
%{_mandir}/man*/yum-updatesd*
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Mon Dec 17 2007 Jeremy Katz <katzj@redhat.com> - 1:0.9-1
|
||||
- More mail fixes (Pierre Ossman)
|
||||
|
||||
* Wed Dec 5 2007 Jeremy Katz <katzj@redhat.com> - 1:0.8-1
|
||||
- Use sendmail (Pierre Ossman, #397711)
|
||||
- Don't wake up as often (#391571)
|
||||
- Improve mail output (Pierre Ossman, #387181)
|
||||
- Fix some tracebacks (#387051, #374801)
|
||||
|
||||
* Fri Oct 12 2007 Jeremy Katz <katzj@redhat.com> - 1:0.7-1
|
||||
- fix error when download is set, but no packages are available (#329361)
|
||||
|
||||
* Wed Oct 10 2007 Jeremy Katz <katzj@redhat.com> - 1:0.6-1
|
||||
- add lsb initscript header (#247106)
|
||||
- overly simplistic service start speed-up
|
||||
|
||||
* Wed Sep 5 2007 Jeremy Katz <katzj@redhat.com> - 1:0.5-1
|
||||
- add option for configurable SMTP server
|
||||
- fix email sending (Rich Fearn, #251196)
|
||||
- make updates checking in the presence of NetworkManager smarter (#213732)
|
||||
- ensure group info gets updated
|
||||
- work with yum 3.0.x (jantill)
|
||||
- don't poll gamin
|
||||
|
||||
* Tue Jul 24 2007 Jeremy Katz <katzj@redhat.com> - 1:0.4-1
|
||||
- minor review fixes. add --oneshot mode
|
||||
|
||||
* Mon Jul 23 2007 Jeremy Katz <katzj@redhat.com> - 1:0.3-1
|
||||
- update to new version
|
||||
|
||||
* Thu Jul 19 2007 Jeremy Katz <katzj@redhat.com> - 1:0.1-1
|
||||
- new package for standalone yum-updatesd
|
||||
Reference in a new issue