-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
godef: Add port. #27323
Open
graywolf
wants to merge
1
commit into
macports:master
Choose a base branch
from
graywolf:add/godef
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+48
−0
Open
godef: Add port. #27323
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | ||
|
||
PortSystem 1.0 | ||
PortGroup golang 1.0 | ||
|
||
go.setup github.com/rogpeppe/godef 1.1.2 v | ||
categories devel | ||
maintainers {@graywolf wolfsden.cz:~+macports} openmaintainer | ||
license BSD | ||
|
||
description Print where symbols are defined in Go source code | ||
long_description \ | ||
Given an expression or a location in a source file, print the location of \ | ||
the definition of the symbol referred to. Does not understand about . \ | ||
imports and does not deal well with definitions in tests. | ||
|
||
checksums ${distname}${extract.suffix} \ | ||
rmd160 ffe97c2bc0113b63eaf1bd27e189aed64ecba05a \ | ||
sha256 0a3891b5ce0806436394edf68cca90eba26f17853006be1801e3a05dc9731f71 \ | ||
size 318998 | ||
|
||
go.vendors golang.org/x/xerrors \ | ||
lock 1b5146add898 \ | ||
rmd160 2cc4b800c18d0a62360e39184f2a99b1ebd49a95 \ | ||
sha256 6369e59584a604215ed9649649fe273e46295d3fb8d5a811f4028844c861faaa \ | ||
size 12201 \ | ||
golang.org/x/tools \ | ||
lock 204d844ad48d \ | ||
rmd160 6f1411aab71e8447ed79e75a4ddd89a244b60a62 \ | ||
sha256 a07f87de2c4bd2520ba5da78538a64f2eb6b3ba3e621c0d2a817dd13eda5504a \ | ||
size 2366929 \ | ||
golang.org/x/mod \ | ||
lock c90efee705ee \ | ||
rmd160 d2b49ddf3a196de782a5b8c0196b72c24142e95d \ | ||
sha256 725422e15e9d32b31369de16b6f9788eff89a8496896d46f4cab9730cfea366f \ | ||
size 93073 \ | ||
9fans.net/go \ | ||
repo github.com/9fans/go \ | ||
lock 237454027057 \ | ||
rmd160 94c09fb2d284bdeb6dd0515d7712ddb9ea16da74 \ | ||
sha256 df93ef61bb7f10f672a492e8f7db44487f0c2a036c2ab521a872dadd82c2b029 \ | ||
size 129404 | ||
|
||
destroot { | ||
xinstall -m 0755 ${worksrcpath}/${name} ${destroot}${prefix}/bin/ | ||
} | ||
|
||
livecheck.regex archive/refs/tags/v(\[^"\]+)\.tar\.gz | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why does the default livecheck settings not work?