From 41929fc3236b9c7076a0341e8de04bbc12821cba Mon Sep 17 00:00:00 2001 From: nalin Date: Apr 09 2007 21:13:25 +0000 Subject: - 0.28-1 --- diff --git a/AUTHOR b/AUTHOR new file mode 100644 index 0000000..087a9ef --- /dev/null +++ b/AUTHOR @@ -0,0 +1 @@ +Nalin Dahyabhai diff --git a/configure.ac b/configure.ac index 71a2eb9..986dc8e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(oddjob,0.27) +AC_INIT(oddjob,0.28) AC_PREREQ(2.59) PACKAGE_NAME_CAPS=`echo $PACKAGE_NAME | tr '[a-z]' '[A-Z]'` AC_DEFINE_UNQUOTED(PACKAGE_NAME_CAPS,"$PACKAGE_NAME_CAPS",[Define to the package name, in caps.]) diff --git a/oddjob.spec b/oddjob.spec index a230ca6..840dcef 100644 --- a/oddjob.spec +++ b/oddjob.spec @@ -1,8 +1,8 @@ %define build_sample 0 Name: oddjob -Version: 0.27 -Release: 7 +Version: 0.28 +Release: 1 Source: http://people.redhat.com/nalin/oddjob/oddjob-%{version}-1.tar.gz Summary: A D-BUS service which runs odd jobs on behalf of client applications License: BSD @@ -16,7 +16,6 @@ Requires(post): /sbin/service Requires(post): /sbin/chkconfig Requires(pre): /sbin/chkconfig URL: http://people.redhat.com/nalin/oddjob/ -Requires: %{name}-libs = %{version}-%{release} %description oddjob is a D-BUS service which performs particular tasks for clients which @@ -25,7 +24,7 @@ connect to it and issue requests using the system-wide message bus. %package devel Group: Development/Libraries Summary: Files for developing oddjob clients -Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} Requires: pkgconfig %description devel @@ -42,6 +41,16 @@ Requires: %{name} = %{version}-%{release} This package contains dynamic libraries which are used by simple oddjob client applications. +%package python +Group: System Environment/Libraries +Summary: A Python binding for oddjob clients +Requires: %{name}-libs = %{version}-%{release} + +%description python +This package contains a python module which allows client applications +written in the Python language to issue requests to the oddjobd server +using the message bus. + %package sample Group: System Environment/Daemons Summary: A sample oddjob service. @@ -114,10 +123,13 @@ install -m755 sample/oddjob-sample.sh sample-install-root/sample/%{_libdir}/% %files libs %defattr(-,root,root) %{_libdir}/liboddjob.so.* -%{_libdir}/python*/site-packages/* /%{_lib}/security/*.so %{_mandir}/*/pam_*.* +%files python +%defattr(-,root,root) +%{_libdir}/python*/site-packages/* + %files devel %defattr(-,root,root) %{_includedir}/* @@ -145,6 +157,10 @@ fi %postun libs -p /sbin/ldconfig %changelog +* Mon Apr 9 2007 Nalin Dahyabhai 0.28-1 +- split off python subpackage, make -devel depend on -libs, let autodeps + provide the main package's dependency on -libs (#228377) + * Thu Feb 15 2007 Nalin Dahyabhai 0.27-8 - configure with --disable-dependency-tracking (Ville Skyttä, #228928)