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