import CS rpm-local-generator-support-1-1.module_el9+862+220991ec

This commit is contained in:
eabdullin 2024-04-03 18:33:39 +00:00
commit f2c180e3d9
3 changed files with 68 additions and 0 deletions

0
.gitignore vendored Normal file
View File

23
SOURCES/README.md Normal file
View File

@ -0,0 +1,23 @@
# rpm-local-generator-support
This package ships `%{_fileattrsdir}/local_generator.attr` file, which enables
`local_generator` for RPM. This is useful in cases, where package ships
generators and wants to use them internally. In such case, it is possible to
redefine the generator macros:
~~~
... snip ...
Source1: generator.req
BuildRequires: rpm-local-generator-support
%global __local_generator_requires bash %{SOURCE9}"
... snip ...
~~~
More details about the idea and purpose of this file can be find here:
https://github.com/rpm-software-management/rpm/issues/782#issuecomment-1747200612
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/3MHROKOM53HM6NF7RGGLFBIQFG5IEIQG/

View File

@ -0,0 +1,45 @@
Summary: RPM local_generator support
Name: rpm-local-generator-support
Version: 1
Release: 1%{?dist}
# It is not really clear if the one empty file shipped by this package is even
# copyrightable. But let's go with GPLv2+ which is the license used by RPM,
# where this file should ideally come from or be replaced by different
# implementation.
#
# The license was discussed in this thread:
# https://lists.fedoraproject.org/archives/list/legal@lists.fedoraproject.org/thread/X6RUQK5R6KIMVIQ6FQPNVGTJJXSNRD4V/
License: GPLv2+
URL: https://src.fedoraproject.org/rpms/rpm-local-generator-support
Source1: README.md
BuildArch: noarch
%description
local_generator.attr file enabling RPM dependency generator to be used on .spec
files, which ships them.
%prep
%build
%install
install %{SOURCE1} %{basename:%{SOURCE1}}
install -d %{buildroot}%{_fileattrsdir}
touch %{buildroot}%{_fileattrsdir}/local_generator.attr
%files
%doc README.md
%{_fileattrsdir}/local_generator.attr
%changelog
* Fri Oct 06 2023 Vít Ondruch <vondruch@redhat.com> - 1-1
- Initial version.