gnu: java-jsr250: Use proper source.

Sources from maven.org are autogenerated, not actual sources.

* gnu/packages/java.scm (java-jsr250)[source]: Use git repository.
* gnu/packages/maven.scm (maven-embedder): Fix pom to use it.
This commit is contained in:
Julien Lepiller 2021-12-20 02:53:11 +01:00
parent 137a7af178
commit 89bc233f3e
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82
2 changed files with 11 additions and 9 deletions

View file

@ -6241,14 +6241,14 @@ (define-public java-jsr250
(name "java-jsr250")
(version "1.3")
(source (origin
(method url-fetch)
(uri (string-append "https://repo1.maven.org/maven2/"
"javax/annotation/javax.annotation-api/"
version "/javax.annotation-api-"
version "-sources.jar"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/javaee/javax.annotation")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"08clh8n4n9wfglf75qsqfjs6yf79f7x6hqx38cn856pksszv50kz"))))
"1g22a9d75g01s9yxgdig0ss7i30j4ysnnp08gn4krn0wly4lpqq0"))))
(build-system ant-build-system)
(arguments
`(#:tests? #f ; no tests included
@ -6256,11 +6256,9 @@ (define-public java-jsr250
#:jar-name "jsr250.jar"
#:phases
(modify-phases %standard-phases
(add-before 'install 'create-pom
(generate-pom.xml "pom.xml" "javax.annotation" "jsr250-api" ,version
#:name "jsr250"))
(replace 'install
(install-from-pom "pom.xml")))))
(propagated-inputs (list java-jvnet-parent-pom-3))
(home-page "https://jcp.org/en/jsr/detail?id=250")
(synopsis "Security-related annotations")
(description "This package provides annotations for security. It provides

View file

@ -1740,6 +1740,10 @@ (define (modello-single-mode file version mode)
(("srcdir=\"maven-embedder/src/test\"")
"srcdir=\"maven-embedder/src/test/java\""))
#t))
(add-before 'install 'fix-pom
(lambda _
(substitute* "maven-embedder/pom.xml"
(("jsr250-api") "javax.annotation-api"))))
(replace 'install
(install-from-pom "maven-embedder/pom.xml")))))
(propagated-inputs