Re: Requires for local install

2017-09-23 Thread Sérgio Basto
On Sat, 2017-09-23 at 09:51 -0400, Matthew Miller wrote: > On Fri, Sep 22, 2017 at 09:47:15PM -0400, David Muse wrote: > > But, when doing a yum localinstall or dnf install with a local > > path, > > the user has to either install all rpm's or manually resolve > > dependencies. no , dnf install

Re: Requires for local install

2017-09-23 Thread Philip Kovacs
Or use Fedora Copr to create personal repos for your projects.  There is a lot of utility in doing that,esp.  when you start dealing with multiple boxes or vms.  Doing local installs directly from rpms doesnot scale and becomes tedious very quickly.  If you're writing or modifying the spec

Re: Requires for local install

2017-09-23 Thread Matthew Miller
On Fri, Sep 22, 2017 at 09:47:15PM -0400, David Muse wrote: > But, when doing a yum localinstall or dnf install with a local path, > the user has to either install all rpm's or manually resolve > dependencies. > > Is it common to specify inter-subpackage dependencies using Requires > to resolve

Re: Requires for local install

2017-09-22 Thread Samuel Sieb
On 09/22/2017 06:47 PM, David Muse wrote: I have a package with many subpackages.  Some of the subpackages depend on libraries provided by other subpackages. When downloading with yum/dnf, the rpm's know what they depend on, and the dnf/yum can figure out what to install to satisfy the

Requires for local install

2017-09-22 Thread David Muse
Hello list, I have a package with many subpackages. Some of the subpackages depend on libraries provided by other subpackages. When downloading with yum/dnf, the rpm's know what they depend on, and the dnf/yum can figure out what to install to satisfy the dependencies. No problem there.