Jared K. Smith d22517c
%global tools_version 2.11.1
Jared K. Smith d22517c
%global linux_version 2.11.1
dfba6cb
dfba6cb
Name:           dahdi-tools
dfba6cb
Version:        %{tools_version}
Jared Smith be048df
Release:        16%{?dist}
dfba6cb
Summary:        Userspace tools to configure the DAHDI kernel modules
dfba6cb
dfba6cb
License:        GPLv2 and LGPLv2
dfba6cb
URL:            http://www.asterisk.org/
dfba6cb
7e9f440
Source0:        http://downloads.asterisk.org/pub/telephony/dahdi-tools/releases/dahdi-tools-%{tools_version}.tar.gz
42e399d
Source1:        http://downloads.asterisk.org/pub/telephony/dahdi-tools/releases/dahdi-tools-%{tools_version}.tar.gz.asc
42e399d
Source2:        http://downloads.asterisk.org/pub/telephony/dahdi-linux/releases/dahdi-linux-%{linux_version}.tar.gz
42e399d
Source3:        http://downloads.asterisk.org/pub/telephony/dahdi-linux/releases/dahdi-linux-%{linux_version}.tar.gz.asc
Jared K. Smith d22517c
# Add SystemD service file
Jared K. Smith d22517c
Source4:        dahdi.service
dfba6cb
ec22501
# Add wcopenpci to initial blacklist
ec22501
Patch0:         dahdi-tools-blacklist-wcopenpci.patch
79bac2e
# Fix gcc warning (upgraded to error) for what was almost certainly
a46f7b8
# an incorrect use of the logical negation operator
Jared K. Smith d22517c
#Patch1:         mpptalk-oper-fix.patch
c41698c
# Fix GCC warning for unused variables, bug #1306634,
c41698c
# fixed in upstream after 2.11.0
Jared K. Smith d22517c
#Patch2:         dahdi-tools-2.10.0-Remove-unused-rcsid.patch
Jared K. Smith d22517c
# Fix Makefile.legacy so that it adds the -fPIC linker flag
Jared K. Smith d22517c
Patch3:          dahdi-tools_fix-legacy-make.patch
Jared K. Smith d22517c
ec22501
22bc5ea
BuildRequires:  gcc
ebb526d
BuildRequires:  libusb-devel
ebb526d
BuildRequires:  newt-devel
5dec7b7
BuildRequires:  perl-interpreter
d9fae52
BuildRequires:  perl-podlators
Jared K. Smith d22517c
BuildRequires:  perl-generators
Jared K. Smith d22517c
BuildRequires:  udev
Jared K. Smith d22517c
%{?systemd_requires}
dfba6cb
4b7bf77
Requires:        perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
4b7bf77
Requires:        dahdi-tools-libs%{?_isa} = %{version}-%{release}
Jared Smith be048df
%if 0%{?fedora} || 0%{?rhel} >= 8
Jared K. Smith d22517c
Requires:        systemd-udev
Jared Smith be048df
%endif
4b7bf77
Requires(pre):   %{_sbindir}/useradd
4b7bf77
Requires(pre):   %{_sbindir}/groupadd
dfba6cb
4b7bf77
Conflicts:       zaptel-utils
fc53e7d
dfba6cb
%description
dfba6cb
DAHDI stands for Digium Asterisk Hardware Device Interface. This
dfba6cb
package contains the userspace tools to configure the DAHDI kernel
dfba6cb
modules.  DAHDI is the replacement for Zaptel, which must be renamed
dfba6cb
due to trademark issues.
dfba6cb
dfba6cb
%package        libs
dfba6cb
Summary:        Library files for DAHDI
69247a7
Conflicts:      zaptel-lib
dfba6cb
dfba6cb
%description    libs
dfba6cb
The dahdi-tools-libs package contains libraries for accessing DAHDI hardware.
dfba6cb
dfba6cb
%package        devel
dfba6cb
Summary:        Development files for DAHDI
4b7bf77
Requires:       dahdi-tools-libs%{?_isa} = %{version}-%{release}
Jared K. Smith d22517c
BuildRequires:  chrpath
dfba6cb
dfba6cb
%description    devel
dfba6cb
The dahdi-devel package contains libraries and header files for
dfba6cb
developing applications that use DAHDI hardware.
dfba6cb
dfba6cb
%prep
42e399d
%setup0 -q -n dahdi-tools-%{tools_version} -a 2
dfba6cb
ln -s dahdi-linux-%{linux_version}/include include
dfba6cb
8de2347
%patch0 -p1 -b .blacklist
Jared K. Smith d22517c
Jared K. Smith d22517c
%configure --with-dahdi=`pwd` --enable-shared --with-pic
Jared K. Smith d22517c
Jared K. Smith d22517c
# Fix makefile to pass appropriate linker flags to Makefile.legacy
Jared K. Smith d22517c
%patch3 -p1 -b .legacy-fix
Jared K. Smith d22517c
# Fix perl directory in Makefile
Jared K. Smith d22517c
sed -i -r -e 's"perllibdir = /usr/local/share/perl5"perllibdir = %{perl_vendorlib}"' Makefile
ec22501
79bac2e
# allow overrding the variable in Makefile
Jared K. Smith d22517c
#sed -i s/UDEVRULES_DIR:=/UDEVRULES_DIR=/ Makefile
Jared K. Smith d22517c
Jared K. Smith d22517c
# Copy SystemD service file
Jared K. Smith d22517c
cp -pa %{SOURCE4} dahdi.service
Jared K. Smith d22517c
Jared K. Smith d22517c
# Fix incorrect FSF addresses
Jared K. Smith d22517c
sed -i -e \
Jared K. Smith d22517c
   's/675 Mass Ave, Cambridge, MA 02139/51 Franklin St, Boston, MA 02110/' \
