Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
92a6a557
Unverified
Commit
92a6a557
authored
8 years ago
by
Dominyk Tiller
Browse files
Options
Downloads
Patches
Plain Diff
gpg: add initial bare-bones wrapper
parent
b3ea5c25
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/gpg.rb
+47
-0
47 additions, 0 deletions
Library/Homebrew/gpg.rb
with
47 additions
and
0 deletions
Library/Homebrew/gpg.rb
0 → 100644
+
47
−
0
View file @
92a6a557
require
"utils"
class
Gpg
# Should ideally be using `GPGRequirement.new.gpg2`, etc to get path here but
# calling that directly leads to:
# requirement.rb:139:in `which_all': uninitialized constant Requirement::ORIGINAL_PATHS (NameError)
# when i.e. including the gpg syntax in wget. Not problematic if not used by formula code.
# For now, the path determination blob of code has been semi-modified for here.
# Look into this more.
def
self
.
gpg
which
(
"gpg"
)
do
|
gpg
|
gpg_short_version
=
Utils
.
popen_read
(
gpg
,
"--version"
)[
/\d\.\d/
,
0
]
next
unless
gpg_short_version
Version
.
create
(
gpg_short_version
.
to_s
)
==
Version
.
create
(
"2.0"
)
end
end
def
self
.
gpg2
which
(
"gpg2"
)
do
|
gpg2
|
gpg2_short_version
=
Utils
.
popen_read
(
gpg2
,
"--version"
)[
/\d\.\d/
,
0
]
next
unless
gpg2_short_version
Version
.
create
(
gpg2_short_version
.
to_s
)
==
Version
.
create
(
"2.0"
)
end
end
GPG_EXECUTABLE
=
gpg2
||
gpg
def
self
.
available?
File
.
exist?
(
GPG_EXECUTABLE
.
to_s
)
&&
File
.
executable?
(
GPG_EXECUTABLE
)
end
def
self
.
create_test_key
(
path
)
odie
"No GPG present to test against!"
unless
available?
(
path
/
"batch.gpg"
).
write
<<-
EOS
.
undent
Key-Type: RSA
Key-Length: 2048
Subkey-Type: RSA
Subkey-Length: 2048
Name-Real: Testing
Name-Email: testing@foo.bar
Expire-Date: 1d
%commit
EOS
system
GPG_EXECUTABLE
,
"--batch"
,
"--gen-key"
,
"batch.gpg"
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment