blackbox icon indicating copy to clipboard operation
blackbox copied to clipboard

Release deb/rpm packages

Open benmccann opened this issue 8 years ago • 5 comments

It would really ease installation to have deb/rpm packages available. I'm struggling quite a bit to get fpm installed on RHEL6, but even for users without this difficulty it would be quite a nice convenience

benmccann avatar Jul 07 '16 22:07 benmccann

For whoever may struggle on this:

git clone [email protected]:StackExchange/blackbox.git
PATH=~/blackbox/bin:$PATH
#now you can use blackbox

but I agree, it would be nice to have a deb release

framp avatar Apr 04 '17 15:04 framp

+1 to keep this alive. It would be really great to have an RPM package available. I too have had issues getting 'fpm' installed on CentOS.

jeremy303 avatar Jun 12 '17 18:06 jeremy303

fpm is installed as a ruby "gem". So, you generally won't find a package for it.

In Puppet I use this:

  ensure_packages(['rubygems', 'ruby-devel'])
  package { 'fpm':
    ensure   => 'latest',
    provider => 'gem',
    require  => Package['ruby-devel', 'rubygems'],
  }

tlimoncelli avatar Jun 12 '17 18:06 tlimoncelli

Would Packagecloud be an option? They have some free options for open source software.

torkelrogstad avatar Sep 24 '18 12:09 torkelrogstad

I'm open to volunteers stepping up to take this on and deciding what to do.

tlimoncelli avatar Sep 24 '18 13:09 tlimoncelli