Jared K. Smith d22517c
   xpp/*.c xpp/*.h xpp/xtalk/*.c xpp/xtalk/*.h xpp/xtalk/include/xtalk/*.h \
Jared K. Smith d22517c
   xpp/waitfor_xpds xpp/xpp_fxloader
Jared K. Smith d22517c
Jared K. Smith d22517c
sed -i -e \
Jared K. Smith d22517c
   's/59 Temple Place, Suite 330, Boston, MA  02111-1307/51 Franklin St, Boston, MA 02110/' \
Jared K. Smith d22517c
   LICENSE
Jared K. Smith d22517c
79bac2e
dfba6cb
%build
dfba6cb
Jared K. Smith d22517c
make %{?_smp_mflags} LDFLAGS="${LDFLAGS} -fPIC"
dfba6cb
dfba6cb
dfba6cb
%install
Jared K. Smith d22517c
%make_install config PERLLIBDIR=%{perl_vendorlib} perllibdir=%{perl_vendorlib} UDEVRULES_DIR=%{_udevrulesdir} udevrulesdir=%{_udevrulesdir}
dfba6cb
install -D -p -m 0644 include/dahdi/user.h %{buildroot}%{_includedir}/dahdi/user.h
b897f75
install -D -p -m 0644 include/dahdi/user.h %{buildroot}%{_includedir}/dahdi/dahdi_config.h
79bac2e
find %{buildroot} -name '*.a' -delete
8bc0475
rm -f %{buildroot}%{_sbindir}/sethdlc
Jared K. Smith d22517c
rm -f %{buildroot}%{_libdir}/libtonezone.la
Jared K. Smith d22517c
chrpath --delete %{buildroot}%{_sbindir}/dahdi_cfg
Jared K. Smith d22517c
mkdir -p %{buildroot}%{_unitdir}
Jared K. Smith d22517c
install -D -p -m 0644 dahdi.service %{buildroot}%{_unitdir}/dahdi.service
dfba6cb
dfba6cb
%pre
dfba6cb
%{_sbindir}/groupadd -r dahdi &>/dev/null || :
dfba6cb
%{_sbindir}/useradd  -r -s /sbin/nologin -d /usr/share/dahdi -M \
dfba6cb
                               -c 'DAHDI User' -g dahdi dahdi &>/dev/null || :
dfba6cb
dfba6cb
%post
Jared K. Smith d22517c
%systemd_post dahdi.service
dfba6cb
dfba6cb
%preun
Jared K. Smith d22517c
%systemd_preun dahdi.service
Jared K. Smith d22517c
Jared K. Smith d22517c
%postun
Jared K. Smith d22517c
%systemd_postun_with_restart dahdi.service
dfba6cb
dfba6cb
%files
79bac2e
%license LICENSE LICENSE.LGPL
79bac2e
%doc README
dfba6cb
%dir %{_sysconfdir}/dahdi
8de2347
%config(noreplace) %{_sysconfdir}/bash_completion.d/dahdi
8de2347
%config(noreplace) %{_sysconfdir}/dahdi/assigned-spans.conf.sample
Jared K. Smith d22517c
%config(noreplace) %{_sysconfdir}/dahdi/modules.sample
8de2347
%config(noreplace) %{_sysconfdir}/dahdi/span-types.conf.sample
Jared K. Smith d22517c
%config(noreplace) %{_sysconfdir}/dahdi/system.conf.sample
79bac2e
%{_udevrulesdir}/dahdi.rules
79bac2e
%{_udevrulesdir}/xpp.rules
7e9f440
%{_sbindir}/astribank_allow
7e9f440
%{_sbindir}/astribank_hexload
7e9f440
%{_sbindir}/astribank_is_starting
7e9f440
%{_sbindir}/astribank_tool
dfba6cb
%{_sbindir}/dahdi_cfg
dfba6cb
%{_sbindir}/dahdi_genconf
dfba6cb
%{_sbindir}/dahdi_hardware
7e9f440
%{_sbindir}/dahdi_maint
dfba6cb
%{_sbindir}/dahdi_monitor
dfba6cb
%{_sbindir}/dahdi_registration
dfba6cb
%{_sbindir}/dahdi_scan
8de2347
%{_sbindir}/dahdi_span_assignments
8de2347
%{_sbindir}/dahdi_span_types
dfba6cb
%{_sbindir}/dahdi_speed
dfba6cb
%{_sbindir}/dahdi_test
dfba6cb
%{_sbindir}/dahdi_tool
8de2347
%{_sbindir}/dahdi_waitfor_span_assignments
dfba6cb
%{_sbindir}/fxotune
dfba6cb
%{_sbindir}/lsdahdi
7e9f440
%{_sbindir}/twinstar
dfba6cb
%{_sbindir}/xpp_blink
dfba6cb
%{_sbindir}/xpp_sync
dfba6cb
%dir %{_datadir}/dahdi
7e9f440
%{_datadir}/dahdi/astribank_hook
dfba6cb
%{_datadir}/dahdi/xpp_fxloader
4d75711
%{_datadir}/dahdi/waitfor_xpds
8de2347
%{_datadir}/dahdi/dahdi_auto_assign_compat
8de2347
%{_datadir}/dahdi/dahdi_handle_device
8de2347
%{_datadir}/dahdi/dahdi_span_config
8de2347
%dir %{_datadir}/dahdi/handle_device.d
8de2347
%{_datadir}/dahdi/handle_device.d/10-span-types
8de2347
%{_datadir}/dahdi/handle_device.d/20-span-assignments
8de2347
%dir %{_datadir}/dahdi/span_config.d
8de2347
%{_datadir}/dahdi/span_config.d/10-dahdi-cfg
8de2347
%{_datadir}/dahdi/span_config.d/20-fxotune
8de2347
%{_datadir}/dahdi/span_config.d/50-asterisk
7e9f440
%{_mandir}/man8/astribank_allow.8.gz
7e9f440
%{_mandir}/man8/astribank_hexload.8.gz
7e9f440
%{_mandir}/man8/astribank_is_starting.8.gz
7e9f440
%{_mandir}/man8/astribank_tool.8.gz
dfba6cb
%{_mandir}/man8/dahdi_cfg.8.gz
dfba6cb
%{_mandir}/man8/dahdi_genconf.8.gz
dfba6cb
%{_mandir}/man8/dahdi_hardware.8.gz
1a820ee
%{_mandir}/man8/dahdi_maint.8.gz
dfba6cb
%{_mandir}/man8/dahdi_monitor.8.gz
dfba6cb
%{_mandir}/man8/dahdi_registration.8.gz
dfba6cb
%{_mandir}/man8/dahdi_scan.8.gz
8de2347
%{_mandir}/man8/dahdi_span_assignments.8.gz
8de2347
%{_mandir}/man8/dahdi_span_types.8.gz
dfba6cb
%{_mandir}/man8/dahdi_test.8.gz
dfba6cb
%{_mandir}/man8/dahdi_tool.8.gz
8de2347
%{_mandir}/man8/dahdi_waitfor_span_assignments.8.gz
dfba6cb
%{_mandir}/man8/fxotune.8.gz
dfba6cb
%{_mandir}/man8/lsdahdi.8.gz
7e9f440
%{_mandir}/man8/twinstar.8.gz
dfba6cb
%{_mandir}/man8/xpp_blink.8.gz
dfba6cb
%{_mandir}/man8/xpp_sync.8.gz
dfba6cb
%{perl_vendorlib}/Dahdi.pm
dfba6cb
%{perl_vendorlib}/Dahdi
Jared K. Smith d22517c
%{_sbindir}/xtalk_send
Jared K. Smith d22517c
%{_mandir}/man8/xtalk_send.8.gz
Jared K. Smith d22517c
%{_unitdir}/dahdi.service
dfba6cb
dfba6cb
%files libs
ebb526d
%license LICENSE LICENSE.LGPL
dfba6cb
%{_libdir}/*.so.*
dfba6cb
dfba6cb
%files devel
ebb526d
%license LICENSE LICENSE.LGPL
dfba6cb
%{_includedir}/*
dfba6cb
%{_libdir}/*.so
dfba6cb
dfba6cb
%changelog
Jared Smith be048df
* Mon May 04 2020 Jared K. Smith <jsmith@fedoraproject.org> - 2.11.1-16
Jared Smith be048df
- Fix dependency on systemd-udev for EPEL 7
Jared Smith be048df
760b1a4
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-15
760b1a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
760b1a4
76d04e8
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-14
76d04e8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
76d04e8
e38aff7
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.11.1-13
e38aff7
- Perl 5.30 rebuild
e38aff7
b0be5c3
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-12
b0be5c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
b0be5c3
2c41a96
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-11
2c41a96
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2c41a96
7841325
* Tue Jul 03 2018 Petr Pisar <ppisar@redhat.com> - 2.11.1-10
7841325
- Perl 5.28 rebuild
7841325
7ae4cf2
* Thu Mar 08 2018 jsmith <jsmith.fedora@gmail.com> - 2.11.1-9
7ae4cf2
- Remove call to ldconfig_scriptlets macro, as it conflicts with %%post
7ae4cf2
916a946
* Wed Feb 14 2018 Jared Smith <jsmith@fedoraproject.org> - 2.11.1-8
916a946
- Replace post and postun scriptlets with ldconfig_scriptlets macro invocation
916a946
275762c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-7
275762c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
275762c
653aff3
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-6
653aff3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
653aff3
1308716
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-5
1308716
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1308716
Jared K. Smith 9c28112
* Fri Jun 16 2017 Jared Smith <jsmith@fedoraproject.org> - 2.11.1-4
Jared K. Smith 9c28112
- Bump revision for new version of Perl
Jared K. Smith 9c28112
Jared K. Smith d22517c
* Wed May 24 2017 Jared Smith <jsmith@fedoraproject.org> - 2.11.1-3
Jared K. Smith d22517c
- Add missing Requires and BuildRequires
Jared K. Smith d22517c
Jared K. Smith d22517c
* Wed May 24 2017 Jared Smith <jsmith@fedoraproject.org> - 2.11.1-2
Jared K. Smith d22517c
- Fix dependencies
Jared K. Smith d22517c
- Replace defines with globals
Jared K. Smith d22517c
- Fix incorrect FSF addresses with a little sed magic
Jared K. Smith d22517c
Jared K. Smith d22517c
* Wed Mar 30 2016 Jared Smith <jsmith@fedoraproject.org> - 2.11.1-1
Jared K. Smith d22517c
- Update to upstream 2.11.1 release
Jared K. Smith d22517c
- Add systemd support
Jared K. Smith d22517c
c41698c
* Wed Mar 30 2016 Petr Pisar <ppisar@redhat.com> - 2.10.0-8
c41698c
- Fix GCC warning for unused variables (bug #1306634)
ebb526d
- Modernize spec file
c41698c
40c742e
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.0-7
40c742e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
40c742e
79bac2e
* Thu Jul 23 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.10.0-6
79bac2e
- Move rules file to %%{_udevrulesdir} (#1229955)
79bac2e
f858ded
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10.0-5
f858ded
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f858ded
b1e0d4c
* Sun Jun 14 2015 Bruno Wolff III - 2.10.0-4
b1e0d4c
- Fix FTBFS from gcc error due to bad use of logical negation operator
b1e0d4c
- This should also take care of the rebuild needed for perl
b1e0d4c
84eb675
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.10.0-3
84eb675
- Perl 5.22 rebuild
84eb675
d9fae52
* Fri Nov 07 2014 Petr Pisar <ppisar@redhat.com> - 2.10.0-2
d9fae52
- Build-require perl-podlators for pod2man tool (bug #1161158)
d9fae52
8de2347
* Fri Oct 24 2014 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.10.0-1
8de2347
- Update to 2.10.0
8de2347
7b83dc2
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.7.0-6
7b83dc2
- Perl 5.20 rebuild
7b83dc2
facdcdd
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.0-5
facdcdd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
facdcdd
fb3112e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.0-4
fb3112e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
fb3112e
ec22501
* Sat Aug 17 2013 Bruno Wolff III <bruno@wolff.to> - 2.7.0-3
ec22501
- blacklist wcopenpci so that it doesn't get loaded until the right time
ec22501
b897f75
* Sat Aug 17 2013 Bruno Wolff III <bruno@wolff.to> - 2.7.0-2
b897f75
- Include user.h as dahdi_config.h to avoid issue noted in bug 783890
b897f75
304332c
* Sat Aug 17 2013 Bruno Wolff III <bruno@wolff.to> - 2.7.0-1
304332c
- Move to current upstream release
304332c
- Changlog is available at http://git.asterisk.org/gitweb/?p=dahdi/tools.git;a=shortlog
304332c
3a90d32
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-9
3a90d32
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3a90d32
9c2acb3
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 2.4.1-8
9c2acb3
- Perl 5.18 rebuild
9c2acb3
16b0195
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-7
16b0195
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
16b0195
d636434
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-6
d636434
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d636434
645e79a
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 2.4.1-5
645e79a
- Perl 5.16 rebuild
645e79a
9d730ad
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.1-4
9d730ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9d730ad
005ddac
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.4.1-3
005ddac
- Perl mass rebuild
005ddac
4c39ee0
* Fri Jun 10 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.4.1-2
4c39ee0
- Perl 5.14 mass rebuild
4c39ee0
4f00f06
* Fri Mar  4 2011  <jeff@ocjtech.us> - 2.4.1-1
4f00f06
- The Asterisk Development Team is pleased to announce the release of
4f00f06
- DAHDI-Linux and DAHDI-Tools version 2.4.1.
4f00f06
-
4f00f06
- DAHDI-Linux 2.4.1, DAHDI-Tools 2.4.1, and DAHDI-Linux-Complete 2.4.1+2.4.1 are
4f00f06
- available for immediate download at:
4f00f06
- http://downloads.asterisk.org/pub/telephony/dahdi-linux
4f00f06
- http://downloads.asterisk.org/pub/telephony/dahdi-tools
4f00f06
- http://downloads.asterisk.org/pub/telephony/dahdi-linux-complete
4f00f06
-
4f00f06
- 2.4.1 is a maintenance release of the DAHDI drivers and tools packages. Some of
4f00f06
- the more notable changes are:
4f00f06
-
4f00f06
- * Support for compilation against kernel versions from 2.6.9 up to and including
4f00f06
-  2.6.38-rc6.
4f00f06
-
4f00f06
- * wct4xxp: PCI-express cards go through an extended reset at start by default.
4f00f06
-
4f00f06
- * wcte12xp, wctdm24xxp: Disable read-line multiple PCI command, which increases
4f00f06
-  compatibility in some systems.
4f00f06
-
4f00f06
- * xpp: Fixes init error for PRI devices with < 4 ports.
4f00f06
-
4f00f06
- * tonezone: Add Macao, China to tone zone data.
4f00f06
-
4f00f06
- * dahdi_genconf: Don't generate configurations that use channel 16 on E1 CAS.
4f00f06
-
4f00f06
- For a full list of changes in these releases, please see the ChangeLogs at
4f00f06
- http://svn.asterisk.org/svn/dahdi/linux/tags/2.4.1/ChangeLog and
4f00f06
- http://svn.asterisk.org/svn/dahdi/tools/tags/2.4.1/ChangeLog
4f00f06
-
4f00f06
- Issues found in these release candidates can be reported in the DAHDI-linux or
4f00f06
- DAHDI-tools project at https://issues.asterisk.org
4f00f06
4b7bf77
* Wed Feb  9 2011 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.4.0-2
4b7bf77
- Make library requirements architecture specific.
4b7bf77
42e399d
* Wed Feb  9 2011 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.4.0-1
42e399d
-
42e399d
- In addition to several bug fixes, the most significant changes from the
42e399d
- 2.3.0 release are:
42e399d
-
42e399d
- General DAHDI Changes:
42e399d
-
42e399d
- * Added DAHDI_MAINT_ALARM_SIM maintenance mode for drivers that
42e399d
-  support alarm simulation (wct4xxp).  This is only used by
42e399d
-  dahdi_maint and doesn't change the ABI.
42e399d
-
42e399d
- * Span callbacks are moved out of the dahdi_span structure potentially
42e399d
-  saving memory when a single driver implements multiple spans.
42e399d
-
42e399d
- Changes to dahdi-tools:
42e399d
-
42e399d
- * dahdi_maint: Added support for simulating alarm conditions.
42e399d
-
42e399d
- * dahdi_scan: Report more detailed alarm information.
42e399d
-
42e399d
- * xpp_fxloader:
42e399d
-  - Load firmware in the background
42e399d
-  - Support 1163 twinstar devices
42e399d
-  - A delay loop for older kernels (e.g. 2.6.18)
42e399d
-
42e399d
- * astribank_is_starting does not depend on libusb.
42e399d
-
42e399d
- * Allow using CONNECTOR/LABEL in genconf_parameters for pri_termtype
42e399d
-
42e399d
- For a full list of changes in these releases, please see the ChangeLogs at
42e399d
- http://svn.asterisk.org/svn/dahdi/linux/tags/2.4.0/ChangeLog and
42e399d
- http://svn.asterisk.org/svn/dahdi/tools/tags/2.4.0/ChangeLog
42e399d
62e45fd
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
62e45fd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
62e45fd
7e9f440
* Sat Aug  7 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.3.0-1
7e9f440
- Update to 2.3.0
7e9f440
7ce2fa2
* Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.1.0.2-10
7ce2fa2
- Mass rebuild with perl-5.12.0
7ce2fa2
a34d1c5
* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 2.1.0.2-9
a34d1c5
- rebuild against perl 5.10.1
a34d1c5
efbe2fc
* Wed Aug 19 2009 Itamar Reis Peixoto <itamar@ispbrasil.com.br> - 2.1.0.2-8
efbe2fc
- fix bz 495453 (/etc/modprobe.d/dahdi.blacklist and /etc/modprobe.d/dahdi doesn't end with.conf)
efbe2fc
9687af6
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0.2-7
9687af6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9687af6
fc53e7d
* Fri May  8 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 2.1.0.2-6
fc53e7d
- Let dahdi-tools conflict with zaptel-utils (#472357).
fc53e7d
2ee2de4
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0.2-5
2ee2de4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2ee2de4
4d75711
* Sun Jan  4 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.1.0.2-4
4d75711
- Update to latest.
4d75711
69247a7
* Thu Nov 20 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.0-4
69247a7
- Fix zaptel-lib(s) conflicts
69247a7
01bb655
* Sat Oct 25 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.0-3
01bb655
- Add conflicts/requires to help make sure that we get dahdi-tools-libs and not zaptel-libs
01bb655
8bc0475
* Fri Oct 10 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.0-2
8bc0475
- Don't package sethdlc even if it gets built.
8bc0475
dfba6cb
* Thu Oct  9 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.0-1
dfba6cb
- Cleanups suggested by reviewers
dfba6cb
dfba6cb
* Fri Oct  3 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.0-0.4
dfba6cb
- Update to final release.
dfba6cb
dfba6cb
* Wed Sep 10 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.0-0.3.rc2
dfba6cb
- Install dahdi/user.h header
dfba6cb
dfba6cb
* Mon Sep  8 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.0-0.2.rc2
dfba6cb
- Update dahdi-linux to 2.0.0rc4
dfba6cb
dfba6cb
* Fri Sep  5 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.0.0-0.1.rc2
dfba6cb
- First version for Fedora