OBS User unknown 2007-08-09 21:39:07 +00:00 committed by Git OBS Bridge
parent b64d357816
commit dda29191eb
4 changed files with 92 additions and 50 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Aug 6 17:03:54 CEST 2007 - bk@suse.de
- replace -p /usr/sbin/ldconfig with %{run_ldconfig}
-------------------------------------------------------------------
Mon Jul 30 08:54:27 CEST 2007 - aj@suse.de

View File

@ -16,11 +16,11 @@ Name: avahi-mono
# avahi.spec and then run pre_checkin.sh which will create
# avahi-mono.spec based upon avahi.spec.
Version: 0.6.20
Release: 19
Release: 22
URL: http://www.avahi.org/
Group: Development/Libraries/Other
License: LGPL v2 or later
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Mono Bindings for avahi, the D-BUS Service for Zeroconf and Bonjour
Source: avahi-%{version}.tar.bz2
Source1: gnome-nettool2.png
Source2: avahi-bookmarks.init
@ -51,19 +51,16 @@ Obsoletes: mDNSResponder <= 107.5
%endif
%description
Mono bindings for avahi.
Avahi is an Implementation the DNS Service Discovery and Multicast DNS
This package provides Mono bindings for avahi. Avahi is an
implementation of the DNS Service Discovery and MulticastDNS
specifications for Zeroconf Computing. It uses D-BUS for communication
between user applications and a system daemon. The daemon is used to
coordinate application efforts in caching replies, necessary to
minimize the traffic imposed on networks.
The Avahi mDNS responder is now feature complete implementing all MUSTs
and the majority of the SHOULDs of the mDNS/DNS-SD RFCs. It passes all
tests in the Apple Bonjour conformance test suite. In addition it
supports some nifty things that have never been seen elsewhere like
correct mDNS reflection accross LAN segments.
minimize the traffic imposed on networks. The Avahi mDNS responder is
now feature complete, implementing all MUSTs and the majority of the
SHOULDs of the mDNS and DNS-SD RFCs. It passes all tests in the Apple
Bonjour conformance test suite. In addition, it supports some nifty
things, like correct mDNS reflection across LAN segments.
@ -75,7 +72,7 @@ Authors:
%if !%build_mono
%package -n avahi-glib
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Glib Bindings for avahi, the D-BUS Service for Zeroconf and Bonjour
Requires: %{name} = %{version}
Autoreqprov: on
Group: Development/Libraries/Other
@ -133,7 +130,7 @@ Authors:
Sebastien Estienne <sebastien.estienne@gmail.com>
%package -n avahi-qt3
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Qt3 Bindings for avahi, the D-BUS Service for Zeroconf and Bonjour
Requires: %{name} = %{version}
Autoreqprov: on
Group: Development/Libraries/Other
@ -162,7 +159,7 @@ Authors:
Sebastien Estienne <sebastien.estienne@gmail.com>
%package -n avahi-qt4
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Qt4 Bindings for avahi, the D-BUS Service for Zeroconf and Bonjour
Requires: %{name} = %{version}
Autoreqprov: on
Group: Development/Libraries/Other
@ -317,7 +314,7 @@ Authors:
Sebastien Estienne <sebastien.estienne@gmail.com>
%package -n avahi-devel
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Include Files and Libraries Mandatory for Development
Requires: %{name} = %{version} dbus-1-devel glibc-devel glib2-devel gtk2-devel
# NOTE: Adding these will cause large dependencies, 2/3 of the are not
# needed in most cases. Most users of bindings will already require is
@ -466,33 +463,44 @@ rm -rf $RPM_BUILD_ROOT
%{stop_on_removal avahi-daemon}
%{stop_on_removal avahi-dnsconfd}
%post -p /sbin/ldconfig
%post
/sbin/ldconfig
%postun
%{restart_on_update avahi-daemon}
%{restart_on_update avahi-dnsconfd}
%{run_ldconfig}
/sbin/ldconfig
%insserv_cleanup
%post -n avahi-qt3 -p /sbin/ldconfig
%post -n avahi-qt3
/sbin/ldconfig
%postun -n avahi-qt3 -p /sbin/ldconfig
%postun -n avahi-qt3
/sbin/ldconfig
%post -n avahi-qt4 -p /sbin/ldconfig
%post -n avahi-qt4
/sbin/ldconfig
%postun -n avahi-qt4 -p /sbin/ldconfig
%postun -n avahi-qt4
/sbin/ldconfig
%post -n avahi-glib -p /sbin/ldconfig
%post -n avahi-glib
/sbin/ldconfig
%postun -n avahi-glib -p /sbin/ldconfig
%postun -n avahi-glib
/sbin/ldconfig
%post -n avahi-compat-mDNSResponder -p /sbin/ldconfig
%post -n avahi-compat-mDNSResponder
/sbin/ldconfig
%postun -n avahi-compat-mDNSResponder -p /sbin/ldconfig
%postun -n avahi-compat-mDNSResponder
/sbin/ldconfig
%post -n avahi-compat-howl -p /sbin/ldconfig
%post -n avahi-compat-howl
/sbin/ldconfig
%postun -n avahi-compat-howl -p /sbin/ldconfig
%postun -n avahi-compat-howl
/sbin/ldconfig
# end !%build_mono
%endif
%if %build_mono
@ -634,6 +642,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Mon Aug 06 2007 - bk@suse.de
- replace -p /usr/sbin/ldconfig with %%{run_ldconfig}
* Mon Jul 30 2007 - aj@suse.de
- Add gcc-c++ to BuildRequires.
* Mon Jul 16 2007 - aj@suse.de

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Tue Aug 7 18:31:53 CEST 2007 - maw@suse.de
- But that macro is deprecated (http://en.opensuse.org/Packaging/SUSE_Package_Conventions/RPM_Macros#3.28._.25run_ldconfig_.28deprecated.29)
so replace it with /sbin/ldconfig.
-------------------------------------------------------------------
Mon Aug 6 17:03:54 CEST 2007 - bk@suse.de
- replace -p /usr/sbin/ldconfig with %{run_ldconfig}
-------------------------------------------------------------------
Mon Jul 30 08:54:42 CEST 2007 - aj@suse.de

View File

@ -16,7 +16,7 @@ Name: avahi
# avahi.spec and then run pre_checkin.sh which will create
# avahi-mono.spec based upon avahi.spec.
Version: 0.6.20
Release: 19
Release: 22
URL: http://www.avahi.org/
Group: System/Daemons
License: LGPL v2 or later
@ -57,11 +57,11 @@ communication between user applications and a system daemon. The daemon
is used to coordinate application efforts in caching replies, necessary
to minimize the traffic imposed on networks.
The Avahi mDNS responder is now feature complete, implementing all
MUSTs and the majority of the SHOULDs of the mDNS and DNS-SD RFCs. It
passes all tests in the Apple Bonjour conformance test suite. In
addition, it supports some nifty things that have never been seen
elsewhere, like correct mDNS reflection across LAN segments.
The Avahi mDNS responder is now complete with features, implementing
all MUSTs and the majority of the SHOULDs of the mDNS and DNS-SD RFCs.
It passes all tests in the Apple Bonjour conformance test suite. In
addition, it supports some nifty things, like correct mDNS reflection
across LAN segments.
@ -73,7 +73,7 @@ Authors:
%if !%build_mono
%package -n avahi-glib
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Glib Bindings for avahi, the D-BUS Service for Zeroconf and Bonjour
Requires: %{name} = %{version}
Autoreqprov: on
Group: Development/Libraries/Other
@ -131,7 +131,7 @@ Authors:
Sebastien Estienne <sebastien.estienne@gmail.com>
%package -n avahi-qt3
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Qt3 Bindings for avahi, the D-BUS Service for Zeroconf and Bonjour
Requires: %{name} = %{version}
Autoreqprov: on
Group: Development/Libraries/Other
@ -160,7 +160,7 @@ Authors:
Sebastien Estienne <sebastien.estienne@gmail.com>
%package -n avahi-qt4
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Qt4 Bindings for avahi, the D-BUS Service for Zeroconf and Bonjour
Requires: %{name} = %{version}
Autoreqprov: on
Group: Development/Libraries/Other
@ -315,7 +315,7 @@ Authors:
Sebastien Estienne <sebastien.estienne@gmail.com>
%package -n avahi-devel
Summary: D-BUS Service for Zeroconf/Bonjour
Summary: Include Files and Libraries Mandatory for Development
Requires: %{name} = %{version} dbus-1-devel glibc-devel glib2-devel gtk2-devel
# NOTE: Adding these will cause large dependencies, 2/3 of the are not
# needed in most cases. Most users of bindings will already require is
@ -464,33 +464,44 @@ rm -rf $RPM_BUILD_ROOT
%{stop_on_removal avahi-daemon}
%{stop_on_removal avahi-dnsconfd}
%post -p /sbin/ldconfig
%post
/sbin/ldconfig
%postun
%{restart_on_update avahi-daemon}
%{restart_on_update avahi-dnsconfd}
%{run_ldconfig}
/sbin/ldconfig
%insserv_cleanup
%post -n avahi-qt3 -p /sbin/ldconfig
%post -n avahi-qt3
/sbin/ldconfig
%postun -n avahi-qt3 -p /sbin/ldconfig
%postun -n avahi-qt3
/sbin/ldconfig
%post -n avahi-qt4 -p /sbin/ldconfig
%post -n avahi-qt4
/sbin/ldconfig
%postun -n avahi-qt4 -p /sbin/ldconfig
%postun -n avahi-qt4
/sbin/ldconfig
%post -n avahi-glib -p /sbin/ldconfig
%post -n avahi-glib
/sbin/ldconfig
%postun -n avahi-glib -p /sbin/ldconfig
%postun -n avahi-glib
/sbin/ldconfig
%post -n avahi-compat-mDNSResponder -p /sbin/ldconfig
%post -n avahi-compat-mDNSResponder
/sbin/ldconfig
%postun -n avahi-compat-mDNSResponder -p /sbin/ldconfig
%postun -n avahi-compat-mDNSResponder
/sbin/ldconfig
%post -n avahi-compat-howl -p /sbin/ldconfig
%post -n avahi-compat-howl
/sbin/ldconfig
%postun -n avahi-compat-howl -p /sbin/ldconfig
%postun -n avahi-compat-howl
/sbin/ldconfig
# end !%build_mono
%endif
%if %build_mono
@ -632,6 +643,11 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Aug 07 2007 - maw@suse.de
- But that macro is deprecated (http://en.opensuse.org/Packaging/SUSE_Package_Conventions/RPM_Macros#3.28._.25run_ldconfig_.28deprecated.29)
so replace it with /sbin/ldconfig.
* Mon Aug 06 2007 - bk@suse.de
- replace -p /usr/sbin/ldconfig with %%{run_ldconfig}
* Mon Jul 30 2007 - aj@suse.de
- Add gcc-c++ to BuildRequires.
* Tue Jul 24 2007 - aj@suse.de