swagger-api / swagger-codegen

swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition.
http://swagger.io
Apache License 2.0
16.73k stars 6.02k forks source link

Add swagger codegen to chocolatey #4017

Open jeusdi opened 7 years ago

jeusdi commented 7 years ago
Suggestion

What about adding it on chocolatey?

wing328 commented 7 years ago

Sounds good to me. May I know if you've time for the contribution?

jeusdi commented 7 years ago

Why not! Is there some guide in order to be able to get some help for contribution?

wing328 commented 7 years ago

I do not have any experience with chocolatey.

We do publish a brew forumla, which can be served a as a reference and here is the detail:

lass SwaggerCodegen < Formula
  desc "Generation of client and server from Swagger definition"
  homepage "http://swagger.io/swagger-codegen/"
  url "https://github.com/swagger-api/swagger-codegen/archive/v2.2.1.tar.gz"
  sha256 "bdf6d5828cdcdeb43f377d58f13a73f8c297fb90c3bad900f0e0a266ebf8d778"
  head "https://github.com/swagger-api/swagger-codegen.git"

  bottle do
    cellar :any_skip_relocation
    sha256 "514301a5707ccafbab4435d840d7ad99817a38bf3e2392cd33c68d8de09653bd" => :sierra
    sha256 "8d4c728aacf862c15a22bb254365fd9d557acaa144f0e9eccd72b7e09c207174" => :el_capitan
    sha256 "43283ffa36d261cf9723866ac0f825b92e0a37212de27645819ebe14117fdcfa" => :yosemite
    sha256 "01614863b7c91a94b27ecccda0bf6617244c53d43cf641a4148bdead33031a33" => :mavericks
  end

  depends_on :java => "1.7+"
  depends_on "maven" => :build

  def install
    ENV.java_cache

    system "mvn", "clean", "package"
    libexec.install "modules/swagger-codegen-cli/target/swagger-codegen-cli.jar"
    bin.write_jar_script libexec/"swagger-codegen-cli.jar", "swagger-codegen"
  end

  test do
    (testpath/"minimal.yaml").write <<-EOS.undent
      ---
      swagger: '2.0'
      info:
        version: 0.0.0
        title: Simple API
      paths:
        /:
          get:
            responses:
              200:
                description: OK
    EOS
    system "#{bin}/swagger-codegen", "generate", "-i", "minimal.yaml", "-l", "swagger"
  end
end
wing328 commented 7 years ago

@jeusdi may I know if you've working on this? Do you need any help from us?

wing328 commented 7 years ago

FYI. I've submitted a chocolatey package for Swagger Codegen, which is now pending review and approval.

wing328 commented 6 years ago

It's rejected: https://chocolatey.org/packages/swagger-codegen/2.2.2

If anyone wants to pick up this work, please feel free to clone https://github.com/wing328/choco-swagger-codegen and resubmit the package as I no longer have time for this task.

(btw, v2.2.3 has been released so we may want to update https://github.com/wing328/choco-swagger-codegen with 2.2.3 instead before resubmitting to chocolatey)