Skip to content
This repository has been archived by the owner on Jan 14, 2021. It is now read-only.

Commit

Permalink
2008-09-11 Aaron Bockover <abockover@novell.com>
Browse files Browse the repository at this point in the history
    0.8.0 Released

    * NEWS: Updated with 0.8.0 release notes

    * mono-zeroconf.spec: Updated


svn path=/trunk/Mono.Zeroconf/; revision=112813
  • Loading branch information
abock committed Sep 11, 2008
1 parent 7cbb278 commit 5e316c2
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 13 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
@@ -1,3 +1,11 @@
2008-09-11 Aaron Bockover <abockover@novell.com>

0.8.0 Released

* NEWS: Updated with 0.8.0 release notes

* mono-zeroconf.spec: Updated

2008-08-27 Brad Taylor <brad@getcoded.net>

* src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/TxtRecord.cs:
Expand Down
13 changes: 13 additions & 0 deletions NEWS
@@ -1,3 +1,16 @@
2008-09-11: 0.8.0 Release

* New Avahi provider using DBus instead of libavahi

* Improved IPv6 support (AddressProtocol/A6 query support)

* Garbage Collection bug fixed in the Bonjour backend, regarding delegates
passed to native code being GCed prematurely; thanks to Josh Coole

* New MZClient features: support for setting interface, domain, and
address type restrictions on browse/resolve operations; new general
verbosity options

2008-03-20: 0.7.6 Release

* Added a NetworkInterface property to the IService object
Expand Down
26 changes: 13 additions & 13 deletions mono-zeroconf.spec
@@ -1,5 +1,5 @@
#
# spec file for package mono-zeroconf (Version 0.7.6)
# spec file for package mono-zeroconf (Version 0.8.0)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
Expand All @@ -10,20 +10,21 @@

# norootforbuild


Name: mono-zeroconf
AutoReqProv: on
License: X11/MIT
Group: Development/Languages/Mono
Summary: A cross platform Zero Configuration Networking library for Mono
Url: http://mono-project.com/Mono.Zeroconf
Version: 0.7.6
Version: 0.8.0
Release: 1
Source0: %{name}-%{version}.tar.bz2
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: mono-devel
Requires: mono-zeroconf-provider
%define assembly_version 2.0.0.76
%define assembly_version 3.0.0.80
## --- Build Configuration --- ##
%define build_avahi 1
%define build_mdnsr 1
Expand All @@ -33,13 +34,12 @@ Requires: mono-zeroconf-provider
%if %{suse_version} >= 1030
%define build_avahi 1
%define build_mdnsr 0
BuildRequires: avahi-mono
#BuildRequires: avahi-mono
%endif
%if %{suse_version} >= 1020 && %{suse_version} < 1030
%define build_avahi 1
%define build_mdnsr 1
%define override_avahi_libs 1
BuildRequires: avahi-mono
#BuildRequires: avahi-mono
BuildRequires: mDNSResponder-devel
%endif
%if %{suse_version} < 1020
Expand Down Expand Up @@ -92,11 +92,14 @@ Authors:
%dir %_prefix/lib/mono/gac/policy.1.0.Mono.Zeroconf/0.0.0.0__e60c4f4a95e1099e
%dir %_prefix/lib/mono/gac/policy.2.0.Mono.Zeroconf
%dir %_prefix/lib/mono/gac/policy.2.0.Mono.Zeroconf/0.0.0.0__e60c4f4a95e1099e
%dir %_prefix/lib/mono/gac/policy.3.0.Mono.Zeroconf
%dir %_prefix/lib/mono/gac/policy.3.0.Mono.Zeroconf/0.0.0.0__e60c4f4a95e1099e
%_bindir/mzclient
%_prefix/share/pkgconfig/mono-zeroconf.pc
%_prefix/lib/mono/gac/Mono.Zeroconf/*/*.dll*
%_prefix/lib/mono/gac/policy.1.0.Mono.Zeroconf/*/*
%_prefix/lib/mono/gac/policy.2.0.Mono.Zeroconf/*/*
%_prefix/lib/mono/gac/policy.3.0.Mono.Zeroconf/*/*
%_prefix/lib/mono/mono-zeroconf/Mono.Zeroconf.dll*
%_prefix/lib/mono-zeroconf/MZClient.exe*
## --- mDNSResponder Provider --- ##
Expand Down Expand Up @@ -133,7 +136,7 @@ Authors:
%package provider-avahi
Summary: A cross platform Zero Configuration Networking library for Mono
Group: Development/Languages/Mono
Requires: mono-zeroconf
Requires: mono-zeroconf avahi
Provides: mono-zeroconf-provider

%description provider-avahi
Expand All @@ -152,7 +155,7 @@ Authors:
%files provider-avahi
%defattr(-, root, root)
%dir %_prefix/lib/mono-zeroconf
%_prefix/lib/mono-zeroconf/Mono.Zeroconf.Providers.Avahi.dll*
%_prefix/lib/mono-zeroconf/Mono.Zeroconf.Providers.AvahiDBus.dll*
%endif
## --- Monodoc Developer API Documentation --- ##
%if %{build_docs} == 1
Expand Down Expand Up @@ -186,9 +189,6 @@ Authors:

%build
%{?env_options}
%if 0%{?override_avahi_libs}
export AVAHI_LIBS="-r:/usr/lib/mono/avahi-sharp/avahi-sharp.dll"
%endif
./configure --prefix=/usr \
%if %{build_docs} == 0
--disable-docs \
Expand Down Expand Up @@ -217,7 +217,7 @@ mv $RPM_BUILD_ROOT/usr/lib/pkgconfig/* $RPM_BUILD_ROOT/usr/share/pkgconfig
rm -rf $RPM_BUILD_ROOT

%changelog
* Thu Mar 21 2008 abockover@suse.de
* Fri Mar 21 2008 abockover@suse.de
- Updated to version 0.7.6
- Adds NetworkInterface API to IService objects
- Supports IPv6 host address resolutions
Expand All @@ -230,7 +230,7 @@ rm -rf $RPM_BUILD_ROOT
only manifested under .NET on Windows XP SP2
- Minor bug fix in MZClient
- libdir patch removed from package; fixed in upstream release
* Thu Dec 27 2007 abockover@suse.de
* Fri Dec 28 2007 abockover@suse.de
- Patch to fix libdir issue in mono-zeroconf.pc on x86_64
* Sun Dec 23 2007 abockover@suse.de
- Initial import of Mono.Zeroconf for STABLE from the build serivce
Expand Down

0 comments on commit 5e316c2

Please sign in to comment.