Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
36ec772175 |
4 changed files with 3 additions and 128 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +0,0 @@
|
|||
/yumdaemon-0.9.2.tar.gz
|
||||
3
dead.package
Normal file
3
dead.package
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
2017-05-10: Retired orphaned package, because it was orphaned for
|
||||
more than six weeks.
|
||||
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
501bb59a1e73de7910db57477dec98e5 yumdaemon-0.9.2.tar.gz
|
||||
126
yumdaemon.spec
126
yumdaemon.spec
|
|
@ -1,126 +0,0 @@
|
|||
Name: yumdaemon
|
||||
Version: 0.9.2
|
||||
Release: 13%{?dist}
|
||||
Summary: DBus daemon for yum package actions
|
||||
|
||||
License: GPLv2+
|
||||
URL: https://github.com/timlau/yum-daemon
|
||||
Source0: https://fedorahosted.org/releases/y/u/yumex/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python2-devel
|
||||
Requires: dbus-python
|
||||
Requires: yum >= 3.4.0
|
||||
Requires: polkit
|
||||
|
||||
Requires(post): policycoreutils-python
|
||||
Requires(postun): policycoreutils-python
|
||||
|
||||
%description
|
||||
Dbus daemon for yum package actions
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
# Nothing to build
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT DATADIR=%{_datadir} SYSCONFDIR=%{_sysconfdir}
|
||||
|
||||
%package -n python3-%{name}
|
||||
Summary: Python 3 api for communicating with the yum-daemon DBus service
|
||||
Group: Applications/System
|
||||
BuildRequires: python3-devel
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: python3-gobject
|
||||
|
||||
%description -n python3-%{name}
|
||||
Python 3 api for communicating with the yum-daemon DBus service
|
||||
|
||||
|
||||
%files -n python3-%{name}
|
||||
%{python3_sitelib}/%{name}/
|
||||
|
||||
%package -n python-%{name}
|
||||
Summary: Python 2 api for communicating with the yum-daemon DBus service
|
||||
Group: Applications/System
|
||||
BuildRequires: python2-devel
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: pygobject3
|
||||
|
||||
%description -n python-%{name}
|
||||
Python 2 api for communicating with the yum-daemon DBus service
|
||||
|
||||
|
||||
%files -n python-%{name}
|
||||
%{python_sitelib}/%{name}/
|
||||
|
||||
# apply the right selinux file context
|
||||
# http://fedoraproject.org/wiki/PackagingDrafts/SELinux#File_contexts
|
||||
|
||||
%post
|
||||
semanage fcontext -a -t rpm_exec_t '%{_datadir}/%{name}/%{name}-system' 2>/dev/null || :
|
||||
restorecon -R %{_datadir}/%{name}/%{name}-system || :
|
||||
|
||||
%postun
|
||||
if [ $1 -eq 0 ] ; then # final removal
|
||||
semanage fcontext -d -t rpm_exec_t '%{_datadir}/%{name}/%{name}-system' 2>/dev/null || :
|
||||
fi
|
||||
|
||||
%files
|
||||
%doc README.md examples/ ChangeLog COPYING
|
||||
%{_datadir}/dbus-1/system-services/*
|
||||
%{_datadir}/dbus-1/services/*
|
||||
%{_datadir}/%{name}/
|
||||
%{_datadir}/polkit-1/actions/*
|
||||
# this should not be edited by the user, so no %%config
|
||||
%{_sysconfdir}/dbus-1/system.d/*
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Dec 22 2016 Miro Hrončok <mhroncok@redhat.com> - 0.9.2-12
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-11
|
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 0.9.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
||||
|
||||
* Wed Oct 23 2013 Tim Lauridsen <timlau@fedoraproject.org> 0.9.2-5
|
||||
- removed %%config from %%{_sysconfdir}/dbus-1/system.d/*
|
||||
|
||||
* Wed Oct 23 2013 Tim Lauridsen <timlau@fedoraproject.org> 0.9.2-4
|
||||
- dont own %%{_datadir}/polkit-1/actions/ dir
|
||||
|
||||
* Wed Oct 23 2013 Tim Lauridsen <timlau@fedoraproject.org> 0.9.2-3
|
||||
- added DATADIR=%%{_datadir} SYSCONFDIR=%%{_sysconfdir} to make install
|
||||
|
||||
* Wed Oct 23 2013 Tim Lauridsen <timlau@fedoraproject.org> 0.9.2-2
|
||||
- converted tab to spaces
|
||||
|
||||
* Wed Oct 23 2013 Tim Lauridsen <timlau@fedoraproject.org> 0.9.2-1
|
||||
- bumped release to 0.9.2
|
||||
|
||||
* Mon Nov 5 2012 Tim Lauridsen <timlau@fedoraproject.org> 0.9.1-1
|
||||
- both python2 & python3 uses same sources
|
||||
|
||||
* Sat May 26 2012 Tim Lauridsen <timlau@fedoraproject.org> 0.9.0-1
|
||||
- Initial rpm for yum-daemon
|
||||
Loading…
Add table
Add a link
Reference in a new issue