Accepting request 442312 from hardware

1

OBS-URL: https://build.opensuse.org/request/show/442312
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libirman?expand=0&rev=4
This commit is contained in:
Dominique Leuenberger 2016-12-01 09:24:57 +00:00 committed by Git OBS Bridge
commit c9382b6a6a
4 changed files with 69 additions and 28 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:926addb5a85faceb553fcf9e504ea67ab41d3491f101e2621ce43e6568312bfb
size 355076

BIN
libirman-0.5.2.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Sun Nov 27 22:21:22 UTC 2016 - jengelh@inai.de
- Update descriptions
-------------------------------------------------------------------
Thu Nov 24 09:57:29 UTC 2016 - mpluskal@suse.com
- Update to version 0.5.2:
* Plugin: Fix logging issues.
* Configure the sys/file.h header (Debian #436563).
* Build: Fix parallel make glitch.
- Changes for version 0.5.1:
* Fix FTBS bug for --enable-swtest
* Clean up plugin installation.
- Update project and download url
- Move config file to subpackage
-------------------------------------------------------------------
Sat Oct 24 21:18:45 UTC 2015 - mpluskal@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package libirman
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -16,45 +16,61 @@
#
%define lib_name %{name}0
%define sover 0
Name: libirman
Version: 0.5.0
Version: 0.5.2
Release: 0
Summary: Library for irman access
License: GPL-2.0+
Group: System/Libraries
Url: http://www.lirc.org
Source0: http://sourceforge.net/projects/lirc/files/libirman/%{version}/libirman-%{version}.tar.gz
BuildRequires: pkg-config
Group: Hardware/Other
Url: https://sourceforge.net/projects/libirman/
Source0: https://downloads.sf.net/libirman/libirman-%{version}.tar.gz
BuildRequires: pkgconfig
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Libraries and tools for irman access from lirc project
libirman is a general purpose library for programs to use in order to
receive infrared signals via irman-compatible hardware.
%package -n %{lib_name}
%package -n %{name}%{sover}
Summary: Library for irman access
License: LGPL-2.0+
Group: System/Libraries
Requires: %{name}-common = %{version}
%description -n %{lib_name}
Library for irman access from lirc project
%description -n %{name}%{sover}
libirman is a general purpose library for programs to use in order to
receive infrared signals via irman-compatible hardware.
%package common
Summary: Common files for %{name}
License: LGPL-2.0+
Group: Development/Languages/C and C++
Conflicts: %{name}%{sover} < %{version}
%description common
Common files for %{name}.
%package utils
Summary: Library for irman access
License: GPL-2.0+
Group: Hardware/Other
Requires: %{name}-common = %{version}
%description utils
Utilities from %{name} from lirc project
Utilities from %{name} from the lirc project.
%package devel
Summary: Development files for %{name}
License: GPL-2.0+
Group: Development/Libraries
Requires: %{lib_name} = %{version}-%{release}
Group: Development/Libraries/C and C++
Requires: %{name}%{sover} = %{version}
%description devel
Devel files for %{name} from lirc project
libirman is a general purpose library for programs to use in order to
receive infrared signals via irman-compatible hardware.
Devel files for %{name} from the lirc project.
%prep
%setup -q
@ -65,30 +81,37 @@ Devel files for %{name} from lirc project
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
%make_install
find %{buildroot} -type f -name "*.la" -delete -print
rm -rf %{buildroot}%{_datadir}
%post -n %{lib_name} -p /sbin/ldconfig
%postun -n %{lib_name} -p /sbin/ldconfig
%post -n %{name}%{sover} -p /sbin/ldconfig
%postun -n %{name}%{sover} -p /sbin/ldconfig
%files utils
%defattr(-,root,root)
%doc COPYING
%{_bindir}/test_func
%{_bindir}/test_io
%{_bindir}/test_name
%{_bindir}/workmanir
%{_bindir}/irman.*
%files -n %{lib_name}
%files -n %{name}%{sover}
%defattr(-,root,root)
%doc COPYING.lib
%defattr(-,root,root,-)
%{_libdir}/%{name}.so.%{sover}*
%files common
%defattr(-,root,root)
%config %{_sysconfdir}/irman.conf
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root)
%doc COPYING COPYING.lib NEWS README
%defattr(-,root,root,-)
%{_libdir}/*.so
%{_libdir}/pkgconfig/%{name}.pc
%{_includedir}/*.h
%{_includedir}/irman.h
%{_libdir}/libirman.so
%{_libdir}/pkgconfig/libirman.pc
%changelog