diff options
author | Jakub Kądziołka <kuba@kadziolka.net> | 2020-07-23 21:43:06 +0200 |
---|---|---|
committer | Jakub Kądziołka <kuba@kadziolka.net> | 2020-07-23 21:43:06 +0200 |
commit | d726b954baaeff876ce9728e00920fa45f529f9a (patch) | |
tree | 4b767b7586a1082dd2691bc33c3e45ace044e6e5 /gnu/packages/maven-parent-pom.scm | |
parent | 9a74a7db8626bc139307d115f5cec2648f5273ad (diff) | |
parent | e165a2492d73d37c8b95d6970d453b9d88911ee6 (diff) | |
download | guix-d726b954baaeff876ce9728e00920fa45f529f9a.tar.gz |
Merge branch 'master' into core-updates
Conflicts: gnu/packages/ruby.scm
Diffstat (limited to 'gnu/packages/maven-parent-pom.scm')
-rw-r--r-- | gnu/packages/maven-parent-pom.scm | 545 |
1 files changed, 545 insertions, 0 deletions
diff --git a/gnu/packages/maven-parent-pom.scm b/gnu/packages/maven-parent-pom.scm new file mode 100644 index 0000000000..84af3a1c53 --- /dev/null +++ b/gnu/packages/maven-parent-pom.scm @@ -0,0 +1,545 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu> +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. + +(define-module (gnu packages maven-parent-pom) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix git-download) + #:use-module (guix utils) + #:use-module (guix build-system ant) + #:use-module (gnu packages java)) + +(define (make-apache-parent-pom version hash) + (hidden-package + (package + (name "apache-parent-pom") + (version version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apache/maven-apache-parent") + (commit (string-append "apache-" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 hash)))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (install-pom-file "pom.xml"))))) + (home-page "https://apache.org/") + (synopsis "Apache parent pom") + (description "This package contains the Apache parent POM.") + (license license:asl2.0)))) + +(define-public apache-parent-pom-6 + (make-apache-parent-pom + "6" "1bq0ma2ya2cnp2icd4l20sv6y7zxqr9sa35wzv1s49nqsrm38kw3")) + +(define-public apache-parent-pom-11 + (make-apache-parent-pom + "11" "0m1a4db8s6y8f4vvm9bx7zx7lixcvaah064560nbja7na3xz6lls")) + +(define-public apache-parent-pom-13 + (make-apache-parent-pom + "13" "1cfxaz1jy8fbn06sb648qpiq23swpbj3kb5ya7f9g9jmya5fy09z")) + +(define-public apache-parent-pom-16 + (make-apache-parent-pom + "16" "1y5b0dlc72ijcqfffdbh0k75qwaddy5qw725v9pzhrzqkpaa51xb")) + +(define-public apache-parent-pom-17 + (make-apache-parent-pom + "17" "06hj5d6rdkmwl24k2rvzj8plq8x1ncsbjck4w3awz1hp9gngg4y5")) + +(define-public apache-parent-pom-18 + (make-apache-parent-pom + "18" "1il97vpdmv5k2gnyinj45q00f7f4w9hcb588digwfid5bskddnyy")) + +(define-public apache-parent-pom-19 + (make-apache-parent-pom + "19" "02drnwv2qqk1dmxbmmrk0bi1iil5cal9l47w53ascpbjg6242mp1")) + +(define-public apache-parent-pom-21 + (make-apache-parent-pom + "21" "0clcbrq1b2b8sbvlqddyw2dg5niq25dhdma9sk4b0i30hqaipx96")) + +(define (make-apache-commons-parent-pom version hash parent) + (hidden-package + (package + (name "apache-commons-parent-pom") + (version version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apache/commons-parent") + (commit (string-append "commons-parent-" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 hash)))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (install-pom-file "pom.xml"))))) + (propagated-inputs + (if parent + `(("parent" ,parent)) + '())) + (home-page "https://maven.apache.org/") + (synopsis "Apache Commons parent pom") + (description "This package contains the Apache Commons parent POM.") + (license license:asl2.0)))) + +(define-public apache-commons-parent-pom-39 + (make-apache-commons-parent-pom + "39" "0mjx48a55ik1h4hsxhifkli1flvkp6d05ab14p4al0fc6rhdxi46" + apache-parent-pom-16)) + +(define-public apache-commons-parent-pom-41 + (make-apache-commons-parent-pom + "41" "1k184amdqdx62bb2k0m9v93zzx768qcyam5dvdgksqc1aaqhadlb" + apache-parent-pom-18)) + +(define-public apache-commons-parent-pom-48 + (make-apache-commons-parent-pom + "48" "0dk8qp7swbh4y1q7q34y14yhigzl5yz0ixa8jhhhq91yc2q570iq" + apache-parent-pom-21)) + +(define-public apache-commons-parent-pom-50 + (make-apache-commons-parent-pom + "50" "0ki8px35dan51ashblpw6rdl27c2fq62slazhslhq3lr4fwlpvxs" + apache-parent-pom-21)) + +(define-public java-weld-parent-pom + (hidden-package + (package + (name "java-weld-parent-pom") + (version "36") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/weld/parent") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0rbvizcsma456mw9fvp4dj9cljh97nswvhi04xhczi38j5bgal0m")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'build) + (replace 'install + (install-pom-file "pom.xml"))))) + (home-page "https://github.com/weld/parent") + (synopsis "Pom parent file for weld projects") + (description "This package contains the parent Maven Pom for weld projects.") + (license license:asl2.0)))) + +(define (make-java-sonatype-forge-parent-pom version hash) + (hidden-package + (package + (name "java-sonatype-forge-parent-pom") + (version version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sonatype/oss-parents") + (commit (string-append "forge-parent-" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 hash)))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'build) + (delete 'configure) + (replace 'install + (install-pom-file "pom.xml"))))) + (home-page "https://github.com/sonatype/oss-parents") + (synopsis "Sonatype forge parent pom") + (description "This package contains a single pom.xml file that is used by +other projects as their parent pom.") + (license license:asl2.0)))) + +(define-public java-sonatype-forge-parent-pom-4 + (make-java-sonatype-forge-parent-pom + "4" "1gip239ar20qzy6yf37r6ks54bl7gqi1v49p65manrz84cmad0dh")) + +(define-public java-sonatype-forge-parent-pom-5 + (make-java-sonatype-forge-parent-pom + "5" "0pr60wyjmaml4flmcij6l94b72ryx5gsiiasiwvcvrz9b2fkb3cd")) + +(define-public java-sonatype-forge-parent-pom-6 + (make-java-sonatype-forge-parent-pom + "6" "0sa5wn5kc6y74m9g3azkm5i9d7kvyvgdw7wjlp7bjgy9s5qkbhgz")) + +(define-public java-sonatype-forge-parent-pom-10 + (make-java-sonatype-forge-parent-pom + "10" "1n89wb00q4s9nwpqq6q1h4nzakw1l1rppjygxkl3iid7m5fnj60n")) + +(define-public java-sonatype-spice-parent-pom-15 + (hidden-package + (package + (name "java-sonatype-spice-parent-pom") + (version "15") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sonatype/oss-parents") + ;; The only commit where spice-parent is version 15 + (commit "a4d1169c66fb21b214cb3eff2f056ec3e3695ca7"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0h62h6m31srmqnd1bhyspz6hdhkkv48knkj0ximq3pzdixgzyxgy")))) + (build-system ant-build-system) + (propagated-inputs + `(("java-sonatype-forge-parent-pom-5" ,java-sonatype-forge-parent-pom-5))) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'build) + (delete 'configure) + (replace 'install + (install-pom-file "pom.xml"))))) + (home-page "https://github.com/sonatype/oss-parents") + (synopsis "Sonatype spice parent pom") + (description "This package contains a single pom.xml file that is used by +other projects as their parent pom.") + (license license:asl2.0)))) + +(define-public java-sonatype-spice-parent-pom-17 + (hidden-package + (package + (inherit java-sonatype-spice-parent-pom-15) + (version "17") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sonatype/oss-parents") + (commit "spice-parent-17"))) + (file-name (git-file-name "java-sonatype-spice-parent-pom" version)) + (sha256 + (base32 + "1d4jh1scgnjwhv8f0r052vrksg0kman09hslfvfvpfidl8rwiigq")))) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'build) + (delete 'configure) + (replace 'install + (install-pom-file "spice-parent/pom.xml"))))) + (propagated-inputs + `(("java-sonatype-forge-parent-pom-10" ,java-sonatype-forge-parent-pom-10)))))) + +(define-public java-sonatype-spice-parent-pom-12 + (hidden-package + (package + (inherit java-sonatype-spice-parent-pom-15) + (version "12") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sonatype/oss-parents") + ;; The only commit where spice-parent is version 12 + (commit "95088ae2891f673828351d7d9150240859b4a29a"))) + (file-name (git-file-name "java-sonatype-spice-parent-pom" version)) + (sha256 + (base32 + "0pq5yf6swn43rxdfksnqsky1402zza2xq1aypwma9jkck2yl0vma")))) + (propagated-inputs + `(("java-sonatype-forge-parent-pom-4" ,java-sonatype-forge-parent-pom-4)))))) + +(define-public java-sonatype-oss-parent-pom-7 + (hidden-package + (package + (name "java-sonatype-oss-parent-pom") + (version "7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sonatype/oss-parents") + (commit (string-append "oss-parent-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0lkvkmm51vrrrp79ksq3i2v693279rbn06yxck70ivhjrbq77927")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'build) + (delete 'configure) + (replace 'install + (install-pom-file "pom.xml"))))) + (home-page "https://github.com/sonatype/oss-parents") + (synopsis "Sonatype oss parent pom") + (description "This package contains a single pom.xml file that is used by +other projects as their parent pom.") + (license license:asl2.0)))) + +(define-public java-sonatype-oss-parent-pom-9 + (hidden-package + (package + (inherit java-sonatype-oss-parent-pom-7) + (version "9") + (source (origin + (method url-fetch) + (uri (string-append "https://repo1.maven.org/maven2/org/sonatype/" + "oss/oss-parent/" version "/oss-parent-" + version ".pom")) + (sha256 + (base32 + "0yl2hbwz2kn1hll1i00ddzn8f89bfdcjwdifz0pj2j15k1gjch7v")))) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'unpack) + (delete 'configure) + (delete 'build) + (replace 'install + (install-pom-file (assoc-ref %build-inputs "source"))))))))) + +(define* (make-plexus-parent-pom version hash #:optional parent) + (hidden-package + (package + (name "plexus-parent-pom") + (version version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/codehaus-plexus/plexus-pom") + (commit (string-append "plexus-" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 hash)))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (install-pom-file "pom.xml"))))) + (propagated-inputs + (if parent + `(("parent" ,parent)) + '())) + (home-page "https://codehaus-plexus.github.io/plexus-pom") + (synopsis "Plexus parent pom") + (description "This package contains the Plexus parent POM.") + (license license:asl2.0)))) + +(define-public plexus-parent-pom-3.1 + (make-plexus-parent-pom + "3.1" "0r1wa6zrpzynn4028w7880abkk2xk25mipav5f0a4d1abqzy5m53" + java-sonatype-spice-parent-pom-17)) + +(define-public plexus-parent-pom-4.0 + (make-plexus-parent-pom + "4.0" "15xbvc3cqhdkli8sj2l4hqkvk6icikbj182fbm86ixkamjh5lyfk" + java-sonatype-forge-parent-pom-10)) + +(define-public plexus-parent-pom-5.1 + (make-plexus-parent-pom + "5.1" "1mb87adzyv8lilzd6sw40j5000vhib2p0lgf9zzgggpkh79ddm8v")) + +(define-public plexus-parent-pom-6.1 + (make-plexus-parent-pom + "6.1" "1pisca0fxpgbhf4xdgw5mn86622pg3mc5b8760kf9mk2awazshlj")) + +(define (make-maven-parent-pom version hash parent) + (hidden-package + (package + (name "maven-parent-pom") + (version version) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apache/maven-parent") + (commit (string-append "maven-parent-" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 hash)))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (add-after 'install 'install-plugins + (install-pom-file "maven-plugins/pom.xml")) + (add-after 'install 'install-shared + (install-pom-file "maven-shared-components/pom.xml")) + (replace 'install + (install-pom-file "pom.xml"))))) + (propagated-inputs + `(("parent" ,parent))) + (home-page "https://maven.apache.org/") + (synopsis "Maven parent pom") + (description "Apache Maven is a software project management and comprehension +tool. This package contains the Maven parent POM.") + (license license:asl2.0)))) + +(define-public maven-parent-pom-33 + (make-maven-parent-pom + "33" "1b0z2gsvpccgcssys9jbdfwlwq8b5imdwr508f87ssdbfs29lh65" + apache-parent-pom-21)) + +(define-public maven-parent-pom-31 + (make-maven-parent-pom + "31" "0skxv669v9ffwbmrmybnn9awkf1g3ylk88bz0hv6g11zpj1a8454" + apache-parent-pom-19)) + +(define-public maven-parent-pom-30 + (make-maven-parent-pom + "30" "1w463na38v2054wn1cwbfqy095z13fhil4jmn08dsa4drdvdsjdw" + apache-parent-pom-18)) + +(define-public maven-parent-pom-27 + (let ((base (make-maven-parent-pom + "27" "1s31hi4n99kj7x1cy5dvzwldbjqzk6c3dn20hk61hwhgmkcbf14x" + apache-parent-pom-17))) + (package + (inherit base) + (arguments + (substitute-keyword-arguments (package-arguments base) + ((#:phases phases) + `(modify-phases ,phases + (delete 'install-plugins) + (delete 'install-shared)))))))) + +(define-public maven-parent-pom-15 + (let ((base (make-maven-parent-pom + "15" "154nbc3w9is1dpzlfi1xk03mfksxndnniyzq8mcw2wdbargb5504" + apache-parent-pom-6))) + (package + (inherit base) + (arguments + (substitute-keyword-arguments (package-arguments base) + ((#:phases phases) + `(modify-phases ,phases + (delete 'install-plugins) + (delete 'install-shared)))))))) + +(define-public maven-parent-pom-22 + (let ((base (make-maven-parent-pom + "22" "1kgqbyx7ckashy47n9rgyg4asyrvp933hdiknvnad7msq5d4c2jg" + apache-parent-pom-11))) + (package + (inherit base) + (arguments + (substitute-keyword-arguments (package-arguments base) + ((#:phases phases) + `(modify-phases ,phases + (delete 'install-plugins) + (delete 'install-shared) + (add-before 'install 'fix-versions + (lambda _ + (substitute* "pom.xml" + (("1.5.5") + ,(package-version java-plexus-component-annotations))) + #t))))))))) + +(define-public maven-plugins-pom-23 + (hidden-package + (package + (name "maven-plugins-pom") + (version "23") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/apache/maven-plugins") + (commit (string-append "maven-plugins-" version)))) + (file-name (git-file-name "maven-plugins-pom" version)) + (sha256 + (base32 + "1j50il0c9kirr1cvf6vfr86wxp65lwqm9i4bz304ix12vv6ncxjq")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (install-pom-file "pom.xml"))))) + (propagated-inputs + `(("maven-parent-pom" ,maven-parent-pom-22))) + (home-page "https://github.com/apache/maven-plugins") + (synopsis "Maven parent pom for maven plugins projects") + (description "This package contains the parent pom for maven plugins.") + (license license:asl2.0)))) + +(define-public maven-components-parent-pom-22 + (hidden-package + (package + (name "maven-components-parent-pom") + (version "22") + (source (origin + (method url-fetch) + (uri (string-append "https://repo1.maven.org/maven2/org/apache/" + "maven/shared/maven-shared-components/22/" + "maven-shared-components-22.pom")) + (sha256 + (base32 + "11skhrjgrrs6z5rw1w39ap1pzhrc99g0czip10kz7wsavg746ibm")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + (delete 'unpack) + (delete 'build) + (delete 'configure) + (replace 'install + (install-pom-file (assoc-ref %build-inputs "source")))))) + (propagated-inputs + `(("maven-parent-pom-27" ,maven-parent-pom-27))) + (home-page "https://apache.org/maven") + (synopsis "Parent pom file for the maven components") + (description "This package contains the parent pom files for maven shared +components.") + (license license:lgpl2.1+)))) + +(define-public maven-components-parent-pom-21 + (package + (inherit maven-components-parent-pom-22) + (source (origin + (method url-fetch) + (uri (string-append "https://repo1.maven.org/maven2/org/apache/" + "maven/shared/maven-shared-components/21/" + "maven-shared-components-21.pom")) + (sha256 + (base32 + "0cqa072fz55j5xyvixqv8vbd7jsbhb1cd14bzjvm0hbv2wpd9npf")))))) |