diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a560613 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/librhsm-0.0.3.tar.gz diff --git a/.librhsm.metadata b/.librhsm.metadata new file mode 100644 index 0000000..fdbe51d --- /dev/null +++ b/.librhsm.metadata @@ -0,0 +1 @@ +72963388eece706d328b84070107e20d322cf0e4 SOURCES/librhsm-0.0.3.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/librhsm.spec b/SPECS/librhsm.spec new file mode 100644 index 0000000..f838d4a --- /dev/null +++ b/SPECS/librhsm.spec @@ -0,0 +1,55 @@ +%global libname rhsm + +Name: lib%{libname} +Version: 0.0.3 +Release: 1%{?dist} +Summary: Red Hat Subscription Manager library + +License: LGPLv2+ +URL: https://github.com/rpm-software-management/librhsm +Source: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz + +BuildRequires: meson >= 0.37.0 +BuildRequires: gcc +BuildRequires: pkgconfig(glib-2.0) >= 2.44 +BuildRequires: pkgconfig(gobject-2.0) >= 2.44 +BuildRequires: pkgconfig(gio-2.0) >= 2.44 +BuildRequires: pkgconfig(json-glib-1.0) >= 1.2 +BuildRequires: pkgconfig(openssl) + +%description +%{summary}. + +%package devel +Summary: Development libraries and header files for %{name} +Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release} + +%description devel +%{summary}. + +%prep +%autosetup -p1 + +%build +%meson +%meson_build + +%install +%meson_install + +%files +%license COPYING +%doc README.md +%{_libdir}/%{name}.so.* + +%files devel +%{_libdir}/%{name}.so +%{_includedir}/%{libname}/ +%{_libdir}/pkgconfig/%{name}.pc + +%changelog +* Mon Jul 09 2018 Igor Gnatenko - 0.0.3-1 +- Update to 0.0.3 + +* Thu Feb 22 2018 Igor Gnatenko - 0.0.2-1 +- Initial release