Hello community, here is the log from the commit of package janino for openSUSE:Factory checked in at 2019-11-13 13:28:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/janino (Old) and /work/SRC/openSUSE:Factory/.janino.new.2990 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "janino" Wed Nov 13 13:28:07 2019 rev:1 rq:747892 version:2.7.8 Changes: -------- New Changes file: --- /dev/null 2019-10-24 10:19:07.066239389 +0200 +++ /work/SRC/openSUSE:Factory/.janino.new.2990/janino.changes 2019-11-13 13:28:10.767688327 +0100 @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Tue Nov 12 17:31:50 UTC 2019 - Fridrich Strba <[email protected]> + +- Initial packaging of janino 2.7.8 New: ---- commons-compiler-2.7.8.pom commons-compiler-jdk-2.7.8.pom janino-2.7.8-remove-nullanalysis-annotations.patch janino-2.7.8.pom janino-2.7.8.zip janino-parent-2.7.8.pom janino.changes janino.spec ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ janino.spec ++++++ # # spec file for package janino # # Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2000-2007, JPackage Project # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: janino Version: 2.7.8 Release: 0 Summary: An embedded Java compiler License: BSD-3-Clause Group: Development/Libraries/Java URL: http://janino-compiler.github.io/janino Source0: http://janino.unkrig.de/download/%{name}-%{version}.zip Source1: http://repo1.maven.org/maven2/org/codehaus/%{name}/%{name}-parent/%{version}/%{name}-parent-%{version}.pom Source2: http://repo1.maven.org/maven2/org/codehaus/%{name}/commons-compiler/%{version}/commons-compiler-%{version}.pom Source3: http://repo1.maven.org/maven2/org/codehaus/%{name}/commons-compiler-jdk/%{version}/commons-compiler-jdk-%{version}.pom Source4: http://repo1.maven.org/maven2/org/codehaus/%{name}/%{name}/%{version}/%{name}-%{version}.pom # removes the de.unkrig.commons.nullanalysis annotations # http://unkrig.de/w/Unkrig.de # https://svn.code.sf.net/p/loggifier/code/tags/loggifier_0.9.9.v20140430-1829/de.unkrig.commons.nullanalysis/ Patch0: %{name}-2.7.8-remove-nullanalysis-annotations.patch BuildRequires: dos2unix BuildRequires: fdupes BuildRequires: maven-local BuildRequires: unzip BuildRequires: mvn(org.apache.ant:ant) BuildRequires: mvn(org.codehaus:codehaus-parent:pom:) BuildArch: noarch %description Janino is a super-small, super-fast Java compiler. Not only can it compile a set of source files to a set of class files like the JAVAC tool, but also can it compile a Java expression, block, class body or source file in memory, load the byte-code and execute it directly in the same JVM. Janino is not intended to be a development tool, but an embedded compiler for run-time compilation purposes, e.g. expression evaluators or "server pages" engines like JSP. %package javadoc Summary: Javadoc for %{name} Group: Development/Libraries/Java %description javadoc This package contains javadoc for %{name}. %prep %setup -q find . -name "*.jar" -delete find . -name "*.class" -delete for m in commons-compiler \ commons-compiler-jdk \ %{name};do mkdir -p ${m}/src ( cd ${m}/src/ unzip -qq ../../${m}-src.zip if [ -f org.codehaus.commons.compiler.properties ]; then mkdir -p main/resources mv org.codehaus.commons.compiler.properties main/resources fi ) done %patch0 -p1 install -m 644 %{SOURCE1} pom.xml install -m 644 %{SOURCE2} commons-compiler/pom.xml install -m 644 %{SOURCE3} commons-compiler-jdk/pom.xml install -m 644 %{SOURCE4} %{name}/pom.xml %pom_change_dep -r :ant-nodeps :ant # RHBZ#842604 %pom_xpath_set "pom:plugin[pom:artifactId = 'maven-compiler-plugin']/pom:configuration/pom:source" 1.6 %pom_xpath_set "pom:plugin[pom:artifactId = 'maven-compiler-plugin']/pom:configuration/pom:target" 1.6 dos2unix new_bsd_license.txt README.txt # Cannot run program "svn" %pom_remove_plugin :buildnumber-maven-plugin %pom_remove_plugin :maven-clean-plugin %pom_remove_plugin :maven-deploy-plugin %pom_remove_plugin :maven-site-plugin %pom_remove_plugin :maven-source-plugin %build %{mvn_build} -f -- -Dsource=6 %install %mvn_install %fdupes -s %{buildroot}%{_javadocdir} %files -f .mfiles %doc README.txt %license new_bsd_license.txt %files javadoc -f .mfiles-javadoc %license new_bsd_license.txt %changelog ++++++ commons-compiler-2.7.8.pom ++++++ <?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" > <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.janino</groupId> <artifactId>janino-parent</artifactId> <version>2.7.8</version> </parent> <artifactId>commons-compiler</artifactId> <name>Commons Compiler</name> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project> ++++++ commons-compiler-jdk-2.7.8.pom ++++++ <?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" > <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.janino</groupId> <artifactId>janino-parent</artifactId> <version>2.7.8</version> </parent> <artifactId>commons-compiler-jdk</artifactId> <name>Commons Compiler Jdk</name> <dependencies> <dependency> <groupId>org.codehaus.janino</groupId> <artifactId>commons-compiler</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> </project> ++++++ janino-2.7.8-remove-nullanalysis-annotations.patch ++++++ diff -Nru janino-2.7.8/commons-compiler-jdk/src/org/codehaus/commons/compiler/jdk/package-info.java janino-2.7.8.nullanalysis/commons-compiler-jdk/src/org/codehaus/commons/compiler/jdk/package-info.java --- janino-2.7.8/commons-compiler-jdk/src/org/codehaus/commons/compiler/jdk/package-info.java 2014-12-17 22:06:58.000000000 +0100 +++ janino-2.7.8.nullanalysis/commons-compiler-jdk/src/org/codehaus/commons/compiler/jdk/package-info.java 2015-02-11 04:39:15.055288383 +0100 @@ -25,8 +25,5 @@ */ /** Main package of the plugin. */ -@NotNullByDefault package org.codehaus.commons.compiler.jdk; -import de.unkrig.commons.nullanalysis.NotNullByDefault; - diff -Nru janino-2.7.8/commons-compiler-jdk/src/org/codehaus/commons/io/package-info.java janino-2.7.8.nullanalysis/commons-compiler-jdk/src/org/codehaus/commons/io/package-info.java --- janino-2.7.8/commons-compiler-jdk/src/org/codehaus/commons/io/package-info.java 2014-12-17 22:07:00.000000000 +0100 +++ janino-2.7.8.nullanalysis/commons-compiler-jdk/src/org/codehaus/commons/io/package-info.java 2015-02-11 04:38:47.904850661 +0100 @@ -25,8 +25,5 @@ */ /** I/O utilities. */ -@NotNullByDefault package org.codehaus.commons.io; -import de.unkrig.commons.nullanalysis.NotNullByDefault; - ++++++ janino-2.7.8.pom ++++++ <?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" > <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.janino</groupId> <artifactId>janino-parent</artifactId> <version>2.7.8</version> </parent> <artifactId>janino</artifactId> <name>Janino</name> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant-nodeps</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.codehaus.janino</groupId> <artifactId>commons-compiler</artifactId> </dependency> </dependencies> </project> ++++++ janino-parent-2.7.8.pom ++++++ <?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" > <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus</groupId> <artifactId>codehaus-parent</artifactId> <version>4</version> </parent> <groupId>org.codehaus.janino</groupId> <artifactId>janino-parent</artifactId> <version>2.7.8</version> <packaging>pom</packaging> <name>Janino Parent</name> <description> Janino is a compiler that reads a JavaTM expression, block, class body, source file or a set of source files, and generates JavaTM bytecode that is loaded and executed directly. Janino is not intended to be a development tool, but an embedded compiler for run-time compilation purposes, e.g. expression evaluators or "server pages" engines like JSP. </description> <url>http://docs.codehaus.org/display/JANINO/Home</url> <inceptionYear>2001</inceptionYear> <licenses> <license> <name>New BSD License</name> <url>http://dist.codehaus.org/janino/new_bsd_license.txt</url> <distribution>repo</distribution> </license> </licenses> <mailingLists> <mailingList> <name>Development List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <post>[email protected]</post> <archive>http://archive.janino.codehaus.org/dev/</archive> </mailingList> <mailingList> <name>User List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <post>[email protected]</post> <archive>http://archive.janino.codehaus.org/user/</archive> </mailingList> <mailingList> <name>Commits List</name> <subscribe>[email protected]</subscribe> <unsubscribe>[email protected]</unsubscribe> <archive>http://archive.janino.codehaus.org/scm/</archive> </mailingList> </mailingLists> <developers> <developer> <id>aunkrig</id> <name>Arno Unkrig</name> <roles> <role>Despot</role> <role>Developer</role> </roles> </developer> </developers> <modules> <module>commons-compiler</module> <module>commons-compiler-jdk</module> <module>janino</module> </modules> <scm> <connection>scm:svn:http://svn.codehaus.org/janino/tags/janino_2.7.8/</connection> <developerConnection>scm:svn:https://svn.codehaus.org/janino/tags/janino_2.7.8/</developerConnection> <url>http://fisheye.codehaus.org/browse/janino/tags/janino_2.7.8/</url> </scm> <issueManagement> <system>Jira</system> <url>http://jira.codehaus.org/browse/JANINO</url> </issueManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.codehaus.janino</groupId> <artifactId>commons-compiler</artifactId> <version>2.7.8</version> </dependency> <dependency> <groupId>org.codehaus.janino</groupId> <artifactId>commons-compiler-jdk</artifactId> <version>2.7.8</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant-nodeps</artifactId> <version>1.7.1</version> <optional>true</optional> </dependency> </dependencies> </dependencyManagement> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>tests</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3</version> <configuration> <source>1.2</source> <target>1.1</target> <testSource>1.6</testSource> <testTarget>1.6</testTarget> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> <configuration> <test>**/*Tests</test> <failIfNoTests>false</failIfNoTests> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.0-beta-2</version> <configuration> <format>{0,date,yyyy-MM-dd HH:mm:ss}</format> <items> <item>timestamp</item> </items> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.4.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>2.0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.1.2</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>reporting</id> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.4.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.1</version> <configuration> <inputEncoding>${project.build.sourceEncoding}</inputEncoding><!-- not needed in 2.2 --> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.1.1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> <version>2.0-beta-2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javancss-maven-plugin</artifactId> <version>2.0</version> </plugin> </plugins> </reporting> </profile> </profiles> </project>
