public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Michael Simacek <msimacek@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/hawtjni] epel10: Update to upstream version 1.16
Date: Fri, 17 Jul 2026 09:03:59 GMT	[thread overview]
Message-ID: <178427903948.1.17374956895243430146.rpms-hawtjni-93281e0174d7@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/hawtjni
Branch : epel10
Commit : 93281e0174d79dfd549e57818292b1cbec5a7703
Author : Michael Simacek <msimacek@redhat.com>
Date   : 2018-03-02T13:46:46+01:00
Stats  : +33/-31 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/hawtjni/c/93281e0174d79dfd549e57818292b1cbec5a7703?branch=epel10

Log:
Update to upstream version 1.16

---
diff --git a/.gitignore b/.gitignore
index 4a73cf6..53f7eeb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@
 /hawtjni-project-1.9.tar.gz
 /hawtjni-project-1.10.tar.gz
 /hawtjni-project-1.15.tar.gz
+/hawtjni-fa1fd5dfdd0a1a5a67b61fa7d7ee7126b300c8f0.tar.gz

diff --git a/hawtjni.spec b/hawtjni.spec
index 6452874..e00203e 100644
--- a/hawtjni.spec
+++ b/hawtjni.spec
@@ -1,31 +1,33 @@
 Name:             hawtjni
-Version:          1.15
-Release:          3%{?dist}
+Version:          1.16
+Release:          1%{?dist}
 Summary:          Code generator that produces the JNI code
 License:          ASL 2.0 and EPL and BSD
 URL:              http://hawtjni.fusesource.org/
 BuildArch:        noarch
 
-Source0:          https://github.com/fusesource/hawtjni/archive/hawtjni-project-%{version}.tar.gz
-
-BuildRequires:  maven-local
-BuildRequires:  mvn(commons-cli:commons-cli)
-BuildRequires:  mvn(org.apache.maven:maven-archiver)
-BuildRequires:  mvn(org.apache.maven:maven-artifact)
-BuildRequires:  mvn(org.apache.maven:maven-artifact-manager)
-BuildRequires:  mvn(org.apache.maven:maven-compat)
-BuildRequires:  mvn(org.apache.maven:maven-plugin-api)
-BuildRequires:  mvn(org.apache.maven:maven-project)
-BuildRequires:  mvn(org.apache.maven.plugins:maven-plugin-plugin)
-BuildRequires:  mvn(org.apache.xbean:xbean-finder)
-BuildRequires:  mvn(org.codehaus.plexus:plexus-archiver)
-BuildRequires:  mvn(org.codehaus.plexus:plexus-component-metadata)
-BuildRequires:  mvn(org.codehaus.plexus:plexus-interpolation)
-BuildRequires:  mvn(org.codehaus.plexus:plexus-io)
-BuildRequires:  mvn(org.codehaus.plexus:plexus-utils)
-BuildRequires:  mvn(org.fusesource:fusesource-pom:pom:)
-BuildRequires:  mvn(org.ow2.asm:asm)
-BuildRequires:  mvn(org.ow2.asm:asm-commons)
+# That is the maven-release-plugin generated commit, but it's not tagged for some reason
+# https://github.com/fusesource/hawtjni/issues/46
+%global commit    fa1fd5dfdd0a1a5a67b61fa7d7ee7126b300c8f0
+Source0:          https://github.com/fusesource/hawtjni/archive/%{commit}/hawtjni-%{commit}.tar.gz
+
+BuildRequires:    maven-local
+BuildRequires:    mvn(commons-cli:commons-cli)
+BuildRequires:    mvn(org.apache.maven:maven-archiver)
+BuildRequires:    mvn(org.apache.maven:maven-artifact)
+BuildRequires:    mvn(org.apache.maven:maven-artifact-manager)
+BuildRequires:    mvn(org.apache.maven:maven-plugin-api)
+BuildRequires:    mvn(org.apache.maven:maven-project)
+BuildRequires:    mvn(org.apache.maven.plugins:maven-plugin-plugin)
+BuildRequires:    mvn(org.apache.maven.plugin-tools:maven-plugin-annotations)
+BuildRequires:    mvn(org.apache.xbean:xbean-finder)
+BuildRequires:    mvn(org.codehaus.plexus:plexus-archiver)
+BuildRequires:    mvn(org.codehaus.plexus:plexus-interpolation)
+BuildRequires:    mvn(org.codehaus.plexus:plexus-io)
+BuildRequires:    mvn(org.codehaus.plexus:plexus-utils)
+BuildRequires:    mvn(org.fusesource:fusesource-pom:pom:)
+BuildRequires:    mvn(org.ow2.asm:asm)
+BuildRequires:    mvn(org.ow2.asm:asm-commons)
 
 Requires:         autoconf
 Requires:         automake
@@ -58,20 +60,16 @@ Summary:          Use HawtJNI from a maven plugin
 This package allows to use HawtJNI from a maven plugin.
 
 %prep
-%setup -q -n hawtjni-hawtjni-project-%{version}
+%setup -q -n hawtjni-%{commit}
 
 %pom_disable_module hawtjni-example
-%pom_add_dep org.apache.maven:maven-compat maven-hawtjni-plugin
 %pom_remove_plugin -r :maven-shade-plugin
 %pom_remove_plugin -r :maven-eclipse-plugin
 
-pushd maven-hawtjni-plugin
-%pom_xpath_set 'pom:plugin[pom:artifactId="plexus-maven-plugin"]/pom:artifactId' plexus-component-metadata
-%pom_xpath_set 'pom:plugin[pom:artifactId="plexus-component-metadata"]//pom:goal' generate-metadata
-popd
-
 %mvn_package ":hawtjni-runtime" runtime
-%mvn_package ":maven-hawtjni-plugin" maven-plugin
+%mvn_package ":hawtjni-maven-plugin" maven-plugin
+
+%mvn_alias :hawtjni-maven-plugin :maven-hawtjni-plugin
 
 # javadoc generation fails due to strict doclint in JDK 8
 %pom_remove_plugin :maven-javadoc-plugin hawtjni-runtime
@@ -93,6 +91,9 @@ popd
 %files -n maven-hawtjni-plugin -f .mfiles-maven-plugin
 
 %changelog
+* Mon Feb 26 2018 Michael Simacek <msimacek@redhat.com> - 1.16-1
+- Update to upstream version 1.16
+
 * Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
 

diff --git a/sources b/sources
index 44db691..3683adc 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (hawtjni-project-1.15.tar.gz) = 1a93658bf8621c770cf97b546c6a5c0cf1821b06cb16dbc872ad0c830c599d3947ffe56b4cca16217a510d4e929ebcfc5eabdf4ad4364f5225b53d22c7d48abb
+SHA512 (hawtjni-fa1fd5dfdd0a1a5a67b61fa7d7ee7126b300c8f0.tar.gz) = e934bce3843aa43e641e88d506b23f9b59d2e543ab25c8e824591f9c536bd19f338fb558aa09a99b5ab0c0361df19f683554cf48c5d76e229eb18c48dc5f718c

                 reply	other threads:[~2026-07-17  9:03 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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

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

  git send-email \
    --in-reply-to=178427903948.1.17374956895243430146.rpms-hawtjni-93281e0174d7@fedoraproject.org \
    --to=msimacek@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox