Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rpm_depends #219

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ The following variables describe a package and should be put in the
this variable
- =deb_depends= - Dependencies you require on deb sytems. This should be a
comma separated list.
- =rpm_depends= - Dependencies you require on rpm systems. This should be a
comma separated list.
- =package_desc= - A long description of the package
- =solaris_depends= - (not supported yet) Dependencies specific to the solaris
package
Expand Down
2 changes: 2 additions & 0 deletions priv/templates/rpm/specfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ BuildRoot: %{_tmppath}/%{name}-%{_revision}-%{release}-root
Summary: {{package_shortdesc}}
Obsoletes: {{package_name}}

Requires: {{rpm_depends}}

%description
{{package_desc}}

Expand Down