fc54c3
%define VERSION %{version}
fc54c3
fc54c3
%define bind_version 32:9.11.26-1
fc54c3
fc54c3
%if 0%{?fedora} >= 31 || 0%{?rhel} >= 9
fc54c3
    %global openssl_pkcs11_version 0.4.10-2
fc54c3
    %global softhsm_version 2.6.0
fc54c3
%else
fc54c3
    %global with_bind_pkcs11 1
fc54c3
%endif
fc54c3
fc54c3
Name:           bind-dyndb-ldap
fc54c3
Version:        11.6
86c0cb
Release:        4%{?dist}
fc54c3
Summary:        LDAP back-end plug-in for BIND
fc54c3
fc54c3
Group:          System Environment/Libraries
fc54c3
License:        GPLv2+
fc54c3
URL:            https://releases.pagure.org/bind-dyndb-ldap
fc54c3
Source0:        https://releases.pagure.org/%{name}/%{name}-%{VERSION}.tar.bz2
fc54c3
Source1:        https://releases.pagure.org/%{name}/%{name}-%{VERSION}.tar.bz2.asc
fc54c3
86c0cb
Patch0001:      0001-Modify-empty-zone-conflicts-under-exclusive-mode_rhbz#2133036.patch
86c0cb
Patch0002:      0002-add-rwlock-before-include-zt-h.patch
86c0cb
fc54c3
BuildRequires:  bind-devel >= %{bind_version}, bind-lite-devel >= %{bind_version}, bind-pkcs11-devel >= %{bind_version}
fc54c3
BuildRequires:  krb5-devel
fc54c3
BuildRequires:  openldap-devel
fc54c3
BuildRequires:  libuuid-devel
fc54c3
BuildRequires:  automake, autoconf, libtool
fc54c3
fc54c3
%if %{with bind_pkcs11}
fc54c3
Requires:       bind-pkcs11 >= %{bind_version}, bind-pkcs11-utils >= %{bind_version}
fc54c3
%else
fc54c3
Requires: softhsm >= %{softhsm_version}
fc54c3
Requires: openssl-pkcs11 >= %{openssl_pkcs11_version}
fc54c3
%endif
fc54c3
fc54c3
%description
fc54c3
This package provides an LDAP back-end plug-in for BIND. It features
fc54c3
support for dynamic updates and internal caching, to lift the load
fc54c3
off of your LDAP server.
fc54c3
fc54c3
fc54c3
%prep
fc54c3
%setup -q -n %{name}-%{VERSION}
fc54c3
86c0cb
for p in %patches; do
86c0cb
    %__patch -p1 -i $p
86c0cb
done
86c0cb
fc54c3
%build
fc54c3
autoreconf -fiv
fc54c3
%configure
fc54c3
make %{?_smp_mflags}
fc54c3
fc54c3
fc54c3
%install
fc54c3
rm -rf %{buildroot}
fc54c3
make install DESTDIR=%{buildroot}
fc54c3
mkdir -m 770 -p %{buildroot}/%{_localstatedir}/named/dyndb-ldap
fc54c3
fc54c3
# Remove unwanted files
fc54c3
rm %{buildroot}%{_libdir}/bind/ldap.la
fc54c3
rm -r %{buildroot}%{_datadir}/doc/%{name}
fc54c3
fc54c3
fc54c3
%post
fc54c3
# Transform named.conf if it still has old-style API.
fc54c3
PLATFORM=$(uname -m)
fc54c3
fc54c3
if [ $PLATFORM == "x86_64" ] ; then
fc54c3
    LIBPATH=/usr/lib64
fc54c3
else
fc54c3
    LIBPATH=/usr/lib
fc54c3
fi
fc54c3
fc54c3
# The following sed script:
fc54c3
#   - scopes the named.conf changes to dynamic-db
fc54c3
#   - replaces arg "name value" syntax with name "value"
fc54c3
#   - changes dynamic-db header to dyndb
fc54c3
#   - uses the new way the define path to the library
fc54c3
#   - removes no longer supported arguments (library, cache_ttl,
fc54c3
#       psearch, serial_autoincrement, zone_refresh)
fc54c3
while read -r PATTERN
fc54c3
do
fc54c3
    SEDSCRIPT+="$PATTERN"
fc54c3
done <
fc54c3
/^\s*dynamic-db/,/};/ {
fc54c3
fc54c3
  s/\(\s*\)arg\s\+\(["']\)\([a-zA-Z_]\+\s\)/\1\3\2/g;
fc54c3
fc54c3
  s/^dynamic-db/dyndb/;
fc54c3
fc54c3
  s@\(dyndb "[^"]\+"\)@\1 "$LIBPATH/bind/ldap.so"@;
fc54c3
  s@\(dyndb '[^']\+'\)@\1 '$LIBPATH/bind/ldap.so'@;
fc54c3
fc54c3
  /\s*library[^;]\+;/d;
fc54c3
  /\s*cache_ttl[^;]\+;/d;
fc54c3
  /\s*psearch[^;]\+;/d;
fc54c3
  /\s*serial_autoincrement[^;]\+;/d;
fc54c3
  /\s*zone_refresh[^;]\+;/d;
fc54c3
}
fc54c3
EOF
fc54c3
fc54c3
sed -i.bak -e "$SEDSCRIPT" /etc/named.conf
fc54c3
fc54c3
fc54c3
%files
fc54c3
%defattr(-,root,root,-)
fc54c3
%doc NEWS README.md COPYING doc/{example,schema}.ldif
fc54c3
%dir %attr(770, root, named) %{_localstatedir}/named/dyndb-ldap
fc54c3
%{_libdir}/bind/ldap.so
fc54c3
fc54c3
fc54c3
%changelog
86c0cb
* Thu Oct 13 2022 Rafael Jeffman <rjeffman@redhat.com> - 11.6-4
86c0cb
- Modify empty zone conflicts under exclusive mode
86c0cb
  Resolves: rhbz#2133035
86c0cb
2e1a9e
* Wed Dec 22 2021 Alexander Bokovoy <abokovoy@redhat.com> - 11.6-3
2e1a9e
- Rebuild against bind 9.11.36
2e1a9e
- Resolves: rhbz#2022762
2e1a9e
fc54c3
* Thu Jan 07 2021 Rob Crittenden <rcritten@redhat.com> - 11.6-2
fc54c3
- Rebuild against bind 9.11.26
fc54c3
- Resolves: rhbz#1904612
fc54c3
fc54c3
* Mon Nov 23 2020 Alexander Bokovoy <abokovoy@redhat.com> - 11.6-1
fc54c3
- New upstream release
fc54c3
- Resolves: rhbz#1891735
fc54c3
fc54c3
* Mon Jun 08 2020 Alexander Bokovoy <abokovoy@redhat.com> - 11.3-1
fc54c3
- New upstream release
fc54c3
- Resolves: rhbz#1845211
fc54c3
fc54c3
* Mon May 11 2020 Alexander Bokovoy <abokovoy@redhat.com> - 11.2-4
fc54c3
- Rebuild against bind 9.11.18
fc54c3
  Resolves: rhbz#1834264
fc54c3
fc54c3
* Wed Nov 27 2019 Alexander Bokovoy <abokovoy@redhat.com> - 11.2-3
fc54c3
- Rebuild against bind 9.11.13
fc54c3
  Related: RHBZ#1762813
fc54c3
fc54c3
* Mon Nov 18 2019 Thomas Woerner <twoerner@redhat.com> - 11.2-2
fc54c3
- Add support for serve-stale, detected on build time
fc54c3
  Patch by Petr Menšík <pemensik@redhat.com>
fc54c3
  Related: RHBZ#1762813
fc54c3
fc54c3
* Thu Nov 07 2019 Alexander Bokovoy <abokovoy@redhat.com> - 11.2-1
fc54c3
- New upstream release
fc54c3
- Support BIND9 9.11.11
fc54c3
- Resolves: rhbz#1762813
fc54c3
fc54c3
* Fri Aug 16 2019 Alexander Bokovoy <abokovoy@redhat.com> - 11.1-14
fc54c3
- Fix attribute templating in case of a missing default value
fc54c3
- Resolves: rhbz#1741896
fc54c3
fc54c3
* Mon Oct 15 2018 Petr Menšík <pemensik@redhat.com> - 11.1-13
fc54c3
- Move setting of named selinux boolean to bind (#1639410)
fc54c3
fc54c3
* Wed Aug 08 2018 Alexander Bokovoy <abokovoy@redhat.com> - 11.1-12
fc54c3
- Make sure we explicitly require openssl-devel for a build
fc54c3
- Resolves: rhbz#1613942
fc54c3
fc54c3
* Mon Jul 23 2018 Petr Menšík <pemensik@redhat.com> - 11.1-11
fc54c3
- Rebuild against BIND 9.11.4
fc54c3
fc54c3
* Thu Mar 01 2018 Petr Menšík <pemensik@redhat.com> - 11.1-10
fc54c3
- Rebuild for bind 9.11.3. Minor tweaks to compile.
fc54c3
fc54c3
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-9
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
fc54c3
fc54c3
* Fri Jan 19 2018 Petr Menšík <pemensik@redhat.com> - 11.1-8
fc54c3
- Rebuild again against bind-9.11.2-P1
fc54c3
fc54c3
* Tue Jan 09 2018 Petr Menšík <pemensik@redhat.com> - 11.1-7
fc54c3
- Rebuild for bind 9.11.2
fc54c3
fc54c3
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-6
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
fc54c3
fc54c3
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.1-5
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
fc54c3
fc54c3
* Tue Jun 27 2017 Tomas Krizek <tkrizek@redhat.com> - 11.1-4
fc54c3
- Bump BIND version and fix library dependecies
fc54c3
- Coverity fixes
fc54c3
fc54c3
* Mon Jun 26 2017 Petr Menšík <pemensik@redhat.com> - 11.1-3
fc54c3
- Build with updated libraries
fc54c3
fc54c3
* Mon Mar 13 2017 Tomas Krizek <tkrizek@redhat.com> - 11.1-2
fc54c3
- Fix error poinstall sed script
fc54c3
fc54c3
* Fri Mar 10 2017 Tomas Krizek <tkrizek@redhat.com> - 11.1-1
fc54c3
- Update to 11.1
fc54c3
- Bumped required version of BIND to 9.11.0-6.P2
fc54c3
  (required since bind-dyndb-ldap 11.0-1 release)
fc54c3
- Updated source URL links to pagure
fc54c3
fc54c3
* Fri Feb 10 2017 Tomas Krizek <tkrizek@redhat.com> - 11.0-2
fc54c3
- Patch to fix build warnings (removed duplicate const)
fc54c3
fc54c3
* Thu Feb 09 2017 Tomas Krizek <tkrizek@redhat.com> - 11.0-2
fc54c3
- Added named.conf transformation script as post action
fc54c3
fc54c3
* Thu Dec 15 2016 Tomas Krizek <tkrizek@redhat.com> - 11.0-1
fc54c3
- Update to 11.0
fc54c3
fc54c3
* Mon Nov 21 2016 Petr Menšík <pemensik@redhat.com> - 10.1-2
fc54c3
- Patched to alfa 11.0 with support for BIND 9.11
fc54c3
- Configuration format in named.conf is different
fc54c3
    and incompatible with all previous versions. Please see README.md.
fc54c3
- Minimal BIND version is now 9.11.0rc1. Please see NEWS.
fc54c3
fc54c3
* Wed Aug 17 2016 Petr Spacek <pspacek@redhat.com> - 10.1-1
fc54c3
- Update to 10.1.
fc54c3
- Fix deletion of DNS root zone not to break global forwarding.
fc54c3
  https://fedorahosted.org/bind-dyndb-ldap/ticket/167
fc54c3
fc54c3
* Wed Jul 27 2016 Petr Spacek <pspacek@redhat.com> - 10.0-2
fc54c3
- Backport fix for crash https://fedorahosted.org/bind-dyndb-ldap/ticket/166
fc54c3
fc54c3
* Tue Jun 21 2016 Petr Spacek <pspacek@redhat.com> - 10.0-1
fc54c3
- Update to 10.0
fc54c3
fc54c3
* Fri May 27 2016 Tomas Hozza <thozza@redhat.com> - 9.0-3
fc54c3
- Resolved build issue due to changes in libdns API
fc54c3
fc54c3
* Thu May 26 2016 Tomas Hozza <thozza@redhat.com> - 9.0-2
fc54c3
- Rebuild against bind-9.10.4-P1
fc54c3
fc54c3
* Thu May 12 2016 Petr Spacek <pspacek@redhat.com> - 9.0-1
fc54c3
- Update to 9.0
fc54c3
- Fix for GCC 4.9+ was merged upstream
fc54c3
fc54c3
* Fri Mar 04 2016 Petr Spacek <pspacek@redhat.com> - 8.0-6
fc54c3
- Fix builds with GCC 4.9+
fc54c3
fc54c3
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 8.0-5
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
fc54c3
fc54c3
* Thu Dec 17 2015 Petr Spacek <pspacek@redhat.com> - 8.0-4
fc54c3
- Rebuild against bind 9.10.3-P2
fc54c3
fc54c3
* Fri Sep 04 2015 Tomas Hozza <thozza@redhat.com> - 8.0-3
fc54c3
- Rebuild against bind 9.10.3rc1
fc54c3
fc54c3
* Wed Jun 24 2015 Tomas Hozza <thozza@redhat.com> - 8.0-2
fc54c3
- rebuild against bind-9.10.2-P1
fc54c3
fc54c3
* Tue Jun 23 2015 Petr Spacek <pspacek@redhat.com> - 8.0-1
fc54c3
- update to 8.0
fc54c3
fc54c3
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0-5
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
fc54c3
fc54c3
* Fri Mar 13 2015 Tomas Hozza <thozza@redhat.com> - 7.0-4
fc54c3
- rebuild against bind-9.10.2
fc54c3
fc54c3
* Wed Feb 25 2015 Tomas Hozza <thozza@redhat.com> - 7.0-3
fc54c3
- Rebuild against bind-9.10.2rc2
fc54c3
fc54c3
* Mon Feb 02 2015 Tomas Hozza <thozza@redhat.com> - 7.0-2
fc54c3
- rebuild against bind-9.10.2rc1
fc54c3
fc54c3
* Mon Jan 12 2015 Petr Spacek <pspacek@redhat.com> - 7.0-1
fc54c3
- update to 7.0 to add support for BIND 9.10
fc54c3
fc54c3
* Tue Dec 02 2014 Petr Spacek <pspacek@redhat.com> - 6.1-1
fc54c3
- update to 6.1
fc54c3
- drop patches which were merged upstream
fc54c3
fc54c3
* Tue Oct 21 2014 Petr Viktorin <pviktori@redhat.com> - 6.0-5
fc54c3
- use lower version of bind-pkcs11-utils for f20 and el7
fc54c3
fc54c3
* Mon Oct 20 2014 Petr Spacek <pspacek@redhat.com> - 6.0-4
fc54c3
- add dependency on bind-pkcs11-utils >= 32:9.9.6-2
fc54c3
  to help with freeipa-server upgrade
fc54c3
fc54c3
* Mon Oct 20 2014 Petr Spacek <pspacek@redhat.com> - 6.0-3
fc54c3
- replace dependency on bind with dependency on bind-pkcs11 >= 32:9.9.6-2
fc54c3
  to help with freeipa-server upgrade
fc54c3
fc54c3
* Fri Oct 03 2014 Tomas Hozza <thozza@redhat.com> - 6.0-2
fc54c3
- rebuild against bind-9.9.6
fc54c3
fc54c3
* Tue Sep 23 2014 Petr Spacek <pspacek redhat com> - 6.0-1
fc54c3
- update to 6.0
fc54c3
fc54c3
* Fri Sep 12 2014 Petr Spacek <pspacek redhat com> - 5.3-1
fc54c3
- update to 5.3
fc54c3
fc54c3
* Mon Sep 08 2014 Petr Spacek <pspacek redhat com> 5.2-1
fc54c3
- update to 5.2
fc54c3
fc54c3
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1-2
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
fc54c3
fc54c3
* Thu Jul 24 2014 Petr Spacek <pspacek redhat com> 5.1-1
fc54c3
- update to 5.1
fc54c3
- fixes bug 1122393
fc54c3
fc54c3
* Tue Jun 24 2014 Petr Spacek <pspacek redhat com> 5.0-1
fc54c3
- update to 5.0
fc54c3
fc54c3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3-2
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
fc54c3
fc54c3
* Wed Apr 09 2014 Petr Spacek <pspacek redhat com> 4.3-1
fc54c3
- update to 4.3
fc54c3
fc54c3
* Mon Feb 24 2014 Petr Spacek <pspacek redhat com> 4.1-2
fc54c3
- remove deprecated define _BSD_SOURCE
fc54c3
fc54c3
* Mon Feb 24 2014 Petr Spacek <pspacek redhat com> 4.1-1
fc54c3
- update to 4.1
fc54c3
fc54c3
* Thu Jul 18 2013 Petr Spacek <pspacek redhat com> 3.5-1
fc54c3
- update to 3.5
fc54c3
fc54c3
* Mon Jul 15 2013 Tomas Hozza <thozza@redhat.com> 3.4-2
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Tue Jun 25 2013 Petr Spacek <pspacek redhat com> 3.4-1
fc54c3
- update to 3.4
fc54c3
fc54c3
* Tue Jun 04 2013 Petr Spacek <pspacek redhat com> 3.3-1
fc54c3
- update to 3.3
fc54c3
- patch bind-dyndb-ldap-tbabej-0001-Build-fixes-for-Fedora-19.patch merged
fc54c3
fc54c3
* Tue May 14 2013 Petr Spacek <pspacek redhat com> 3.2-1
fc54c3
- update to 3.2
fc54c3
fc54c3
* Tue Apr 16 2013 Adam Tkac <atkac redhat com> 3.1-2
fc54c3
- rebuild against new bind
fc54c3
- build with --disable-werror
fc54c3
fc54c3
* Fri Apr 12 2013 Petr Spacek <pspacek redhat com> 3.1-1
fc54c3
- update to 3.1
fc54c3
fc54c3
* Tue Apr 02 2013 Petr Spacek <pspacek redhat com> 3.0-1
fc54c3
- update to 3.0
fc54c3
fc54c3
* Tue Mar 26 2013 Petr Spacek <pspacek redhat com> 2.6-1
fc54c3
- update to 2.6
fc54c3
fc54c3
* Mon Feb 04 2013 Petr Spacek <pspacek redhat com> 2.5-1
fc54c3
- update to 2.5
fc54c3
fc54c3
* Tue Jan 15 2013 Petr Spacek <pspacek redhat com> 2.4-1
fc54c3
- update to 2.4
fc54c3
fc54c3
* Thu Nov  8 2012 Petr Spacek <pspacek redhat com> 2.3-2
fc54c3
- rebuild with proper changelog
fc54c3
fc54c3
* Thu Nov  8 2012 Petr Spacek <pspacek redhat com> 2.3-1
fc54c3
- update to 2.3
fc54c3
fc54c3
* Mon Oct 29 2012 Adam Tkac <atkac redhat com> 2.1-1
fc54c3
- update to 2.1
fc54c3
fc54c3
* Thu Oct 11 2012 Adam Tkac <atkac redhat com> 2.0-0.3.20121009git6a86b1
fc54c3
- rebuild against new bind-libs
fc54c3
fc54c3
* Tue Oct  9 2012 Petr Spacek <pspacek redhat com> 2.0-0.2.20121009git6a86b1
fc54c3
- update to the latest master
fc54c3
fc54c3
* Fri Sep 21 2012 Adam Tkac <atkac redhat com> 2.0-0.1.20120921git7710d89
fc54c3
- update to the latest master
fc54c3
- bind-dyndb-ldap110-master.patch was merged
fc54c3
fc54c3
* Thu Aug 16 2012 Adam Tkac <atkac redhat com> 1.1.0-0.16.rc1
fc54c3
- update to the latest git
fc54c3
fc54c3
* Thu Aug 02 2012 Adam Tkac <atkac redhat com> 1.1.0-0.15.rc1
fc54c3
- update to the latest git
fc54c3
  - fix for CVE-2012-3429 has been merged
fc54c3
fc54c3
* Thu Aug 02 2012 Adam Tkac <atkac redhat com> 1.1.0-0.14.rc1
fc54c3
- fix CVE-2012-3429
fc54c3
fc54c3
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-0.13.rc1
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
fc54c3
fc54c3
* Thu Jun 07 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.12.rc1
fc54c3
- update to the latest master (#827401)
fc54c3
fc54c3
* Thu Apr 26 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.11.rc1
fc54c3
- update to 1.1.0rc1 (CVE-2012-2134)
fc54c3
fc54c3
* Tue Mar 27 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.10.b2
fc54c3
- update to 1.1.0b2
fc54c3
fc54c3
* Tue Mar 06 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.9.b1
fc54c3
- update to 1.1.0b1
fc54c3
fc54c3
* Mon Feb 13 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.8.a2
fc54c3
- update to 1.1.0a2
fc54c3
fc54c3
* Thu Feb 02 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.7.a1
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Wed Jan 18 2012 Adam Tkac <atkac redhat com> - 1.1.0-0.6.a1
fc54c3
- update to 1.1.0a1
fc54c3
fc54c3
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-0.5.rc1
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
fc54c3
fc54c3
* Mon Nov 14 2011 Adam Tkac <atkac redhat com> - 1.0.0-0.4.rc1
fc54c3
- update to 1.0.0rc1
fc54c3
fc54c3
* Mon Nov 14 2011 Adam Tkac <atkac redhat com> - 1.0.0-0.3.b1
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Fri Sep 09 2011 Adam Tkac <atkac redhat com> - 1.0.0-0.2.b1
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Wed Aug 31 2011 Adam Tkac <atkac redhat com> - 1.0.0-0.1.b1
fc54c3
- update to 1.0.0b1 (psearch + bugfixes)
fc54c3
- bind-dyndb-ldap-rh727856.patch merged
fc54c3
fc54c3
* Wed Aug 03 2011 Adam Tkac <atkac redhat com> - 0.2.0-4
fc54c3
- fix race condition in semaphore_wait (#727856)
fc54c3
fc54c3
* Mon Feb 21 2011 Adam Tkac <atkac redhat com> - 0.2.0-3
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.0-2
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
fc54c3
fc54c3
* Wed Jan 12 2011 Adam Tkac <atkac redhat com> - 0.2.0-1
fc54c3
- update to 0.2.0
fc54c3
- patches merged
fc54c3
  - 0001-Bugfix-Improve-LDAP-schema-to-be-loadable-by-OpenLDA.patch
fc54c3
  - 0004-Bugfix-Fix-loading-of-child-zones-from-LDAP.patch
fc54c3
fc54c3
* Wed Dec 15 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.17.b
fc54c3
- fix LDAP schema (#622604)
fc54c3
- load child zones from LDAP correctly (#622617)
fc54c3
fc54c3
* Fri Oct 22 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.16.b
fc54c3
- build with correct RPM_OPT_FLAGS (#645529)
fc54c3
fc54c3
* Wed Oct 20 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.15.b
fc54c3
- use "isc-config.sh" utility to get correct BIND9 CFLAGS
fc54c3
fc54c3
* Thu Sep 30 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.14.b
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Fri Aug 27 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.13.b
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Tue Aug 17 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.12.b
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Tue Aug 03 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.11.b
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Mon May 31 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.10.b
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Wed Mar 24 2010 Martin Nagy <mnagy@redhat.com> - 0.1.0-0.9.b
fc54c3
- update to the latest upstream release
fc54c3
fc54c3
* Thu Jan 28 2010 Adam Tkac <atkac redhat com> - 0.1.0-0.8.a1.20091210git
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Tue Dec 15 2009 Adam Tkac <atkac redhat com> - 0.1.0-0.7.a1.20091210git
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Thu Dec 10 2009 Martin Nagy <mnagy@redhat.com> - 0.1.0-0.6.a1.20091210git
fc54c3
- update to the latest git snapshot
fc54c3
- change upstream URL, project moved to fedorahosted
fc54c3
- change license to GPL version 2 or later
fc54c3
- add epoch to versioned requires
fc54c3
- add krb5-devel to the list of build requires
fc54c3
fc54c3
* Tue Dec 01 2009 Adam Tkac <atkac redhat com> - 0.1.0-0.5.a1
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Thu Nov 26 2009 Adam Tkac <atkac redhat com> - 0.1.0-0.4.a1
fc54c3
- rebuild against new bind
fc54c3
fc54c3
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-0.3.a1
fc54c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
fc54c3
fc54c3
* Fri Jun 19 2009 Caolán McNamara <caolanm@redhat.com> - 0.1.0-0.2.a1
fc54c3
- rebuild for dependencies
fc54c3
fc54c3
* Sun May 03 2009 Martin Nagy <mnagy@redhat.com> - 0.1.0-0.1.a1
fc54c3
- initial packaging