unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Julien Lepiller <julien@lepiller.eu>
To: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Cc: 56212@debbugs.gnu.org
Subject: [bug#56212] [PATCH] gnu: Add maven-release-api
Date: Sat, 25 Jun 2022 13:15:08 +0200	[thread overview]
Message-ID: <20220625131502.691b1ee1@sybil.lepiller.eu> (raw)
In-Reply-To: <871qvd3xgd.fsf@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4592 bytes --]

Thanks for the patch! A few remarks below.

Le Sat, 25 Jun 2022 12:26:58 +0300,
"Artyom V. Poptsov" <poptsov.artyom@gmail.com> a écrit :

> From f071547eaf36804cfe0fc7ee0ef418e2db1abb7a Mon Sep 17 00:00:00 2001
> From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
> Date: Sat, 25 Jun 2022 12:16:29 +0300
> Subject: [PATCH] gnu: Add maven-release-api

Missing full stop in the subject line.

> 
> * gnu/packages/maven.scm (maven-release-api): New variable.
>   (maven-release-parent-pom): New variable.
> ---
>  gnu/packages/maven.scm | 58
> ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58
> insertions(+)
> 
> diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm
> index e5831ee614..7ff2d6d69e 100644
> --- a/gnu/packages/maven.scm
> +++ b/gnu/packages/maven.scm
> @@ -3938,3 +3938,61 @@ method and a end of tag by @code{xxxx_()}
> method.") (description "@samp{Doxia} is a content generation
> framework that provides powerful techniques for generating static and
> dynamic content, supporting a variety of markup languages.")))
> +
> +(define-public maven-release-api
> +  (package
> +    (name "maven-release-api")
> +    (version "3.0.0-M5")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/apache/maven-release")
> +                    (commit (string-append "maven-release-"
> version))))
> +              (file-name (git-file-name "maven-release" version))
> +              (modules '((guix build utils)))
> +              (snippet
> +               '(begin
> +                  ;; XXX: Delete dummy JAR-files.
> +                  (delete-file-recursively
> +
> "maven-release-manager/src/test/remote-repository")
> +                  #t))

No need to end the snippet with #t.

Since we're going to build maven-release-manager at some point (I
suppose?), we'll need these files in order to run the tests. Could you
add something to the snippet to regenerate the files (if that's
possible from the snippet, otherwise we'll regenerate them in a phase
once we have a maven-release-manager package)?

> +              (sha256
> +               (base32
> +
> "13yxjl29jp4zkb8xvy0b045b5fpqz9nais1jsf4r9krczyxyj96k"))))
> +    (build-system ant-build-system)
> +    (propagated-inputs (list maven-release-parent-pom))
> +    (inputs (list maven-repository-metadata
> +                  maven-artifact
> +                  maven-core
> +                  maven-model
> +                  java-eclipse-aether-util
> +                  java-slf4j-api
> +                  java-plexus-utils))

I think most of these inputs should be propagated because the pom file
references these packages in its dependencies:

<dependencies>
  ...
</dependencies>

whatever's not a test dependency will be required at runtime by maven,
so we need to propagate.

> +    (arguments
> +     `(#:jar-name "maven-release-api.jar"
> +       #:source-dir "maven-release-api/src/main/java"
> +       #:tests? #f ; no tests
> +       #:phases (modify-phases %standard-phases
> +                  (replace 'install
> +                    (install-from-pom
> "maven-release-api/pom.xml")))))
> +    (home-page "https://maven.apache.org/maven-release/")
> +    (synopsis "APIs to implement to extend maven-release-plugin")

It's hard to understand this sentence. maybe s/to implement/required/

> +    (description "APIs to implement to extend maven-release-plugin")

This should be full sentences. Can you come up with maybe two sentences
that briefly explain what this package does?

> +    (license license:asl2.0)))
> +
> +(define maven-release-parent-pom
> +  (package
> +    (inherit maven-release-api)
> +    (name "maven-release-parent-pom")
> +    (arguments
> +     `(#:tests? #f                      ; no tests
> +       #:phases (modify-phases %standard-phases
> +                  (delete 'configure)
> +                  (delete 'build)
> +                  (replace 'install
> +                    (install-pom-file "pom.xml")))))
> +    (propagated-inputs
> +     (list maven-parent-pom-34))
> +    (synopsis "Apache Maven Release (Plugin)")
> +    (description "This plugin is used to release a project with
> Maven, saving +a lot of repetitive, manual work.")))

I would replace "(Plugin)" with "parent pom". The description is for
the plugin, not the parent pom, so maybe:

This is the parent for the maven release plugin that is used to release
...

WDYT?

[-- Attachment #2: Signature digitale OpenPGP --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      reply	other threads:[~2022-06-25 11:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-25  9:26 [bug#56212] [PATCH] gnu: Add maven-release-api Artyom V. Poptsov
2022-06-25 11:15 ` Julien Lepiller [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220625131502.691b1ee1@sybil.lepiller.eu \
    --to=julien@lepiller.eu \
    --cc=56212@debbugs.gnu.org \
    --cc=poptsov.artyom@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).