All Projects → sdboyer → Gps

sdboyer / Gps

Licence: mit
your dependencies have arrived

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Gps

Nve
Run any command on specific Node.js versions
Stars: ✭ 531 (+93.09%)
Mutual labels:  library, package-manager
Raven
Raven is a Package Manager for Chez Scheme
Stars: ✭ 107 (-61.09%)
Mutual labels:  library, package-manager
Laravel Paket
Composer GUI. Manage Laravel dependencies from web interface without switching to command line!
Stars: ✭ 143 (-48%)
Mutual labels:  library, package-manager
Pygogo
A Python logging library with superpowers
Stars: ✭ 265 (-3.64%)
Mutual labels:  library
Prdownloader
PRDownloader - A file downloader library for Android with pause and resume support
Stars: ✭ 2,947 (+971.64%)
Mutual labels:  library
Gorequest
GoRequest -- Simplified HTTP client ( inspired by nodejs SuperAgent )
Stars: ✭ 3,063 (+1013.82%)
Mutual labels:  library
Ble Indoor Positioning
Multilateration using bluetooth beacons
Stars: ✭ 274 (-0.36%)
Mutual labels:  library
Public Transport Enabler
Unleash public transport data in your Java project.
Stars: ✭ 264 (-4%)
Mutual labels:  library
Angular Library Starter
Build an Angular library compatible with AoT compilation and Tree shaking like an official package
Stars: ✭ 272 (-1.09%)
Mutual labels:  library
Visitor
The Hoa\Visitor library.
Stars: ✭ 269 (-2.18%)
Mutual labels:  library
Rustface
Face detection library for the Rust programming language
Stars: ✭ 269 (-2.18%)
Mutual labels:  library
Landscapist
🍂 Jetpack Compose image loading library which can fetch and display network images using Glide, Coil, and Fresco.
Stars: ✭ 264 (-4%)
Mutual labels:  library
Whereami
Locate the current executable and the current module/library on the file system
Stars: ✭ 270 (-1.82%)
Mutual labels:  library
Ristretto
A high performance memory-bound Go cache
Stars: ✭ 3,584 (+1203.27%)
Mutual labels:  library
Adafruit Fingerprint Sensor Library
Arduino library for interfacing to the fingerprint sensor in the Adafruit shop
Stars: ✭ 273 (-0.73%)
Mutual labels:  library
Zformat
The Hoa\Zformat library.
Stars: ✭ 265 (-3.64%)
Mutual labels:  library
Rye
A modern, lightweight browser library using ES5 natives
Stars: ✭ 271 (-1.45%)
Mutual labels:  library
I Use Arch Btw
"I use Arch btw" but it's a Turing-complete programming language.
Stars: ✭ 266 (-3.27%)
Mutual labels:  library
Cordova Plugin Dialogs
Apache Cordova Plugin dialogs
Stars: ✭ 267 (-2.91%)
Mutual labels:  library
Paper Switch
🎚 RAMPaperSwitch is a Swift material design UI module which paints over the parent view when the switch is turned on. iOS library by @Ramotion
Stars: ✭ 2,902 (+955.27%)
Mutual labels:  library

gps
Build Status Windows Build Status Build Status Codecov GoDoc


gps has moved into dep - this repository is no longer maintained.

gps is the Go Packaging Solver. It is an engine for tackling dependency management problems in Go. It is trivial - about 35 lines of code - to replicate the fetching bits of go get using gps.

gps is not Yet Another Go Package Management Tool. Rather, it's a library that package management (and adjacent) tools can use to solve the hard parts of the problem in a consistent, holistic way. It is a distillation of the ideas behind language package managers like bundler, npm, elm-package, cargo (and others) into a library, artisanally handcrafted with ❤️ for Go's specific requirements.

gps was on track to become the engine behind glide; however, those efforts have been discontinued in favor of gps powering the experimental, eventually-official Go tooling.

The wiki has a general introduction to the gps approach, as well as guides for folks implementing tools or looking to contribute.

Wait...a package management library?!

Yup. See the rationale.

Features

A feature list for a package management library is a bit different than one for a package management tool. Instead of listing the things an end-user can do, we list the choices a tool can make and offer, in some form, to its users, as well as the non-choices/assumptions/constraints that gps imposes on a tool.

Non-Choices

We'd love for gps's non-choices to be noncontroversial. But that's not always the case.

Nevertheless, these non-choices remain because, taken as a whole, they make experiments and discussion around Go package management coherent and productive.

  • Go >=1.6, or 1.5 with GO15VENDOREXPERIMENT = 1 set
  • Everything under vendor/ is volatile and controlled solely by the tool
  • A central cache of repositories is used (cannot be GOPATH)
  • A project concept: a tree of packages, all covered by one vendor directory
  • A manifest and lock approach to tracking version and constraint information
  • Upstream sources are one of git, bzr, hg or svn repositories
  • What the available versions are for a given project/repository (all branches, tags, or revs are eligible)
    • In general, semver tags are preferred to branches, are preferred to plain tags
  • The actual packages that must be present (determined through import graph static analysis)
    • How the import graph is statically analyzed - similar to go/build, but with a combinatorial view of build tags (not yet implemented)
  • All packages from the same source (repository) must be the same version
  • Package import cycles are not allowed (not yet implemented)

There are also some current non-choices that we would like to push into the realm of choice:

  • Importable projects that are not bound to the repository root
  • Source inference around different import path patterns (e.g., how github.com/* or my_company/* are handled)

Choices

These choices represent many of the ways that gps-based tools could substantively differ from each other.

Some of these are choices designed to encompass all options for topics on which reasonable people have disagreed. Others are simply important controls that no general library could know a priori.

This list may not be exhaustive - see the implementor's guide for a proper treatment.

Contributing

Yay, contributing! Please see CONTRIBUTING.md. Note that gps also abides by a Code of Conduct, and is MIT-licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].