Accepting request 1091134 from Java:packages
4.7.3 OBS-URL: https://build.opensuse.org/request/show/1091134 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/picocli?expand=0&rev=4
This commit is contained in:
commit
e323c5e5fa
31
picocli-4.7.3.pom
Normal file
31
picocli-4.7.3.pom
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>info.picocli</groupId>
|
||||||
|
<artifactId>picocli</artifactId>
|
||||||
|
<version>4.7.3</version>
|
||||||
|
<name>picocli</name>
|
||||||
|
<description>Java command line parser with both an annotations API and a programmatic API. Usage help with ANSI styles and colors. Autocomplete. Nested subcommands. Easily included as source to avoid adding a dependency.</description>
|
||||||
|
<url>https://picocli.info</url>
|
||||||
|
<inceptionYear>2018</inceptionYear>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>rpopma</id>
|
||||||
|
<name>Remko Popma</name>
|
||||||
|
<email>rpopma@apache.org</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/remkop/picocli.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://github.com:remkop/picocli.git</developerConnection>
|
||||||
|
<url>https://github.com/remkop/picocli/tree/master</url>
|
||||||
|
</scm>
|
||||||
|
</project>
|
@ -9,18 +9,20 @@
|
|||||||
<property file="build.properties"/>
|
<property file="build.properties"/>
|
||||||
|
|
||||||
<property name="project.artifactId" value="picocli"/>
|
<property name="project.artifactId" value="picocli"/>
|
||||||
<property name="project.version" value="4.6.2"/>
|
<property name="project.version" value="[UNKNOWN]"/>
|
||||||
|
|
||||||
<property name="compiler.source" value="1.8"/>
|
<property name="compiler.source" value="8"/>
|
||||||
<property name="compiler.target" value="${compiler.source}"/>
|
<property name="compiler.target" value="${compiler.source}"/>
|
||||||
|
|
||||||
<property name="build.finalName" value="${project.artifactId}-${project.version}"/>
|
|
||||||
<property name="build.dir" value="target"/>
|
<property name="build.dir" value="target"/>
|
||||||
<property name="build.outputDir" value="${build.dir}/classes"/>
|
<property name="build.outputDir" value="${build.dir}/classes"/>
|
||||||
<property name="build.srcDir" value="src/main/java"/>
|
<property name="build.srcDir" value="src/main/java"/>
|
||||||
|
<property name="build.srcDir9" value="src/main/java9"/>
|
||||||
<property name="build.resourceDir" value="src/main/resources"/>
|
<property name="build.resourceDir" value="src/main/resources"/>
|
||||||
<property name="reporting.outputDirectory" value="${build.dir}/site"/>
|
<property name="reporting.outputDirectory" value="${build.dir}/site"/>
|
||||||
|
|
||||||
|
<property name="jline2.jar" location="[UNKNOWN]"/>
|
||||||
|
|
||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
<!-- Cleaning up target -->
|
<!-- Cleaning up target -->
|
||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
@ -35,6 +37,7 @@
|
|||||||
|
|
||||||
<target name="compile" description="Compile the code">
|
<target name="compile" description="Compile the code">
|
||||||
<mkdir dir="${build.outputDir}"/>
|
<mkdir dir="${build.outputDir}"/>
|
||||||
|
<!-- Build all except module-info.java with source/target 8 -->
|
||||||
<javac destdir="${build.outputDir}"
|
<javac destdir="${build.outputDir}"
|
||||||
nowarn="false"
|
nowarn="false"
|
||||||
debug="true"
|
debug="true"
|
||||||
@ -43,11 +46,107 @@
|
|||||||
target="${compiler.target}"
|
target="${compiler.target}"
|
||||||
verbose="false"
|
verbose="false"
|
||||||
fork="false"
|
fork="false"
|
||||||
source="${compiler.source}">
|
source="${compiler.source}"
|
||||||
|
encoding="UTF-8"
|
||||||
|
createMissingPackageInfoClass="false">
|
||||||
<src>
|
<src>
|
||||||
<pathelement location="${build.srcDir}"/>
|
<pathelement location="${build.srcDir}"/>
|
||||||
</src>
|
</src>
|
||||||
</javac>
|
</javac>
|
||||||
|
<!-- Build module-info.java with release 9 -->
|
||||||
|
<javac destdir="${build.outputDir}"
|
||||||
|
nowarn="false"
|
||||||
|
debug="true"
|
||||||
|
optimize="false"
|
||||||
|
deprecation="true"
|
||||||
|
release="9"
|
||||||
|
verbose="false"
|
||||||
|
fork="false"
|
||||||
|
encoding="UTF-8"
|
||||||
|
createMissingPackageInfoClass="false">
|
||||||
|
<src>
|
||||||
|
<pathelement location="${build.srcDir9}"/>
|
||||||
|
</src>
|
||||||
|
</javac>
|
||||||
|
<!-- Build all except module-info.java with source/target 8 -->
|
||||||
|
<mkdir dir="picocli-codegen/${build.outputDir}"/>
|
||||||
|
<javac destdir="picocli-codegen/${build.outputDir}"
|
||||||
|
nowarn="false"
|
||||||
|
debug="true"
|
||||||
|
optimize="false"
|
||||||
|
deprecation="true"
|
||||||
|
target="${compiler.target}"
|
||||||
|
verbose="false"
|
||||||
|
fork="false"
|
||||||
|
source="${compiler.source}"
|
||||||
|
encoding="UTF-8"
|
||||||
|
createMissingPackageInfoClass="false">
|
||||||
|
<src>
|
||||||
|
<pathelement location="picocli-codegen/${build.srcDir}"/>
|
||||||
|
</src>
|
||||||
|
<classpath>
|
||||||
|
<pathelement location="${build.outputDir}"/>
|
||||||
|
</classpath>
|
||||||
|
</javac>
|
||||||
|
<!-- Build module-info.java with release 9 -->
|
||||||
|
<javac destdir="picocli-codegen/${build.outputDir}"
|
||||||
|
nowarn="false"
|
||||||
|
debug="true"
|
||||||
|
optimize="false"
|
||||||
|
deprecation="true"
|
||||||
|
release="9"
|
||||||
|
verbose="false"
|
||||||
|
fork="false"
|
||||||
|
encoding="UTF-8"
|
||||||
|
createMissingPackageInfoClass="false">
|
||||||
|
<src>
|
||||||
|
<pathelement location="picocli-codegen/${build.srcDir9}"/>
|
||||||
|
</src>
|
||||||
|
<include name="**/module-info.java"/>
|
||||||
|
<modulepath>
|
||||||
|
<pathelement location="${build.outputDir}"/>
|
||||||
|
</modulepath>
|
||||||
|
</javac>
|
||||||
|
<!-- Build all except module-info.java with source/target 8 -->
|
||||||
|
<mkdir dir="picocli-shell-jline2/${build.outputDir}"/>
|
||||||
|
<javac destdir="picocli-shell-jline2/${build.outputDir}"
|
||||||
|
nowarn="false"
|
||||||
|
debug="true"
|
||||||
|
optimize="false"
|
||||||
|
deprecation="true"
|
||||||
|
target="${compiler.target}"
|
||||||
|
verbose="false"
|
||||||
|
fork="false"
|
||||||
|
source="${compiler.source}"
|
||||||
|
encoding="UTF-8"
|
||||||
|
createMissingPackageInfoClass="false">
|
||||||
|
<src>
|
||||||
|
<pathelement location="picocli-shell-jline2/${build.srcDir}"/>
|
||||||
|
</src>
|
||||||
|
<classpath>
|
||||||
|
<pathelement location="${build.outputDir}"/>
|
||||||
|
<pathelement location="${jline2.jar}"/>
|
||||||
|
</classpath>
|
||||||
|
</javac>
|
||||||
|
<!-- Build module-info.java with release 9 -->
|
||||||
|
<javac destdir="picocli-shell-jline2/${build.outputDir}"
|
||||||
|
nowarn="false"
|
||||||
|
debug="true"
|
||||||
|
optimize="false"
|
||||||
|
deprecation="true"
|
||||||
|
release="9"
|
||||||
|
verbose="false"
|
||||||
|
fork="false"
|
||||||
|
encoding="UTF-8"
|
||||||
|
createMissingPackageInfoClass="false">
|
||||||
|
<src>
|
||||||
|
<pathelement location="picocli-shell-jline2/${build.srcDir9}"/>
|
||||||
|
</src>
|
||||||
|
<modulepath>
|
||||||
|
<pathelement location="${build.outputDir}"/>
|
||||||
|
<pathelement location="${jline2.jar}"/>
|
||||||
|
</modulepath>
|
||||||
|
</javac>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
@ -55,11 +154,10 @@
|
|||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
|
|
||||||
<target name="javadoc" description="Generates the Javadoc of the application">
|
<target name="javadoc" description="Generates the Javadoc of the application">
|
||||||
<javadoc sourcepath="${build.srcDir}"
|
<javadoc
|
||||||
packagenames="*"
|
packagenames="*"
|
||||||
destdir="${reporting.outputDirectory}/apidocs"
|
destdir="${reporting.outputDirectory}/apidocs"
|
||||||
access="protected"
|
access="protected"
|
||||||
source="${compiler.source}"
|
|
||||||
verbose="false"
|
verbose="false"
|
||||||
version="true"
|
version="true"
|
||||||
use="true"
|
use="true"
|
||||||
@ -72,9 +170,20 @@
|
|||||||
nohelp="false"
|
nohelp="false"
|
||||||
nonavbar="false"
|
nonavbar="false"
|
||||||
serialwarn="false"
|
serialwarn="false"
|
||||||
charset="ISO-8859-1"
|
encoding="UTF-8"
|
||||||
|
charset="UTF-8"
|
||||||
linksource="false"
|
linksource="false"
|
||||||
breakiterator="false"/>
|
breakiterator="false"
|
||||||
|
source="${compiler.source}"
|
||||||
|
>
|
||||||
|
<sourcepath>
|
||||||
|
<pathelement location="${build.srcDir}"/>
|
||||||
|
<pathelement location="picocli-codegen/${build.srcDir}"/>
|
||||||
|
</sourcepath>
|
||||||
|
<classpath>
|
||||||
|
<pathelement location="${build.outputDir}"/>
|
||||||
|
</classpath>
|
||||||
|
</javadoc>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
@ -82,11 +191,24 @@
|
|||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
|
|
||||||
<target name="package" depends="compile" description="Package the application">
|
<target name="package" depends="compile" description="Package the application">
|
||||||
<jar jarfile="${build.dir}/${build.finalName}.jar"
|
<jar jarfile="${build.dir}/${project.artifactId}-${project.version}.jar"
|
||||||
compress="true"
|
compress="true"
|
||||||
index="false"
|
index="false"
|
||||||
basedir="${build.outputDir}"
|
basedir="${build.outputDir}"
|
||||||
excludes="**/package.html"/>
|
excludes="**/package.html"/>
|
||||||
|
<jar jarfile="${build.dir}/${project.artifactId}-codegen-${project.version}.jar"
|
||||||
|
compress="true"
|
||||||
|
index="false"
|
||||||
|
basedir="picocli-codegen/${build.outputDir}"
|
||||||
|
excludes="**/package.html">
|
||||||
|
<service type="javax.annotation.processing.Processor"
|
||||||
|
provider="picocli.codegen.aot.graalvm.processor.NativeImageConfigGeneratorProcessor"/>
|
||||||
|
</jar>
|
||||||
|
<jar jarfile="${build.dir}/${project.artifactId}-shell-jline2-${project.version}.jar"
|
||||||
|
compress="true"
|
||||||
|
index="false"
|
||||||
|
basedir="picocli-shell-jline2/${build.outputDir}"
|
||||||
|
excludes="**/package.html"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ====================================================================== -->
|
<!-- ====================================================================== -->
|
||||||
|
39
picocli-codegen-4.7.3.pom
Normal file
39
picocli-codegen-4.7.3.pom
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>info.picocli</groupId>
|
||||||
|
<artifactId>picocli-codegen</artifactId>
|
||||||
|
<version>4.7.3</version>
|
||||||
|
<name>picocli-codegen</name>
|
||||||
|
<description>Picocli Code Generation - Tools to generate documentation, configuration, source code and other files from a picocli model.</description>
|
||||||
|
<url>https://picocli.info</url>
|
||||||
|
<inceptionYear>2018</inceptionYear>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>rpopma</id>
|
||||||
|
<name>Remko Popma</name>
|
||||||
|
<email>rpopma@apache.org</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/remkop/picocli.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://github.com:remkop/picocli.git</developerConnection>
|
||||||
|
<url>https://github.com/remkop/picocli/tree/master</url>
|
||||||
|
</scm>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>info.picocli</groupId>
|
||||||
|
<artifactId>picocli</artifactId>
|
||||||
|
<version>4.7.3</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
45
picocli-shell-jline2-4.7.3.pom
Normal file
45
picocli-shell-jline2-4.7.3.pom
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>info.picocli</groupId>
|
||||||
|
<artifactId>picocli-shell-jline2</artifactId>
|
||||||
|
<version>4.7.3</version>
|
||||||
|
<name>picocli-shell-jline2</name>
|
||||||
|
<description>Picocli Shell JLine2 - easily build interactive shell applications with JLine 2 and picocli.</description>
|
||||||
|
<url>https://picocli.info</url>
|
||||||
|
<inceptionYear>2018</inceptionYear>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>rpopma</id>
|
||||||
|
<name>Remko Popma</name>
|
||||||
|
<email>rpopma@apache.org</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/remkop/picocli.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://github.com:remkop/picocli.git</developerConnection>
|
||||||
|
<url>https://github.com/remkop/picocli/tree/master</url>
|
||||||
|
</scm>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>info.picocli</groupId>
|
||||||
|
<artifactId>picocli</artifactId>
|
||||||
|
<version>4.7.3</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>jline</groupId>
|
||||||
|
<artifactId>jline</artifactId>
|
||||||
|
<version>2.14.6</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 5 17:59:16 UTC 2023 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Require java 9 for build so that we can build the module-info.java
|
||||||
|
always
|
||||||
|
- Build all classes with source/target 8 and the module-info.java
|
||||||
|
with release 9, which makes the jars usable with java 8 and higher
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 1 11:46:11 UTC 2023 - Anton Shvetz <shvetz.anton@gmail.com>
|
||||||
|
|
||||||
|
- Upgrade to version 4.7.3
|
||||||
|
* full changes from previous versions are in
|
||||||
|
https://github.com/remkop/picocli/blob/v4.7.3/RELEASE-NOTES.md
|
||||||
|
- Package artifacts: picocli-{codegen,shell-jline2}
|
||||||
|
- JPMS: package module discriptors when building with java >= 9
|
||||||
|
- Take POMs from Maven Central
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 24 09:48:56 UTC 2022 - Fridrich Strba <fstrba@suse.com>
|
Fri Jun 24 09:48:56 UTC 2022 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
74
picocli.spec
74
picocli.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package picocli
|
# spec file for package picocli
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: picocli
|
Name: picocli
|
||||||
Version: 4.6.2
|
Version: 4.7.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Tiny Command Line Interface
|
Summary: Tiny Command Line Interface
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -25,10 +25,15 @@ Group: Development/Libraries/Java
|
|||||||
URL: https://picocli.info/
|
URL: https://picocli.info/
|
||||||
Source0: https://github.com/remkop/%{name}/archive/v%{version}.tar.gz
|
Source0: https://github.com/remkop/%{name}/archive/v%{version}.tar.gz
|
||||||
Source1: %{name}-build.xml
|
Source1: %{name}-build.xml
|
||||||
|
Source2: https://repo1.maven.org/maven2/info/%{name}/%{name}/%{version}/%{name}-%{version}.pom
|
||||||
|
Source3: https://repo1.maven.org/maven2/info/%{name}/%{name}-codegen/%{version}/%{name}-codegen-%{version}.pom
|
||||||
|
Source4: https://repo1.maven.org/maven2/info/%{name}/%{name}-shell-jline2/%{version}/%{name}-shell-jline2-%{version}.pom
|
||||||
BuildRequires: ant
|
BuildRequires: ant
|
||||||
BuildRequires: aqute-bnd
|
BuildRequires: aqute-bnd
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: java-devel >= 9
|
||||||
BuildRequires: javapackages-local
|
BuildRequires: javapackages-local
|
||||||
|
BuildRequires: jline >= 2
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -36,6 +41,29 @@ Java command line parser with both an annotations API and a programmatic API.
|
|||||||
Usage help with ANSI styles and colors. Autocomplete. Nested subcommands.
|
Usage help with ANSI styles and colors. Autocomplete. Nested subcommands.
|
||||||
Easily included as source to avoid adding a dependency.
|
Easily included as source to avoid adding a dependency.
|
||||||
|
|
||||||
|
%package codegen
|
||||||
|
Summary: Picocli Code Generation
|
||||||
|
Group: Development/Libraries/Java
|
||||||
|
|
||||||
|
%description codegen
|
||||||
|
Java command line parser with both an annotations API and a programmatic API.
|
||||||
|
Usage help with ANSI styles and colors. Autocomplete. Nested subcommands.
|
||||||
|
Easily included as source to avoid adding a dependency.
|
||||||
|
|
||||||
|
Tools to generate documentation, configuration, source code and other files
|
||||||
|
from a picocli model.
|
||||||
|
|
||||||
|
%package shell-jline2
|
||||||
|
Summary: Picocli Shell JLine2
|
||||||
|
Group: Development/Libraries/Java
|
||||||
|
|
||||||
|
%description shell-jline2
|
||||||
|
Java command line parser with both an annotations API and a programmatic API.
|
||||||
|
Usage help with ANSI styles and colors. Autocomplete. Nested subcommands.
|
||||||
|
Easily included as source to avoid adding a dependency.
|
||||||
|
|
||||||
|
Library to build interactive shell applications with JLine 2 and picocli.
|
||||||
|
|
||||||
%package javadoc
|
%package javadoc
|
||||||
Summary: Javadoc for %{name}
|
Summary: Javadoc for %{name}
|
||||||
Group: Documentation/HTML
|
Group: Documentation/HTML
|
||||||
@ -44,31 +72,43 @@ Group: Documentation/HTML
|
|||||||
This package contains the API documentation for %{name}.
|
This package contains the API documentation for %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{version}
|
%setup -q
|
||||||
%pom_xpath_set pom:project/pom:version %{version}
|
|
||||||
cp %{SOURCE1} build.xml
|
cp %{SOURCE1} build.xml
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ant jar javadoc
|
%{ant} \
|
||||||
|
-Dproject.version=%{version} \
|
||||||
|
-Djline2.jar=$(find-jar jline/jline) \
|
||||||
|
jar javadoc
|
||||||
|
|
||||||
# Convert to OSGi bundle
|
# Convert to OSGi bundle
|
||||||
bnd wrap \
|
bnd wrap \
|
||||||
--bsn %{name} \
|
--bsn %{name} \
|
||||||
--version %{version} \
|
--version %{version} \
|
||||||
--output target/%{name}-%{version}.bar \
|
--output target/%{name}-%{version}.bar \
|
||||||
--properties bnd.bnd \
|
--properties bnd.bnd \
|
||||||
target/%{name}-%{version}.jar
|
target/%{name}-%{version}.jar
|
||||||
mv target/%{name}-%{version}.bar target/%{name}-%{version}.jar
|
mv target/%{name}-%{version}.bar target/%{name}-%{version}.jar
|
||||||
|
|
||||||
%install
|
%install
|
||||||
#jar
|
#jar
|
||||||
install -dm 0755 %{buildroot}%{_javadir}/%{name}
|
install -dm0755 %{buildroot}%{_javadir}/%{name}
|
||||||
install -pm 0644 target/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}/%{name}.jar
|
install -pm0644 target/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}/%{name}.jar
|
||||||
|
install -pm0644 target/%{name}-codegen-%{version}.jar %{buildroot}%{_javadir}/%{name}/%{name}-codegen.jar
|
||||||
|
install -pm0644 target/%{name}-shell-jline2-%{version}.jar %{buildroot}%{_javadir}/%{name}/%{name}-shell-jline2.jar
|
||||||
|
|
||||||
#pom
|
#pom
|
||||||
install -dm 0755 %{buildroot}%{_mavenpomdir}/%{name}
|
install -dm0755 %{buildroot}%{_mavenpomdir}/%{name}
|
||||||
install -pm 0644 pom.xml %{buildroot}%{_mavenpomdir}/%{name}/%{name}.pom
|
install -pm0644 %{SOURCE2} %{buildroot}%{_mavenpomdir}/%{name}/%{name}.pom
|
||||||
|
install -pm0644 %{SOURCE3} %{buildroot}%{_mavenpomdir}/%{name}/%{name}-codegen.pom
|
||||||
|
install -pm0644 %{SOURCE4} %{buildroot}%{_mavenpomdir}/%{name}/%{name}-shell-jline2.pom
|
||||||
|
|
||||||
%add_maven_depmap %{name}/%{name}.pom %{name}/%{name}.jar
|
%add_maven_depmap %{name}/%{name}.pom %{name}/%{name}.jar
|
||||||
|
%add_maven_depmap %{name}/%{name}-codegen.pom %{name}/%{name}-codegen.jar -f codegen
|
||||||
|
%add_maven_depmap %{name}/%{name}-shell-jline2.pom %{name}/%{name}-shell-jline2.jar -f shell-jline2
|
||||||
|
|
||||||
#javadoc
|
#javadoc
|
||||||
install -dm 0755 %{buildroot}%{_javadocdir}/%{name}
|
install -dm0755 %{buildroot}%{_javadocdir}/%{name}
|
||||||
cp -r target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name}/
|
cp -r target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name}/
|
||||||
%fdupes -s %{buildroot}%{_javadocdir}
|
%fdupes -s %{buildroot}%{_javadocdir}
|
||||||
|
|
||||||
@ -76,6 +116,10 @@ cp -r target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name}/
|
|||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.md
|
%doc README.md
|
||||||
|
|
||||||
|
%files codegen -f .mfiles-codegen
|
||||||
|
|
||||||
|
%files shell-jline2 -f .mfiles-shell-jline2
|
||||||
|
|
||||||
%files javadoc
|
%files javadoc
|
||||||
%{_javadocdir}/%{name}
|
%{_javadocdir}/%{name}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
BIN
v4.6.2.tar.gz
(Stored with Git LFS)
BIN
v4.6.2.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
v4.7.3.tar.gz
Normal file
3
v4.7.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:80ac00b3e60b0c267072d033823f608a5978b28e0809e88896c5bb5a5c5c17e6
|
||||||
|
size 57408450
|
Loading…
x
Reference in New Issue
Block a user