-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ryan Lerch <[email protected]>
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
koji-fedoramessaging.spec export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Name: koji-fedoramessaging | ||
Version: 1.0 | ||
Release: 1%{?dist} | ||
Summary: Enable Koji to send Fedora Messaging messages | ||
Group: Applications/System | ||
License: GPLv3 | ||
URL: https://github.com/fedora-infra/koji-fedoramessaging | ||
Source0: %{url}/archive/%{version}/koji-fedoramessaging-%{version}.tar.gz | ||
|
||
BuildArch: noarch | ||
BuildRequires: python | ||
BuildRequires: python3-devel | ||
BuildRequires: python-setuptools | ||
|
||
Requires: python3-koji-hub | ||
Requires: python3-fedoramessaging-messages | ||
|
||
%description | ||
Enable Koji to send Fedora Messaging messages | ||
|
||
%prep | ||
%setup -q | ||
|
||
%build | ||
|
||
%install | ||
%{__install} -d $RPM_BUILD_ROOT%{_prefix}/lib/koji-hub-plugins | ||
%{__install} -p -m 0644 koji-fedoramessaging/koji-fedoramessaging.py $RPM_BUILD_ROOT%{_prefix}/lib/koji-hub-plugins/koji-fedoramessaging.py | ||
|
||
%clean | ||
rm -rf $RPM_BUILD_ROOT | ||
|
||
%files | ||
%{_prefix}/lib/koji-hub-plugins | ||
|
||
%changelog | ||
* Tue Feb 07 2023 Ryan Lerch <[email protected]> - 1.0-1 | ||
- Initial Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters