2010-03-03 09:33:09 +00:00
|
|
|
%define source_name usb-modeswitch
|
|
|
|
|
2008-07-01 18:44:47 +00:00
|
|
|
Name: usb_modeswitch
|
2014-04-16 14:12:03 +00:00
|
|
|
Version: 2.1.1
|
|
|
|
Release: 1%{?dist}
|
2010-12-30 22:19:51 +00:00
|
|
|
Summary: USB Modeswitch gets mobile broadband cards in operational mode
|
2008-07-01 18:44:47 +00:00
|
|
|
Summary(de): USB Modeswitch aktiviert UMTS-Karten
|
|
|
|
Group: Applications/System
|
|
|
|
License: GPLv2+
|
|
|
|
URL: http://www.draisberghof.de/usb_modeswitch/
|
2014-01-06 18:09:24 +00:00
|
|
|
|
2011-03-27 23:48:35 +00:00
|
|
|
Source0: http://www.draisberghof.de/%{name}/%{source_name}-%{version}.tar.bz2
|
2013-07-26 23:30:39 +00:00
|
|
|
Source1: http://www.draisberghof.de/usb_modeswitch/device_reference.txt
|
2014-01-06 18:09:24 +00:00
|
|
|
|
2014-01-28 22:51:23 +00:00
|
|
|
Patch0: rhbz948451-fix-manual-pages.patch
|
|
|
|
|
2014-01-06 18:09:24 +00:00
|
|
|
BuildRequires: libusbx-devel
|
|
|
|
BuildRequires: jimtcl-devel
|
|
|
|
BuildRequires: systemd-devel
|
2012-11-13 10:06:18 +00:00
|
|
|
Requires: usb_modeswitch-data >= 20121109
|
2008-07-01 18:44:47 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
USB Modeswitch brings up your datacard into operational mode. When plugged
|
|
|
|
in they identify themselves as cdrom and present some non-Linux compatible
|
|
|
|
installation files. This tool deactivates this cdrom-devices and enables
|
|
|
|
the real communication device. It supports most devices built and
|
|
|
|
sold by Huawei, T-Mobile, Vodafone, Option, ZTE, Novatel.
|
|
|
|
|
|
|
|
%description -l de
|
|
|
|
USB Modeswitch deaktiviert die CDROM-Emulation einiger UMTS-Karten.
|
|
|
|
Dadurch erkennt Linux die Datenkarte und kann damit Internet-
|
|
|
|
Verbindungen aufbauen. Die gängigen Karten von Huawei, T-Mobile,
|
|
|
|
Vodafone, Option, ZTE und Novatell werden unterstützt.
|
|
|
|
|
2010-03-03 09:33:09 +00:00
|
|
|
|
2008-07-01 18:44:47 +00:00
|
|
|
%prep
|
2010-03-03 09:33:09 +00:00
|
|
|
%setup -q -n %{source_name}-%{version}
|
2014-01-06 18:09:24 +00:00
|
|
|
|
2014-04-16 14:12:03 +00:00
|
|
|
#%patch0 -p1 -b .manpage
|
2014-01-28 22:51:23 +00:00
|
|
|
|
2013-08-20 09:36:45 +00:00
|
|
|
cp -f %{SOURCE1} device_reference.txt
|
2008-07-01 18:44:47 +00:00
|
|
|
|
2011-03-27 23:48:35 +00:00
|
|
|
# convert device_reference.txt encoding to UTF-8
|
|
|
|
iconv --from=ISO-8859-1 --to=UTF-8 device_reference.txt > device_reference.txt.new && \
|
|
|
|
touch -r device_reference.txt device_reference.txt.new && \
|
2013-08-26 15:37:20 +00:00
|
|
|
chmod 644 device_reference.txt && \
|
2011-03-27 23:48:35 +00:00
|
|
|
mv device_reference.txt.new device_reference.txt
|
|
|
|
|
2008-07-01 18:44:47 +00:00
|
|
|
%build
|
2014-01-06 18:09:24 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS" make %{?_smp_mflags}
|
2010-03-03 09:33:09 +00:00
|
|
|
|
2008-07-01 18:44:47 +00:00
|
|
|
|
|
|
|
%install
|
2013-08-26 15:37:20 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/udev
|
2010-04-23 07:21:35 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sbindir}
|
2010-03-03 09:33:09 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
|
2010-04-21 06:02:09 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
|
2010-03-03 09:33:09 +00:00
|
|
|
|
2010-04-23 07:21:35 +00:00
|
|
|
install -p -m 755 usb_modeswitch $RPM_BUILD_ROOT%{_sbindir}/
|
2012-04-24 19:31:27 +00:00
|
|
|
install -p -m 755 usb_modeswitch_dispatcher $RPM_BUILD_ROOT%{_sbindir}/usb_modeswitch_dispatcher
|
2008-07-01 18:44:47 +00:00
|
|
|
install -p -m 644 usb_modeswitch.conf $RPM_BUILD_ROOT%{_sysconfdir}/
|
2010-04-21 06:02:09 +00:00
|
|
|
gzip -9c usb_modeswitch.1 > usb_modeswitch.1.gz && install -m 644 usb_modeswitch.1.gz $RPM_BUILD_ROOT%{_datadir}/man/man1
|
2013-08-20 09:36:45 +00:00
|
|
|
gzip -9c usb_modeswitch_dispatcher.1 > usb_modeswitch_dispatcher.1.gz && install -m 644 usb_modeswitch_dispatcher.1.gz $RPM_BUILD_ROOT%{_datadir}/man/man1
|
2013-08-26 15:37:20 +00:00
|
|
|
install -p -m 755 usb_modeswitch.sh $RPM_BUILD_ROOT%{_prefix}/lib/udev/usb_modeswitch
|
2008-07-01 18:44:47 +00:00
|
|
|
|
2011-03-27 23:48:35 +00:00
|
|
|
|
2008-07-01 18:44:47 +00:00
|
|
|
%files
|
2010-04-23 07:21:35 +00:00
|
|
|
%{_sbindir}/usb_modeswitch
|
2012-01-25 07:26:03 +00:00
|
|
|
%{_sbindir}/usb_modeswitch_dispatcher
|
2010-03-03 09:33:09 +00:00
|
|
|
%{_mandir}/man1/usb_modeswitch.1.gz
|
2013-08-20 09:36:45 +00:00
|
|
|
%{_mandir}/man1/usb_modeswitch_dispatcher.1.gz
|
2013-08-26 15:37:20 +00:00
|
|
|
%{_prefix}/lib/udev/usb_modeswitch
|
2008-07-01 18:44:47 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/usb_modeswitch.conf
|
2010-06-22 03:39:39 +00:00
|
|
|
%doc COPYING README ChangeLog device_reference.txt
|
2010-03-03 09:33:09 +00:00
|
|
|
|
2008-07-01 18:44:47 +00:00
|
|
|
|
|
|
|
%changelog
|
2014-04-16 14:12:03 +00:00
|
|
|
* Wed Apr 16 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.1.1-1
|
|
|
|
- Update to 2.1.1
|
|
|
|
|
2014-01-28 22:51:23 +00:00
|
|
|
* Tue Jan 28 2014 Dan Williams <dcbw@redhat.com> - 2.0.1-2
|
|
|
|
- Resurrect manpage patch
|
|
|
|
|
2014-01-06 18:09:24 +00:00
|
|
|
* Mon Jan 6 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.0.1-1
|
|
|
|
- Update to 2.0.1 and build against libusbx (RHBZ 994974)
|
|
|
|
- Use distro jimtcl (RHBZ 967314)
|
|
|
|
- Fix build on aarch64
|
|
|
|
- Cleanup and modernise spec
|
|
|
|
|
2013-08-28 13:22:53 +00:00
|
|
|
* Wed Aug 28 2013 Thomas Haller <thaller@redhat.com> 1.2.7-3
|
2013-08-20 09:36:45 +00:00
|
|
|
- Add manual page for usb_modeswitch_dispatcher and fix errors in
|
|
|
|
manual page of usb_modeswitch (rhbz#948451, rhbz#884203).
|
|
|
|
|
2013-08-26 15:41:33 +00:00
|
|
|
* Mon Aug 26 2013 Dan Williams <dcbw@redhat.com> - 1.2.7-2
|
2013-08-26 15:37:20 +00:00
|
|
|
- Fix udev helper path
|
|
|
|
|
2013-08-16 17:15:00 +00:00
|
|
|
* Fri Aug 16 2013 Dan Williams <dcbw@redhat.com> - 1.2.7-1
|
|
|
|
- New upstream release
|
|
|
|
|
2013-07-26 23:26:22 +00:00
|
|
|
* Fri Jul 26 2013 Dan Williams <dcbw@redhat.com> - 1.2.6-2
|
|
|
|
- Fix udev directories
|
|
|
|
|
2013-06-12 06:20:54 +00:00
|
|
|
* Wed Jun 12 2013 Huzaifa Sidhpurwala <huzaifas@redhat.com> - 1.2.6
|
|
|
|
- New upstream release.
|
|
|
|
|
2013-02-15 02:33:22 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-13 10:06:18 +00:00
|
|
|
* Tue Nov 13 2012 Huzaifa Sidhpurwala <huzaifas@redhat.com> - 1.2.5-1
|
|
|
|
- New upstream release. Resolves rhbz#875832
|
|
|
|
|
2012-08-24 06:54:57 +00:00
|
|
|
* Fri Aug 24 2012 Huzaifa Sidhpurwala <huzaifas@redhat.com> - 1.2.4-1
|
|
|
|
- New upstream release. Resolves rhbz#785539
|
|
|
|
|
2012-07-22 02:08:30 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-24 19:31:27 +00:00
|
|
|
* Tue Apr 24 2012 Dan Williams <dcbw@redhat.com> 1.2.3-1
|
|
|
|
- Update to new upstream release
|
|
|
|
- Build TCL tool as a static binary to remove dependency on TCL itself rhbz#760839
|
|
|
|
|
2012-01-25 07:26:03 +00:00
|
|
|
* Wed Jan 25 2012 Huzaifa Sidhpurwala <huzaifas@redhat.com> 1.2.2-2
|
|
|
|
- Add usb_modeswitch.sh udev script and move Tcl dispatcher script to sbindir,
|
|
|
|
resolves rhbz#782614, patch from Dominic Cleal
|
|
|
|
- Fix bus/device-based search, from deb#656248
|
|
|
|
|
2012-04-24 19:31:27 +00:00
|
|
|
* Fri Jan 20 2012 Huzaifa Sidhpurwala <huzaifas@redhat.com> 1.2.2
|
2012-01-20 14:37:25 +00:00
|
|
|
- New upstream version 1.2.2
|
|
|
|
|
2012-01-06 08:35:32 +00:00
|
|
|
* Fri Jan 06 2012 Huzaifa Sidhpurwala <huzaifas@redhat.com> 1.2.1-1
|
|
|
|
- New upstream version 1.2.1
|
|
|
|
|
2011-10-25 04:55:13 +00:00
|
|
|
* Tue Oct 25 2011 Huzaifa Sidhpurwala <huzaifas@redhat.com> 1.2.0-1
|
|
|
|
- New upstream
|
2012-04-24 19:31:27 +00:00
|
|
|
- use device_reference.txt from upstream
|
2011-08-07 17:37:48 +00:00
|
|
|
|
2011-03-27 23:48:35 +00:00
|
|
|
* Mon Mar 28 2011 Rahul Sundaram <sundaram@fedoraproject.org> - 1.1.7-1
|
|
|
|
- New upstream release. Resolves rhbz#625004
|
|
|
|
- Update spec to match current guidelines
|
|
|
|
- Fix relevant rpmlint errors and warnings
|
|
|
|
|
2011-02-08 00:40:11 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-30 22:19:51 +00:00
|
|
|
* Thu Dec 30 2010 Dan Williams <dcbw@redhat.com> 1.1.6-1
|
|
|
|
- New upstream version
|