/aurpc

A Go library for accessing the Arch User Repository via the AUR RPC

Primary LanguageGoMIT LicenseMIT

aurpc

A Go library for accessing the Arch User Repository via the AUR RPC

CircleCI Go Report Card

Get the package

go get github.com/BrianAllred/aurpc

Use the code

  • Search by name, name and description, or maintiner:

      search, err := aurpc.SearchByName("linux-ck")
      search, err := aurpc.SearchByNameDesc("ck1 patchset")
      search, err := aurpc.SearchByMaintainer("graysky")
    
  • Get package info:

      info, err := aurpc.PkgInfo("linux-ck")
      info, err := aurpc.PkgInfo("linux-ck", "linux-ck-headers")