-
Notifications
You must be signed in to change notification settings - Fork 24
/
digitemp.spec
106 lines (91 loc) · 3.61 KB
/
digitemp.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
%global with_libusb 1
Summary: Dallas Semiconductor 1-wire device reading console application
Name: digitemp
Version: 3.7.2
Release: 1%{?dist}
License: GPLv2+
Group: Applications/System
URL: http://www.digitemp.com/
Source0: https://github.com/bcl/%{name}/archive/v%{version}.tar.gz
%if %{with_libusb}
BuildRequires: libusb-devel
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
DigiTemp is a simple to use console application for reading values from
Dallas Semiconductor 1-wire devices. Its main use is for reading temperature
sensors, but it also reads counters and understands the 1-wire hubs with
devices on different branches of the network. DigiTemp now supports the
following 1-wire temperature sensors: DS18S20 (and DS1820), DS18B20, DS1822,
the DS2438 Smart Battery Monitor, DS2422 and DS2423 Counters, DS2409
MicroLAN Coupler (used in 1-wire hubs) and the AAG TAI-8540 humidity sensor.
%prep
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS -fPIE -DPIC"; export CFLAGS
make ds9097 %{?_smp_mflags}
make clean
make ds9097u %{?_smp_mflags}
%if %{with_libusb}
make clean
make ds2490 %{?_smp_mflags}
%endif
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
install -m 755 digitemp_DS9097 digitemp_DS9097U $RPM_BUILD_ROOT%{_bindir}
%if %{with_libusb}
install -m 755 digitemp_DS2490 $RPM_BUILD_ROOT%{_bindir}
%endif
install -p -m 644 %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1/%{name}.1
# Convert everything to UTF-8
iconv -f iso-8859-1 -t utf-8 -o ChangeLog.utf8 ChangeLog
touch -c -r ChangeLog ChangeLog.utf8; mv -f ChangeLog.utf8 ChangeLog
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc ChangeLog COPYING COPYRIGHT CREDITS FAQ README TODO
%doc dthowto.txt DS9097_Schematic.gif
%{_bindir}/%{name}*
%{_mandir}/man1/%{name}.*
%changelog
* Mon Nov 19 2018 Brian C. Lane <[email protected]> - 3.7.2-1
- Fix digitemp.spec Version in bumpver target (bcl)
- Make sure strncpy uses are null-terminated (bcl)
- Add a check for ROM number vs. SENSORS count (bcl)
- Log the scratchpad diagnostics (bcl)
- Bump Copyright Year to 2018 (bcl)
- Fix strftime use of log_file (bcl)
- Add strftime formating to logfile name (peje)
- Clean up the start_time switch statement usage (bcl)
- Add log_type 4 & 5 (peje)
- Check for bad Get_Temperature result (bcl)
- Fix the return value of Get_Temperature in ad26.c (bcl)
- Display DS2438 temperature even if humidity calculation fails. (bcl)
- Always include types.h and time.h (bcl)
- Bump copyright year to 2016 (bcl)
- Add bumpver target (bcl)
- Spelling corrections (ryan)
* Sat Dec 12 2015 Brian C. Lane <[email protected]> 3.7.1-1
- Update version to 3.7.1
- Fix version in digitemp.h
* Sat Dec 12 2015 Brian C. Lane <[email protected]> 3.7.0-1
- Updating to v3.7.0
- New upstream location at GitHub
* Thu Aug 28 2008 Brian C. Lane <[email protected]> 3.6.0-1
- Releasing new version with these changes:
- Updated to the .spec file from Fedora9
- DS2490 now suppresses the 'Found usb ...' output
- Support for compiling under DARWIN
- Current reading added to DS2438
- DS28EA00 support added
- Tabbed output of 0.00 on CRC errors with log type -o2 or -o3
- New manpage from Debian digitemp maintainer
* Sun Feb 10 2008 Robert Scheck <[email protected]> 3.5.0-3
- Rebuilt against gcc 4.3
* Tue Aug 28 2007 Robert Scheck <[email protected]> 3.5.0-2
- Updated the license tag according to the guidelines
* Sun Jan 07 2007 Robert Scheck <[email protected]> 3.5.0-1
- Upgrade to 3.5.0
- Initial spec file for Fedora and Red Hat Enterprise Linux