mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 03:50:45 +02:00
gnu: go-go-mongodb-org-mongo-driver: Sort.
* gnu/packages/golang-xyz.scm (go-go-mongodb-org-mongo-driver): Sort variable alphabetically. Change-Id: Ia2fafc4e48a8032212ced7dfa66d915e47420175
This commit is contained in:
parent
b675787135
commit
56950f3f68
1 changed files with 67 additions and 67 deletions
|
@ -10083,6 +10083,73 @@ for projects that don't require a full database server such as Postgres or
|
||||||
MySQL.")
|
MySQL.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-go-mongodb-org-mongo-driver
|
||||||
|
(package
|
||||||
|
(name "go-go-mongodb-org-mongo-driver")
|
||||||
|
(version "1.16.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/mongodb/mongo-go-driver")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "160hwrk8y8h3nl9sh5v6pxnlyw1ywbssjgzb72lj0x68akgl8gff"))
|
||||||
|
(snippet
|
||||||
|
#~(begin (use-modules (guix build utils))
|
||||||
|
(delete-file-recursively "vendor")))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "go.mongodb.org/mongo-driver"
|
||||||
|
#:test-flags
|
||||||
|
#~(list "-skip"
|
||||||
|
(string-join
|
||||||
|
;; Some tests require running database and available network
|
||||||
|
;; connection.
|
||||||
|
(list "TestAggregate"
|
||||||
|
"TestPollSRVRecords"
|
||||||
|
"TestPollSRVRecordsServiceName"
|
||||||
|
"TestPollingSRVRecordsLoadBalanced"
|
||||||
|
"TestPollingSRVRecordsSpec"
|
||||||
|
"TestServerHeartbeatOffTimeout"
|
||||||
|
"TestServerHeartbeatTimeout"
|
||||||
|
"TestTimeCodec"
|
||||||
|
"TestTopologyConstructionLogging"
|
||||||
|
"TestURIOptionsSpec")
|
||||||
|
"|"))
|
||||||
|
#:test-subdirs
|
||||||
|
#~(list "bson/..." "event/..." "internal/..." "tag/..." "x/...")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'build) ; no go files in project's root
|
||||||
|
(add-after 'unpack 'remove-examples-and-benchmarks
|
||||||
|
(lambda* (#:key tests? import-path #:allow-other-keys)
|
||||||
|
(with-directory-excursion (string-append "src/" import-path)
|
||||||
|
(for-each delete-file-recursively
|
||||||
|
(list "benchmark"
|
||||||
|
"examples"
|
||||||
|
"cmd/godriver-benchmark"))))))))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-aws-aws-lambda-go))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-davecgh-go-spew
|
||||||
|
go-github-com-golang-snappy
|
||||||
|
go-github-com-google-go-cmp
|
||||||
|
go-github-com-klauspost-compress
|
||||||
|
go-github-com-montanaflynn-stats
|
||||||
|
go-github-com-xdg-go-scram
|
||||||
|
go-github-com-xdg-go-stringprep
|
||||||
|
go-github-com-youmark-pkcs8
|
||||||
|
go-golang-org-x-crypto
|
||||||
|
go-golang-org-x-sync))
|
||||||
|
(home-page "https://go.mongodb.org/mongo-driver")
|
||||||
|
(synopsis "MongoDB Go Driver")
|
||||||
|
(description
|
||||||
|
"This package provides a driver for @code{Mongo} data base.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-go-senan-xyz-flagconf
|
(define-public go-go-senan-xyz-flagconf
|
||||||
(package
|
(package
|
||||||
(name "go-go-senan-xyz-flagconf")
|
(name "go-go-senan-xyz-flagconf")
|
||||||
|
@ -10555,73 +10622,6 @@ also provides V-style logging controlled by the @code{-v} and
|
||||||
(with-directory-excursion (string-append "src/" import-path)
|
(with-directory-excursion (string-append "src/" import-path)
|
||||||
(delete-file-recursively "examples")))))))))
|
(delete-file-recursively "examples")))))))))
|
||||||
|
|
||||||
(define-public go-go-mongodb-org-mongo-driver
|
|
||||||
(package
|
|
||||||
(name "go-go-mongodb-org-mongo-driver")
|
|
||||||
(version "1.16.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/mongodb/mongo-go-driver")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "160hwrk8y8h3nl9sh5v6pxnlyw1ywbssjgzb72lj0x68akgl8gff"))
|
|
||||||
(snippet
|
|
||||||
#~(begin (use-modules (guix build utils))
|
|
||||||
(delete-file-recursively "vendor")))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:import-path "go.mongodb.org/mongo-driver"
|
|
||||||
#:test-flags
|
|
||||||
#~(list "-skip"
|
|
||||||
(string-join
|
|
||||||
;; Some tests require running database and available network
|
|
||||||
;; connection.
|
|
||||||
(list "TestAggregate"
|
|
||||||
"TestPollSRVRecords"
|
|
||||||
"TestPollSRVRecordsServiceName"
|
|
||||||
"TestPollingSRVRecordsLoadBalanced"
|
|
||||||
"TestPollingSRVRecordsSpec"
|
|
||||||
"TestServerHeartbeatOffTimeout"
|
|
||||||
"TestServerHeartbeatTimeout"
|
|
||||||
"TestTimeCodec"
|
|
||||||
"TestTopologyConstructionLogging"
|
|
||||||
"TestURIOptionsSpec")
|
|
||||||
"|"))
|
|
||||||
#:test-subdirs
|
|
||||||
#~(list "bson/..." "event/..." "internal/..." "tag/..." "x/...")
|
|
||||||
#:phases
|
|
||||||
#~(modify-phases %standard-phases
|
|
||||||
(delete 'build) ; no go files in project's root
|
|
||||||
(add-after 'unpack 'remove-examples-and-benchmarks
|
|
||||||
(lambda* (#:key tests? import-path #:allow-other-keys)
|
|
||||||
(with-directory-excursion (string-append "src/" import-path)
|
|
||||||
(for-each delete-file-recursively
|
|
||||||
(list "benchmark"
|
|
||||||
"examples"
|
|
||||||
"cmd/godriver-benchmark"))))))))
|
|
||||||
(native-inputs
|
|
||||||
(list go-github-com-aws-aws-lambda-go))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-github-com-davecgh-go-spew
|
|
||||||
go-github-com-golang-snappy
|
|
||||||
go-github-com-google-go-cmp
|
|
||||||
go-github-com-klauspost-compress
|
|
||||||
go-github-com-montanaflynn-stats
|
|
||||||
go-github-com-xdg-go-scram
|
|
||||||
go-github-com-xdg-go-stringprep
|
|
||||||
go-github-com-youmark-pkcs8
|
|
||||||
go-golang-org-x-crypto
|
|
||||||
go-golang-org-x-sync))
|
|
||||||
(home-page "https://go.mongodb.org/mongo-driver")
|
|
||||||
(synopsis "MongoDB Go Driver")
|
|
||||||
(description
|
|
||||||
"This package provides a driver for @code{Mongo} data base.")
|
|
||||||
(license license:asl2.0)))
|
|
||||||
|
|
||||||
(define-public go-mvdan-cc-editorconfig
|
(define-public go-mvdan-cc-editorconfig
|
||||||
(package
|
(package
|
||||||
(name "go-mvdan-cc-editorconfig")
|
(name "go-mvdan-cc-editorconfig")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue