123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617 |
- %global _hardened_build 1
- Name: gpsd
- Version: @VERSION@
- Release: 0%{?dist}
- Summary: Service daemon for mediating access to a GPS
- License: BSD
- URL: @WEBSITE@
- Source0: @DOWNLOAD@%{name}-%{version}.tar.xz
- BuildRequires: dbus-devel dbus-glib-devel ncurses-devel xmlto python3-devel
- BuildRequires: python3-scons desktop-file-utils bluez-libs-devel /usr/bin/c++
- BuildRequires: pps-tools-devel systemd
- BuildRequires: qt-devel
- %ifnarch s390 s390x
- BuildRequires: libusb1-devel
- %endif
- Requires: %{name}-libs%{?_isa} = %{version}-%{release}
- Requires: udev
- %{?systemd_requires}
- %description
- gpsd is a service daemon that mediates access to a GPS sensor
- connected to the host computer by serial or USB interface, making its
- data on the location/course/velocity of the sensor available to be
- queried on TCP port 2947 of the host computer. With gpsd, multiple
- GPS client applications (such as navigational and wardriving software)
- can share access to a GPS without contention or loss of data. Also,
- gpsd responds to queries with a format that is substantially easier to
- parse than NMEA 0183.
- %package libs
- Summary: Client libraries in C for talking to a running gpsd or GPS
- %description libs
- This package contains the gpsd libraries that manage access
- to a GPS for applications.
- %package -n python3-%{name}
- Summary: Python libraries and modules for use with gpsd
- Requires: %{name}-libs%{?_isa} = %{version}-%{release}
- %{?python_provide:%python_provide python3-%{name}}
- %description -n python3-%{name}
- This package contains the python3 modules that manage access to a GPS for
- applications, and commonly useful python applications for use with gpsd.
- %package devel
- Summary: Development files for the gpsd library
- Requires: %{name}-libs%{?_isa} = %{version}-%{release}
- %description devel
- This package provides C header files for the gpsd shared libraries that
- manage access to a GPS for applications
- %package qt
- Summary: C++/Qt5 bindings for the gpsd library
- Requires: %{name}-libs%{?_isa} = %{version}-%{release}
- %description qt
- This package provide C++ and Qt bindings for use with the libgps library from
- gpsd.
- %package qt-devel
- Summary: Development files for the C++/Qt5 bindings for the gpsd library
- Requires: %{name}-libs%{?_isa} = %{version}-%{release}
- Requires: %{name}-qt%{?_isa} = %{version}-%{release}
- %description qt-devel
- This package provides the development files for the C++ and Qt bindings for use
- with the libgps library from gpsd.
- %package clients
- Summary: Clients for gpsd
- Requires: python3-%{name} = %{version}-%{release}
- Requires: python3-pyserial
- Requires: %{name}-libs%{?_isa} = %{version}-%{release}
- %description clients
- xgps is a simple test client for gpsd with an X interface. It displays
- current GPS position/time/velocity information and (for GPSes that
- support the feature) the locations of accessible satellites.
- xgpsspeed is a speedometer that uses position information from the GPS.
- It accepts an -h option and optional argument as for gps, or a -v option
- to dump the package version and exit. Additionally, it accepts -rv
- (reverse video) and -nc (needle color) options.
- cgps resembles xgps, but without the pictorial satellite display. It
- can run on a serial terminal or terminal emulator.
- gpsfake can feed data from files to simulate data coming from many
- different gps devices.
- %prep
- %setup -q
- # set gpsd revision string to include package revision
- sed -i 's|^revision=.*REVISION.*$|revision='\'\
- '#define REVISION "%{version}-%{release}'\"\'\| SConstruct
- # fix systemd path
- sed -i 's|systemd_dir =.*|systemd_dir = '\'%{_unitdir}\''|' SConstruct
- # don't try reloading systemd when installing in the build root
- sed -i 's|systemctl daemon-reload|true|' SConstruct
- # don't set RPATH
- sed -i 's|env.Prepend.*RPATH.*|pass #\0|' SConstruct
- %build
- export CCFLAGS="%{optflags}"
- export LINKFLAGS="%{__global_ldflags}"
- # breaks with %{_smp_mflags}
- scons \
- dbus_export=yes \
- systemd=yes \
- libQgpsmm=yes \
- debug=yes \
- leapfetch=no \
- prefix=%{_prefix} \
- sysconfdif=%{_sysconfdir} \
- bindir=%{_bindir} \
- includedir=%{_includedir} \
- libdir=%{_libdir} \
- sbindir=%{_sbindir} \
- mandir=%{_mandir} \
- docdir=%{_docdir} \
- icondir=%{_datadir}/gpsd \
- python_shebang="/usr/bin/python3" \
- pkgconfigdir=%{_libdir}/pkgconfig \
- udevdir=$(dirname %{_udevrulesdir}) \
- target_python=python3 \
- python_libdir=%{python3_sitearch} \
- build packaging
- %install
- # avoid rebuilding
- export CCFLAGS="%{optflags}"
- export LINKFLAGS="%{__global_ldflags}"
- DESTDIR=%{buildroot} scons install systemd_install udev-install
- # use the old name for udev rules
- mv %{buildroot}%{_udevrulesdir}/{25,99}-gpsd.rules
- %{__install} -d -m 0755 %{buildroot}%{_sysconfdir}/sysconfig
- %{__install} -p -m 0644 packaging/rpm/gpsd.sysconfig \
- %{buildroot}%{_sysconfdir}/sysconfig/gpsd
- # Install the .desktop files
- desktop-file-install \
- --dir %{buildroot}%{_datadir}/applications \
- packaging/X11/xgps.desktop
- desktop-file-install \
- --dir %{buildroot}%{_datadir}/applications \
- packaging/X11/xgpsspeed.desktop
- # Missed in scons install
- %{__install} -p -m 0755 gpsinit %{buildroot}%{_sbindir}
- %post
- %systemd_post gpsd.service gpsd.socket
- %preun
- %systemd_preun gpsd.service gpsd.socket
- %postun
- # Don't restart the service
- %systemd_postun gpsd.service gpsd.socket
- %ldconfig_scriptlets libs
- %ldconfig_scriptlets qt
- %files
- %doc INSTALL.adoc
- %doc /usr/share/gpsd/doc/AUTHORS
- %doc /usr/share/gpsd/doc/COPYING
- %doc /usr/share/gpsd/doc/NEWS
- %doc /usr/share/gpsd/doc/README.adoc
- %doc /usr/share/gpsd/doc/build.adoc
- %config(noreplace) %{_sysconfdir}/sysconfig/%{name}
- %{_sbindir}/gpsd
- %{_sbindir}/gpsdctl
- %{_sbindir}/gpsinit
- %{_bindir}/gpsmon
- %{_bindir}/gpsctl
- %{_bindir}/ntpshmmon
- %{_bindir}/ppscheck
- %{_unitdir}/gpsd.service
- %{_unitdir}/gpsd.socket
- %{_unitdir}/gpsdctl@.service
- %{_udevrulesdir}/*.rules
- %{_mandir}/man8/gpsd.8*
- %{_mandir}/man8/gpsdctl.8*
- %{_mandir}/man8/gpsinit.8*
- %{_mandir}/man8/ppscheck.8*
- %{_mandir}/man1/gpsmon.1*
- %{_mandir}/man1/gpsctl.1*
- %{_mandir}/man1/ntpshmmon.1*
- %files libs
- %{_libdir}/libgps.so.27*
- %{_libdir}/libgpsdpacket.so*
- %files -n python3-%{name}
- %{_bindir}/gpsprof
- %{_mandir}/man1/gpsprof.1*
- %{python3_sitearch}/gps*
- %exclude %{python3_sitearch}/gps/fake*
- %exclude %{python3_sitearch}/gps/__pycache__/fake*
- %files devel
- %doc TODO
- %{_libdir}/libgps.so
- %{_libdir}/pkgconfig/libgps.pc
- %{_includedir}/gps.h
- %{_includedir}/libgpsmm.h
- %{_mandir}/man3/libgps.3*
- %{_mandir}/man3/libgpsmm.3*
- %{_mandir}/man5/gpsd_json.5*
- %files qt
- %{_libdir}/libQgpsmm.so*
- %files qt-devel
- %{_libdir}/libQgpsmm.prl
- %{_libdir}/pkgconfig/Qgpsmm.pc
- %{_mandir}/man3/libQgpsmm.3*
- %files clients
- %{_bindir}/cgps
- %{_bindir}/gegps
- %{_bindir}/gps2udp
- %{_bindir}/gpscat
- %{_bindir}/gpscsv
- %{_bindir}/gpsdecode
- %{_bindir}/gpspipe
- %{_bindir}/gpsrinex
- %{_bindir}/gpxlogger
- %{_bindir}/lcdgps
- %{_bindir}/xgps
- %{_bindir}/xgpsspeed
- %{_bindir}/gpsfake
- %{_bindir}/ubxtool
- %{_bindir}/zerk
- %{_mandir}/man1/gegps.1*
- %{_mandir}/man1/gps.1*
- %{_mandir}/man1/gps2udp.1*
- %{_mandir}/man1/gpsdecode.1*
- %{_mandir}/man1/gpspipe.1*
- %{_mandir}/man1/gpsrinex.1*
- %{_mandir}/man1/gpxlogger.1*
- %{_mandir}/man1/lcdgps.1*
- %{_mandir}/man1/xgps.1*
- %{_mandir}/man1/xgpsspeed.1*
- %{_mandir}/man1/cgps.1*
- %{_mandir}/man1/gpscat.1*
- %{_mandir}/man1/gpscsv.1*
- %{_mandir}/man1/gpsfake.1*
- %{_mandir}/man1/ubxtool.1*
- %{_mandir}/man1/zerk.1*
- %{_datadir}/applications/*.desktop
- %dir %{_datadir}/gpsd
- %{_datadir}/gpsd/gpsd-logo.png
- %{python3_sitearch}/gps/fake*
- %{python3_sitearch}/gps/__pycache__/fake*
- %changelog
- * Thu Aug 06 2020 James Browning <jamesb.fe80@gmail.com> - 3.21-0
- - Rebuilt for upstream inclusion
- * Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.19-4
- - Rebuilt for Python 3.8.0rc1 (#1748018)
- * Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.19-3
- - Rebuilt for Python 3.8
- * Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.19-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
- * Tue Jul 02 2019 Miroslav Lichvar <mlichvar@redhat.com> - 3.19-1
- - update to 3.19
- - fix systemd scriptlet (#1716467)
- * Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.18.1-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
- * Wed Oct 24 2018 Miroslav Lichvar <mlichvar@redhat.com> - 3.18.1-1
- - update to 3.18.1
- * Tue Oct 09 2018 Miroslav Lichvar <mlichvar@redhat.com> - 3.18-3
- - fix paths in systemd unit files
- * Tue Oct 09 2018 Miroslav Lichvar <mlichvar@redhat.com> - 3.18-2
- - use python3 scons and fix build requirements for xgps
- * Thu Oct 04 2018 Miroslav Lichvar <mlichvar@redhat.com> - 3.18-1
- - update to 3.18
- - drop python2 subpackage (#1633793)
- * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.17-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
- * Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.17-4
- - Rebuilt for Python 3.7
- * Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.17-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
- * Tue Jan 30 2018 Miroslav Lichvar <mlichvar@redhat.com> - 3.17-2
- - use macro for systemd scriptlet dependencies
- - use macro for ldconfig scriptlets
- * Fri Sep 08 2017 Troy Curtis, Jr <troycurtisjr@gmail.com> - 3.17-1
- - Update to 3.17
- - Build both python2 and python3 files and install into separate subpackages
- - Add Qt5 subpackage
- * Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.16-6
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
- * Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.16-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
- * Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.16-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
- * Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.16-3
- - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
- * Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.16-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
- * Mon Jan 11 2016 Miroslav Lichvar <mlichvar@redhat.com> - 3.16-1
- - update to 3.16
- * Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.15-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
- * Fri Jun 05 2015 Miroslav Lichvar <mlichvar@redhat.com> - 3.15-1
- - update to 3.15
- * Tue Apr 21 2015 Miroslav Lichvar <mlichvar@redhat.com> - 3.14-1
- - update to 3.14
- * Fri Mar 06 2015 Rex Dieter <rdieter@fedoraproject.org> 3.13-2
- - track library sonames and api files closer, so bumps aren't a surprise
- * Mon Mar 02 2015 Miroslav Lichvar <mlichvar@redhat.com> - 3.13-1
- - update to 3.13
- * Mon Aug 25 2014 Miroslav Lichvar <mlichvar@redhat.com> - 3.11-1
- - update to 3.11
- * Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-6.20140524gitd6b65b
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
- * Wed Jul 02 2014 Miroslav Lichvar <mlichvar@redhat.com> - 3.10-5.20140524gitd6b65b
- - update to 20140524gitd6b65b
- - fix PPS with large offsets
- - set gpsd revision string to include package revision
- * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4.20140127gitf2753b
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
- * Thu Feb 20 2014 Miroslav Lichvar <mlichvar@redhat.com> - 3.10-3.20140127gitf2753b
- - update to 20140127gitf2753b
- - replace udev hotplug script with gpsdctl service (#909563)
- - add dependency on gpsd.socket to gpsd.service
- - reenable dbus export
- * Fri Dec 20 2013 Miroslav Lichvar <mlichvar@redhat.com> - 3.10-2
- - use systemd socket activation (#909563)
- - don't use -n in default gpsd service options
- - update gpsd service file
- * Mon Nov 25 2013 Miroslav Lichvar <mlichvar@redhat.com> - 3.10-1
- - update to 3.10
- - move udev rules from /etc to /usr/lib (#971851)
- - enable hardened build (#1000643)
- - drop also supplementary groups when dropping privileges
- - set time stamp in chrony SOCK sample correctly
- - remove RPATH from all files
- - don't package INSTALL file
- * Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
- * Thu May 02 2013 Miroslav Lichvar <mlichvar@redhat.com> - 3.9-1
- - update to 3.9
- - move files from /lib
- * Wed Feb 27 2013 Miroslav Lichvar <mlichvar@redhat.com> - 3.8-1
- - update to 3.8
- - use systemd macros (#850135)
- - don't set vendor for desktop files
- - make some dependencies arch-specific
- - remove obsolete macros
- * Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
- * Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
- * Mon Apr 30 2012 Miroslav Lichvar <mlichvar@redhat.com> - 3.5-1
- - update to 3.5
- * Thu Jan 26 2012 Miroslav Lichvar <mlichvar@redhat.com> - 3.4-1
- - update to 3.4
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Mon Oct 31 2011 Miroslav Lichvar <mlichvar@redhat.com> - 3.3-1
- - update to 3.3
- * Mon Aug 29 2011 Miroslav Lichvar <mlichvar@redhat.com> - 3.1-1
- - update to 3.1
- * Tue Aug 23 2011 Miroslav Lichvar <mlichvar@redhat.com> - 3.0-1
- - update to 3.0
- - enable PPSAPI support
- - fix PPS without -N
- - change service type to simple
- - start after chrony
- - fix permissions of systemd unit file
- - fix ldconfig scriptlets
- - package client-howto.txt
- * Tue Jul 26 2011 Miroslav Lichvar <mlichvar@redhat.com> - 2.95-7
- - make -libs subpackage (#663124)
- - replace SysV initscript with systemd service (#717419)
- - explicitly set USBAUTO=true in sysconfig file
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.95-6
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Wed Sep 29 2010 jkeating - 2.95-5
- - Rebuilt for gcc bug 634757
- * Tue Sep 14 2010 Miroslav Lichvar <mlichvar@redhat.com> - 2.95-4
- - don't crash in gpscat when started without arguments (#633117)
- * Fri Aug 27 2010 Dan Horák <dan[at]danny.cz> - 2.95-3
- - no USB on s390(x)
- * Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.95-2
- - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
- * Thu Jul 15 2010 Miroslav Lichvar <mlichvar@redhat.com> - 2.95-1
- - update to 2.95
- - add /usr/sbin to PATH in gpsd.hotplug.wrapper
- - pass sysconfig variables to gpsd started from udev
- - enable libusb support
- * Thu May 06 2010 Miroslav Lichvar <mlichvar@redhat.com> - 2.94-1
- - update to 2.94 (#556642)
- * Tue Mar 02 2010 Miroslav Lichvar <mlichvar@redhat.com> - 2.39-7
- - don't use deprecated SYSFS{} in udev rules (#569089)
- - fix init script LSB compliance
- * Mon Feb 15 2010 Miroslav Lichvar <mlichvar@redhat.com> - 2.39-6
- - fix linking with --no-add-needed (#564662)
- - use %%global macro instead of %%define
- * Wed Aug 12 2009 Marek Mahut <mmahut@fedoraproject.org> - 2.39-5
- - RHBZ#505588: gpsd has a broken initscript that fails to launch daemon
- * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.39-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Tue Mar 31 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.39-3
- - some of the gpsd client bits went into gpsdclient.h, but that file wasn't getting installed
- specifically, viking needs that header to build.
- * Wed Mar 25 2009 Douglas E. Warner <silfreed@silfreed.net> - 2.39-2
- - adding patch to try to fix parallel make errors
- * Thu Mar 19 2009 Douglas E. Warner <silfreed@silfreed.net> - 2.39-1
- - updating to 2.39
- - fixed potential core dump in C client handling of "K" responses
- - Made device hotplugging work again; had been broken by changes in udev
- - Introduced major and minor API version symbols into the public interfaces
- - The sirfmon utility is gone, replaced by gpsmon which does the same job
- for multiple GPS types
- - Fixed a two-year old error in NMEA parsing that nobody noticed because its
- only effect was to trash VDOP values from GSA sentences, and gpsd computes
- those with an internal error model when they look wonky
- - cgpxlogger has been merged into gpxlogger
- - Speed-setting commands now allow parity and stop-bit setting if the GPS
- chipset and adaptor can support it
- - Specfile and other packaging paraphenalia now live in a packaging
- subdirectory
- - rtcmdecode becomes gpsdecode and can now de-armor and dump AIDVM packets
- - The client library now work correctly in locales where the decimal separator
- is not a period
- * Mon Mar 16 2009 Douglas E. Warner <silfreed@silfreed.net> - 2.38-1
- - updating to 2.38
- - creating init script and sysconfig files
- - migrating hotplug rules to udev + hotplug wrapper script from svn r5147
- - updating pyexecdir patch
- - fixing udev rule subsystem match
- - Regression test load for RoyalTek RGM3800 and Blumax GPS-009 added
- - Scaling on E error-estimate fields fixed to match O
- - Listen on localhost only by default to avoid security problems; this can be
- overridden with the -G command-line option
- - The packet-state machine can now recognize RTCM3 packets, though support is
- not yet complete
- - Added support for ublox5 and mkt-3301 devices
- - Add a wrapper around gpsd_hexdump to save CPU
- - Lots of little fixes to various packet parsers
- - Always keep the device open: "-n" is not optional any more
- - xgpsspeed no longer depends on Motif
- - gpsctl can now ship arbitrary payloads to a device;
- It's possible to send binary through the control channel with the
- new "&" command
- - Experimental new driver for Novatel SuperStarII
- - The 'g' mode switch command now requires, and returns, 'rtcm104v2' rather
- than 'rtcm104'; this is design forward for when RTCM104v2 is fully working
- * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.37-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.37-3
- - Rebuild for Python 2.6
- * Wed Mar 19 2008 Douglas E. Warner <silfreed@silfreed.net> - 2.37-2
- - moving gpspacket.so python lib to main package
- * Wed Feb 27 2008 Douglas E. Warner <silfreed@silfreed.net> - 2.37-1
- - update to 2.37
- - removed install-gpsd_config.h.patch
- - installed pkgconfig files in devel package
- - added patch to install python modules in sitearch
- - removing rpath from inclucded libtool
- - moving X11 app-defaults to datadir
- - using macros for commands in install; using install instead of cp and mkdir
- - cleaning up spaces/tabs for rpmlint
- * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.34-9
- - Autorebuild for GCC 4.3
- * Sun Aug 19 2007 Matthew Truch <matt at truch.net> - 2.34-8
- - Patch Makefile to also install gpsd_config.h as needed by
- libgpsmm.h. Redhat BZ 253433.
- * Sat Jun 30 2007 Matthew Truch <matt at truch.net> - 2.34-7
- - Make sure the logo is actually included (via the spec file).
- I need to wake up before I try even trivial updates.
- * Sat Jun 30 2007 Matthew Truch <matt at truch.net> - 2.34-6
- - Learn how to use search and replace (aka fix all instances of
- gpsd-logo.png spelled incorrectly as gspd-logo.png).
- * Sat Jun 30 2007 Matthew Truch <matt at truch.net> - 2.34-5
- - Fix desktop file and logo file name.
- * Sat Jun 30 2007 Matthew Truch <matt at truch.net> - 2.34-4
- - Include icon for .desktop files per BZ 241428
- * Tue Mar 20 2007 Michael Schwendt <mschwendt[AT]users.sf.net> - 2.34-3
- - Bump release for FE5 -> Fedora 7 upgrade path.
- * Tue Feb 27 2007 Matthew Truch <matt at truch.net> - 2.34-2
- - BR python-devel instead of python to make it build.
- * Tue Feb 27 2007 Matthew Truch <matt at truch.net> - 2.34-1
- - Upgrade to 2.34.
- - Get rid of %%makeinstall (which was never needed).
- - Possibly fix hotplug issuses (BZ 219750).
- - Use %%python_sitelib for python site-files stuff.
- * Sat Dec 9 2006 Matthew Truch <matt at truch.net> - 2.33-6
- - Rebuild to pull in new version of python.
- * Tue Sep 26 2006 Matthew Truch <matt at truch.net> - 2.33-5
- - Remove openmotif requirment, and switch to lesstif.
- * Mon Aug 28 2006 Matthew Truch <matt at truch.net> - 2.33-4
- - Bump release for rebuild in prep. for FC6.
- * Thu Jul 20 2006 Matthew Truch <matt at truch.net> - 2.33-3
- - Actually, was a missing BR glib-dbus-devel. Ooops.
- * Thu Jul 20 2006 Matthew Truch <matt at truch.net> - 2.33-2
- - Missing BR glib-devel
- * Thu Jul 20 2006 Matthew Truch <matt at truch.net> - 2.33-1
- - Update to version 2.33
- * Wed Apr 19 2006 Matthew Truch <matt at truch.net> - 2.32-5
- - Don't --enable-tnt in build as it causes some gpses to not work
- properly with sattelite view mode. See bugzilla bug 189220.
- * Thu Apr 13 2006 Matthew Truch <matt at truch.net> - 2.32-4
- - Add dbus-glib to BuildRequires as needed for build.
- * Sun Apr 9 2006 Matthew Truch <matt at truch.net> - 2.32-3
- - Include xmlto and python in buildrequires so things build right.
- - Don't package static library file.
- * Wed Apr 5 2006 Matthew Truch <matt at truch.net> - 2.32-2
- - Use ye olde %%{?dist} tag.
- * Wed Apr 5 2006 Matthew Truch <matt at truch.net> - 2.32-1
- - Initial Fedora Extras specfile
|