cleanup spec
(cherry picked from commit c9afec694b98034291d3ee7fd722e4a7f243c292)
This commit is contained in:
parent
98a709cfc6
commit
3fee661bd3
@ -1,12 +1,13 @@
|
|||||||
Name: liblockfile
|
Name: liblockfile
|
||||||
Version: 1.17
|
Version: 1.17
|
||||||
Release: 2
|
Release: 3
|
||||||
Summary: Library providing functions to lock standard mailboxes
|
Summary: Library providing functions to lock standard mailboxes
|
||||||
License: GPLv2+ and LGPLv2+
|
License: GPL-2.0-or-later AND LGPL-2.0-or-later
|
||||||
URL: https://github.com/miquels/liblockfile
|
URL: https://github.com/miquels/liblockfile
|
||||||
Source0: https://github.com/miquels/liblockfile/archive/v%{version}.tar.gz
|
Source0: https://github.com/miquels/liblockfile/archive/v%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc make
|
||||||
|
BuildRequires: ldconfig
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This library implements a number of functions found in -lmail on SysV
|
This library implements a number of functions found in -lmail on SysV
|
||||||
@ -20,49 +21,58 @@ Requires: liblockfile = %{version}-%{release}
|
|||||||
The liblockfile-devel package contains libraries and header files for
|
The liblockfile-devel package contains libraries and header files for
|
||||||
liblockfile development.
|
liblockfile development.
|
||||||
|
|
||||||
%package help
|
%package_help
|
||||||
Summary: Liblockfile help docs and manual pages
|
|
||||||
Requires: liblockfile = %{version}-%{release}
|
|
||||||
Buildarch: noarch
|
|
||||||
|
|
||||||
%description help
|
|
||||||
The liblockfile-help package contains help docs and manual pages for liblockfile.
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n liblockfile-%{version} -p1
|
%autosetup -n liblockfile-%{version} -p1
|
||||||
|
|
||||||
sed -i "s/-g root//" Makefile.in
|
# There are occurrences of "install -g GROUP ...".
|
||||||
|
#
|
||||||
|
# Changing the group requires permissions that are normally not
|
||||||
|
# available while packaging.
|
||||||
|
#
|
||||||
|
# Let's remove "-g GROUP".
|
||||||
|
sed -Ei "/install/ s/-g [^ ]+//" Makefile.in
|
||||||
|
|
||||||
|
# Makefile.in mixes and messes with DESTDIR and prefix.
|
||||||
|
# See the following pull requests submitted upstream:
|
||||||
|
# https://github.com/miquels/liblockfile/pull/11
|
||||||
|
# https://github.com/miquels/liblockfile/pull/15
|
||||||
|
sed -i \
|
||||||
|
-e '/^prefix/s,\$(DESTDIR),,' \
|
||||||
|
-e 's,\(\$(\(lib\|include\|man\|nfslock\|bin\)dir)\),$(DESTDIR)\1,' \
|
||||||
|
-e '/-DLOCKPROG/s,\$(DESTDIR),,' Makefile.in
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --enable-shared --prefix=%{buildroot} --bindir=%{buildroot}%{_bindir} --mandir=%{buildroot}%{_mandir} --libdir=%{buildroot}%{_libdir} --includedir=%{buildroot}%{_includedir}
|
%configure --enable-shared
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
|
|
||||||
ldconfig -N -n %{buildroot}/%{_libdir}
|
/sbin/ldconfig -N -n %{buildroot}/%{_libdir}
|
||||||
|
|
||||||
%post
|
|
||||||
/sbin/ldconfig
|
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc COPYRIGHT
|
%license COPYRIGHT
|
||||||
%{_bindir}/dotlockfile
|
%attr(2755,root,mail) %{_bindir}/dotlockfile
|
||||||
%{_libdir}/{liblockfile.so.1.0,liblockfile.so.1}
|
%{_libdir}/liblockfile.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_libdir}/{liblockfile.so,liblockfile.a}
|
%{_libdir}/liblockfile.so
|
||||||
%{_includedir}/{maillock.h,lockfile.h}
|
%{_libdir}/liblockfile.a
|
||||||
|
%{_includedir}/maillock.h
|
||||||
|
%{_includedir}/lockfile.h
|
||||||
|
|
||||||
%files help
|
%files help
|
||||||
%doc README Changelog
|
%doc README Changelog
|
||||||
%{_mandir}/man1/dotlockfile.1*
|
%{_mandir}/man1/dotlockfile.1*
|
||||||
%{_mandir}/man3/{lockfile_create.3*,maillock.3*}
|
%{_mandir}/man3/lockfile_create.3*
|
||||||
|
%{_mandir}/man3/maillock.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 19 2024 Funda Wang <fundawang@yeah.net> - 1.17-3
|
||||||
|
- cleanup spec
|
||||||
|
|
||||||
* Tue Aug 20 2024 Bowen Wang<wangbowen@cqsoftware.com.cn> - 1.17-2
|
* Tue Aug 20 2024 Bowen Wang<wangbowen@cqsoftware.com.cn> - 1.17-2
|
||||||
- Added 'Buildarch: noarch' to the help subpackage
|
- Added 'Buildarch: noarch' to the help subpackage
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
version_control: github
|
version_control: github
|
||||||
src_repo: miquels/liblockfile
|
src_repo: miquels/liblockfile
|
||||||
tag_prefix: ^v
|
tag_prefix: ^v
|
||||||
seperator: .
|
separator: .
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user