From 8288d4989635ed86debc792b727a230636f467da Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Wed, 15 Mar 2023 18:08:31 +0300 Subject: [PATCH] import libi2cd-1.0.3-1.el9 --- .gitignore | 1 + .libi2cd.metadata | 1 + SPECS/libi2cd.spec | 65 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 .gitignore create mode 100644 .libi2cd.metadata create mode 100644 SPECS/libi2cd.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f5ea47d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/libi2cd-1.0.3.tar.gz diff --git a/.libi2cd.metadata b/.libi2cd.metadata new file mode 100644 index 0000000..0cf000f --- /dev/null +++ b/.libi2cd.metadata @@ -0,0 +1 @@ +d06a803e11187acd3b6a4a529147574c057b0317 SOURCES/libi2cd-1.0.3.tar.gz diff --git a/SPECS/libi2cd.spec b/SPECS/libi2cd.spec new file mode 100644 index 0000000..1de49e2 --- /dev/null +++ b/SPECS/libi2cd.spec @@ -0,0 +1,65 @@ +#global candidate rc2 + +Name: libi2cd +Version: 1.0.3 +Release: 1%{?candidate:.%{candidate}}%{?dist} +Summary: C library for interacting with linux I2C devices + +License: LGPLv2+ +URL: https://github.com/sstallion/libi2cd/ +Source0: https://github.com/sstallion/libi2cd/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: automake autoconf libtool +BuildRequires: gcc +BuildRequires: libcmocka-devel +BuildRequires: make + +%description +libi2cd provides a simple and straightforward API for accessing I2C devices from +userspace. It relies on the i2c-dev Linux kernel module and is intended to +complement existing tools and libraries, such as those provided by i2c-tools. +It provides both high- and low-level access to the underlying ioctl requests. + +%package devel +Summary: Development package for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +Files for development with %{name}. + +%prep +%setup -q -n %{name}-%{version}%{?candidate:-%{candidate}} + +%build +autoreconf -vif +%configure --disable-static + +%make_build + +%install +%make_install + +#Remove libtool archives. +find %{buildroot} -name '*.la' -delete + +%ldconfig_scriptlets + +%files +%license COPYING +%doc README.md +%{_libdir}/%{name}.so.* + +%files devel +%{_includedir}/i2cd.h +%{_libdir}/%{name}*.so +%{_libdir}/pkgconfig/libi2cd.pc + +%changelog +* Wed Mar 15 2023 MSVSphere Packaging Team - 1.0.3-1 +- Rebuilt for MSVSphere 9.1. + +* Fri Jan 21 2022 Peter Robinson - 1.0.3-1 +- Update to 1.0.3 + +* Tue Sep 21 2021 Peter Robinson - 1.0-1 +- Iniital build