Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 582968 Details for
Bug 819851
added maven pom
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
added maven pom
0001-added-maven-pom.patch (text/plain), 4.08 KB, created by
gil cattaneo
on 2012-05-08 11:48:03 UTC
(
hide
)
Description:
added maven pom
Filename:
MIME Type:
Creator:
gil cattaneo
Created:
2012-05-08 11:48:03 UTC
Size:
4.08 KB
patch
obsolete
>From d1e4491a4d8091505a093eabaa31bbcb9f965855 Mon Sep 17 00:00:00 2001 >From: gil <puntogil@libero.it> >Date: Tue, 8 May 2012 11:47:37 +0200 >Subject: [PATCH] added maven pom > >--- > jffi-1.0.10-pom.patch | 42 ++++++++++++++++++++++++++++++++++++++++++ > jffi.spec | 23 +++++++++++++++++++---- > 2 files changed, 61 insertions(+), 4 deletions(-) > create mode 100644 jffi-1.0.10-pom.patch > >diff --git a/jffi-1.0.10-pom.patch b/jffi-1.0.10-pom.patch >new file mode 100644 >index 0000000..186e181 >--- /dev/null >+++ b/jffi-1.0.10-pom.patch >@@ -0,0 +1,42 @@ >+--- pom.xml 2012-02-02 13:49:48.466906519 +0100 >++++ pom.xml-gil 2012-02-02 13:50:00.574906363 +0100 >+@@ -139,7 +139,7 @@ >+ </executions> >+ </plugin> >+ --> >+- <plugin> >++ <!--plugin> >+ <artifactId>maven-antrun-plugin</artifactId> >+ <version>1.1</version> >+ <executions> >+@@ -212,16 +212,16 @@ >+ </configuration> >+ <executions> >+ <execution> >+- <id>native-assemble</id> <!-- this is used for inheritance merges --> >+- <phase>package</phase> <!-- append to the packaging phase. --> >++ <id>native-assemble</id> this is used for inheritance merges >++ <phase>package</phase> append to the packaging phase. >+ <goals> >+- <goal>single</goal> <!-- goals == mojos --> >++ <goal>single</goal> goals == mojos >+ </goals> >+ </execution> >+ </executions> >+- </plugin> >++ </plugin--> >+ </plugins> >+- <extensions> >++ <!--extensions> >+ <extension> >+ <groupId>org.jvnet.wagon-svn</groupId> >+ <artifactId>wagon-svn</artifactId> >+@@ -231,7 +231,7 @@ >+ <groupId>org.apache.maven.wagon</groupId> >+ <artifactId>wagon-webdav</artifactId> >+ </extension> >+- </extensions> >++ </extensions--> >+ </build> >+ <reporting> >+ <outputDirectory>build/report</outputDirectory> >diff --git a/jffi.spec b/jffi.spec >index 49f9f51..480b376 100644 >--- a/jffi.spec >+++ b/jffi.spec >@@ -3,7 +3,7 @@ > > Name: jffi > Version: 1.0.10 >-Release: 2%{?dist} >+Release: 3%{?dist} > Summary: An optimized Java interface to libffi > > Group: System Environment/Libraries >@@ -13,6 +13,9 @@ Source0: https://download.github.com/%{cluster}-%{name}-%{version}-0-g%{git_comm > Patch0: fix_dependencies_in_build_xml.patch > Patch1: fix_jar_dependencies.patch > Patch2: fix_compilation_flags.patch >+# remove wagon-svn wagon-webdav extensions >+# remove maven-antrun-plugin >+Patch3: jffi-1.0.10-pom.patch > > BuildRequires: java-devel >= 1:1.6.0 > BuildRequires: jpackage-utils >@@ -41,6 +44,7 @@ This package contains the API documentation for %{name}. > %patch0 > %patch1 > %patch2 >+%patch3 -p0 > > # ppc{,64} fix > # https://bugzilla.redhat.com/show_bug.cgi?id=561448#c9 >@@ -69,9 +73,12 @@ mkdir -p $RPM_BUILD_ROOT%{_libdir}/%{name} > mkdir -p $RPM_BUILD_ROOT%{_jnidir} > > cp build/jni/libjffi-1.0.so $RPM_BUILD_ROOT%{_libdir}/%{name}/ >-cp dist/jffi-complete.jar $RPM_BUILD_ROOT%{_libdir}/%{name}/%{name}-%{version}.jar >-ln -s %{name}-%{version}.jar $RPM_BUILD_ROOT%{_libdir}/%{name}/%{name}.jar >-ln -s %{_libdir}/%{name}/%{name}-%{version}.jar $RPM_BUILD_ROOT%{_jnidir}/%{name}.jar >+cp dist/jffi-complete.jar $RPM_BUILD_ROOT%{_libdir}/%{name}/%{name}.jar >+ln -s %{_libdir}/%{name}/%{name}.jar $RPM_BUILD_ROOT%{_jnidir}/%{name}.jar >+ >+mkdir -p $RPM_BUILD_ROOT%{_mavenpomdir} >+install -pm 644 pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom >+%add_maven_depmap JPP-%{name}.pom %{name}.jar > > mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name} > cp -rp dist/javadoc/* $RPM_BUILD_ROOT%{_javadocdir}/jffi >@@ -82,11 +89,19 @@ ant test > %files > %{_libdir}/%{name}/ > %{_jnidir}/* >+%{_mavenpomdir}/JPP-%{name}.pom >+%{_mavendepmapfragdir}/%{name} >+%doc COPYING.* LICENSE > > %files javadoc > %{_javadocdir}/jffi >+%doc COPYING.* LICENSE > > %changelog >+* Tue May 08 2012 gil cattaneo <puntogil@libero.it> 1.0.10-3 >+- add maven pom >+- adapt to current guideline >+ > * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.10-2 > - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild > >-- >1.7.7.6 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 819851
:
582968
|
624214
|
624870