Packaging Enunciate2
by Ding Yi Chen
Our packages are now supporting enunciate 2,
so just wondering should I go ahead to upgrade to enunciate2
or I create a new package call enunciate2?
Regards,
--
Ding-Yi Chen
Software Engineer
Globalization Group
DID: +61 7 3514 8239
Email: dchen(a)redhat.com
Red Hat, Asia-Pacific Pty Ltd
Level 1, 193 North Quay
Brisbane 4000
Office: +61 7 3514 8100
Fax: +61 7 3514 8199
Website: www.redhat.com
Red Hat, Inc.
Facebook: Red Hat APAC | Red Hat Japan | Red Hat Korea | JBoss APAC
Twitter: Red Hat APAC | Red Hat ANZ
LinkedIn: Red Hat APAC | JBoss APAC
7 years, 3 months
XMvn and javapackages upstream moved to GitHub
by Michael Šimáček
Hello,
I'd like to announce that upstream of javapackages and XMvn projects has
been moved from fedorahosted (which is being decommissioned) to github
under new organization "fedora-java" which is owned by me and mizdebsk.
Both projects are also mirrored on pagure (they already were). Previous
github mirrors under mizdebsk namespace are now obsolete.
Pull requests are welcome on both github and pagure. You can also
contribute by sending patches directly to one of us or attaching them to
bugzilla reports.
The URLs:
https://github.com/fedora-java/xmvn
https://github.com/fedora-java/javapackages
Michael Simacek
7 years, 3 months
javacc 6.1.2 update in rawhide
by Michael Šimáček
Hi everyone,
I plan to update javacc in rawhide to version 6.1.2. The update won't
have any effect on binary RPMs that were already built with old javacc,
but may (and likely will) cause build failures of depending packages
that rely on details of the generated classes (I've seen some packages
even postprocess generated code with regexes).
List of packages that buildrequire javacc:
clapham-0:0.1.003-13.fc24.src
derby-0:10.11.1.1-3.fc24.src
freemarker-0:2.3.23-2.fc24.src
gridengine-0:2011.11p1-31.fc24.src
hornetq-0:2.4.1-8.fc25.src
javacc-0:5.0-14.fc24.src
jing-trang-0:20131210-6.fc24.src
josm-0:0-0.79.10526svn.fc25.src
josql-0:2.2-7.fc24.src
lucene3-0:3.6.2-8.fc24.src
mckoi-0:1.0.4-11.fc24.src
relaxngcc-0:1.12-10.fc24.src
Packages which buildrequire javacc-maven-plugin:
castor-0:1.3.3-3.fc24.src
hornetq-0:2.4.1-8.fc25.src
jacop-0:4.2-4.fc24.src
svgsalamander-0:0.1.39-2.fc24.src
wildfly-0:8.1.0-3.fc22.src
I'll do the update on Friday if there are no objections.
Michael
7 years, 3 months
Hibernate4(.3.11.Final)
by gil
Hi
soon i update hibernate package to 5.0.7.Final
now is available hibernate4 (4.3.11.Final) compat package in rawhide,
and F25
regards
.g
7 years, 4 months
problems to apply patches during the rpmbuild build
by toogley
Hey,
i'm currently trying to understand/apply gil_'s patch for gant (i.e. what exactly does fix my issues).
E.g. i want to apply the simple patch below. But if i put that as test.patch to
~/rpmbuild/SOURCES , and change my gant.spec like below, I receive erros -
although the patch itself applies successfully. I think i have also the correct
path in my patch file, because before the patches are applied, the dictionary is
changed to Gant-1.9.11/ . Also changing the file names in the patchfile doesn't help(
e.g. "--- build.gradle $(date) \n +++ build.gradle-test $(date) " or sth else. )
How can i solve this issue?
--- build.gradle 2014-05-05 17:07:24.000000000 +0200
+++ build.gradle 2016-07-31 15:08:04.902566307 +0200
@@ -194,7 +194,7 @@
final copyrightString = 'Copyright © 2006–2013 The Codehaus. All Rights Reserved.'
javadoc{
options{
- overview 'overview.html'
+ overview '../overview.html'
showAll()
encoding 'UTF-8'
setUse true
@@ -210,7 +210,7 @@
javadoc.options.docTitle = javadoc.title
}
groovydoc{
- overview = 'overview.html'
+ overview = '../overview.html'
includePrivate = false
use = true
windowTitle = packageTitle
@@ -566,7 +566,7 @@
'LICENCE.txt',
'README_Install.txt',
'releaseNotes.txt',
- 'overview.html',
+ '../overview.html',
]
task srcTgz(type: Tar, description: 'Create a tarball of the source.') {
_________________[end snippet]________________________-
%global gmajver 2.3
Name: gant
Version: 1.9.11
Release: 1%{?dist}
Summary: Groovy-based build system that uses Ant tasks
Group: Development/Tools
License: ASL 2.0
URL: http://gant.github.io/
Source0: https://github.com/Gant/Gant/archive/%{version}.tar.gz
Source1: https://repo1.maven.org/maven2/org/codehaus/gant/gant_groovy%{gmajver}/%{...
Source2: %{name}-script
Patch0: test.patch
BuildArch: noarch
BuildRequires: gradle-local
BuildRequires: javapackages-local
BuildRequires: java-devel
BuildRequires: jpackage-utils
BuildRequires: antlr-tool
BuildRequires: objectweb-asm
# main deps
BuildRequires: ant
BuildRequires: apache-commons-cli
BuildRequires: groovy
BuildRequires: gradle
# test deps
BuildRequires: apache-ivy
BuildRequires: junit
Requires: ant
Requires: antlr-tool
Requires: apache-commons-cli
Requires: groovy
Requires: objectweb-asm
Requires: java-devel
%description
Gant is a tool for scripting Ant tasks using Groovy instead of XML [...]
%package javadoc
Group: Documentation
Summary: Javadoc for %{name}
%description javadoc
This package contains javadoc for %{name}.
%prep
%autosetup -n Gant-%{version}
find . -name "*.bat" -delete
find . -name "*.class" -delete
find . -name "*.jar" -delete
%patch0 -p0
%build
sed -i '/metaInf/d' $PWD/build.gradle
%gradle_build --skip-javadoc --xmvn-debug
%install
%mvn_install -J %{_javadocdir}/%{name}
%files -f .mfiles
#%files javadoc -f .mfiles-javadoc
%changelog
* Thu Oct 04 2012 gil cattaneo <puntogil(a)libero.it> 1.9.8-1
- update to 1.9.8
_________________[end snippet]________________________-
$ rpmbuild -bb gant.spec
Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.7YlST9
+ umask 022
+ cd /home/toogley/rpmbuild/BUILD
+ cd /home/toogley/rpmbuild/BUILD
+ rm -rf Gant-1.9.11
+ /usr/bin/gzip -dc /home/toogley/rpmbuild/SOURCES/1.9.11.tar.gz
+ /usr/bin/tar -xof -
+ STATUS=0
+ '[' 0 -ne 0 ']'
+ cd Gant-1.9.11
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ /usr/bin/cat /home/toogley/rpmbuild/SOURCES/test.patch
+ /usr/bin/patch -s
+ find . -name '*.bat' -delete
+ find . -name '*.class' -delete
+ find . -name '*.jar' -delete
+ echo 'Patch #0 (test.patch):'
Patch #0 (test.patch):
+ /usr/bin/patch -p0 --fuzz=0
patching file build.gradle
Reversed (or previously applied) patch detected! Assume -R? [n] n
Apply anyway? [n] y
Hunk #1 FAILED at 194.
Hunk #2 FAILED at 210.
Hunk #3 FAILED at 566.
3 out of 3 hunks FAILED -- saving rejects to file build.gradle.rej
error: Bad exit status from /var/tmp/rpm-tmp.7YlST9 (%prep)
RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.7YlST9 (%prep)
$ rpmbuild -bb gant.spec
Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.RtJaSm
+ umask 022
+ cd /home/toogley/rpmbuild/BUILD
+ cd /home/toogley/rpmbuild/BUILD
+ rm -rf Gant-1.9.11
+ /usr/bin/gzip -dc /home/toogley/rpmbuild/SOURCES/1.9.11.tar.gz
+ /usr/bin/tar -xof -
+ STATUS=0
+ '[' 0 -ne 0 ']'
+ cd Gant-1.9.11
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ /usr/bin/cat /home/toogley/rpmbuild/SOURCES/test.patch
+ /usr/bin/patch -s
+ find . -name '*.bat' -delete
+ find . -name '*.class' -delete
+ find . -name '*.jar' -delete
+ echo 'Patch #0 (test.patch):'
Patch #0 (test.patch):
+ /usr/bin/patch -p0 --fuzz=0
patching file build.gradle
Reversed (or previously applied) patch detected! Assume -R? [n] n
Apply anyway? [n] n
Skipping patch.
3 out of 3 hunks ignored -- saving rejects to file build.gradle.rej
error: Bad exit status from /var/tmp/rpm-tmp.RtJaSm (%prep)
RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.RtJaSm (%prep)
_________________[end snippet]________________________-
7 years, 4 months
avro-1.7.6
by gil
hi
soon i upgrade avro to 1.7.6
regards
.g
7 years, 4 months