2007-04-26 16:20:20 +00:00
|
|
|
# Copyright (c) 2000-2007, JPackage Project
|
2006-07-20 16:45:38 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name of the JPackage Project nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
|
|
|
|
Name: bsh
|
|
|
|
Version: 1.3.0
|
2013-07-10 12:18:42 +00:00
|
|
|
Release: 26%{?dist}
|
2007-03-16 15:51:11 +00:00
|
|
|
Epoch: 0
|
2004-09-09 03:38:07 +00:00
|
|
|
Summary: Lightweight Scripting for Java
|
2012-11-20 09:40:28 +00:00
|
|
|
License: (SPL or LGPLv2+) and Public Domain
|
2006-07-20 16:45:38 +00:00
|
|
|
Source0: %{name}-%{version}-src.tar.bz2
|
2007-03-16 15:51:11 +00:00
|
|
|
#cvs -d:pserver:anonymous@beanshell.cvs.sourceforge.net:/cvsroot/beanshell login
|
|
|
|
#cvs -z3 -d:pserver:anonymous@beanshell.cvs.sourceforge.net:/cvsroot/beanshell export -r rel_1_3_0_final BeanShell
|
|
|
|
#tar cjf bsh-1.3.0-src.tar.bz2 BeanShell
|
2008-01-21 19:07:37 +00:00
|
|
|
Source1: bsh-1.3.0.pom
|
|
|
|
Source2: bsh-bsf-1.3.0.pom
|
2008-03-06 13:18:43 +00:00
|
|
|
Source3: %{name}-desktop.desktop
|
2008-01-21 19:07:37 +00:00
|
|
|
|
2007-03-16 15:51:11 +00:00
|
|
|
Patch0: %{name}-build.patch
|
2010-11-25 13:50:10 +00:00
|
|
|
Patch1: %{name}-xsl-fixes.patch
|
|
|
|
BuildRequires: java >= 1:1.6.0
|
2013-06-06 07:22:33 +00:00
|
|
|
BuildRequires: ant, bsf, ImageMagick, desktop-file-utils
|
2008-01-21 19:07:37 +00:00
|
|
|
BuildRequires: servlet
|
2010-11-25 13:50:10 +00:00
|
|
|
Requires: java >= 1:1.6.0
|
2007-03-16 15:51:11 +00:00
|
|
|
Requires: bsf
|
2010-01-09 13:50:46 +00:00
|
|
|
URL: http://www.beanshell.org/
|
|
|
|
BuildArch: noarch
|
2006-07-20 16:45:38 +00:00
|
|
|
|
2004-09-09 03:38:07 +00:00
|
|
|
%description
|
|
|
|
BeanShell is a small, free, embeddable, Java source interpreter with
|
|
|
|
object scripting language features, written in Java. BeanShell executes
|
|
|
|
standard Java statements and expressions, in addition to obvious
|
|
|
|
scripting commands and syntax. BeanShell supports scripted objects as
|
|
|
|
simple method closures like those in Perl and JavaScript(tm).
|
|
|
|
You can use BeanShell interactively for Java experimentation and
|
|
|
|
debugging or as a simple scripting engine for your applications. In
|
|
|
|
short: BeanShell is a dynamically interpreted Java, plus some useful
|
|
|
|
stuff. Another way to describe it is to say that in many ways BeanShell
|
|
|
|
is to Java as Tcl/Tk is to C: BeanShell is embeddable - You can call
|
|
|
|
BeanShell from your Java applications to execute Java code dynamically
|
|
|
|
at run-time or to provide scripting extensibility for your applications.
|
|
|
|
Alternatively, you can call your Java applications and objects from
|
|
|
|
BeanShell; working with Java objects and APIs dynamically. Since
|
|
|
|
BeanShell is written in Java and runs in the same space as your
|
|
|
|
application, you can freely pass references to "real live" objects into
|
|
|
|
scripts and return them as results.
|
|
|
|
|
|
|
|
%package manual
|
|
|
|
Summary: Manual for %{name}
|
|
|
|
|
|
|
|
%description manual
|
|
|
|
Documentation for %{name}.
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
Summary: Javadoc for %{name}
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
Javadoc for %{name}.
|
|
|
|
|
|
|
|
%package demo
|
|
|
|
Summary: Demo for %{name}
|
2007-03-16 15:51:11 +00:00
|
|
|
AutoReqProv: no
|
2004-09-09 03:38:07 +00:00
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
%description demo
|
|
|
|
Demonstrations and samples for %{name}.
|
|
|
|
|
2010-11-25 20:40:38 +00:00
|
|
|
%package utils
|
|
|
|
Summary: %{name} utilities
|
2008-03-10 13:59:44 +00:00
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
2010-11-25 20:44:33 +00:00
|
|
|
Requires: jline
|
2010-11-25 20:40:38 +00:00
|
|
|
Provides: %{name}-desktop = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: %{name}-desktop < 0:1.3.0-17
|
|
|
|
# So that yum will pull this in on base package upgrades from < 0:1.3.0-17
|
|
|
|
# (bsh and bshdoc scripts moved here in -17):
|
|
|
|
Obsoletes: %{name} < 0:1.3.0-17
|
2008-03-10 13:59:44 +00:00
|
|
|
|
2010-11-25 20:40:38 +00:00
|
|
|
%description utils
|
|
|
|
%{name} utilities.
|
2008-03-10 13:59:44 +00:00
|
|
|
|
2004-09-09 03:38:07 +00:00
|
|
|
%prep
|
2006-07-20 16:45:38 +00:00
|
|
|
%setup -q -n BeanShell
|
2004-09-09 03:38:07 +00:00
|
|
|
%patch0 -p1
|
2010-11-25 13:50:10 +00:00
|
|
|
%patch1 -p1
|
2008-01-21 19:07:37 +00:00
|
|
|
for j in $(find . -name "*.jar"); do
|
|
|
|
mv $j $j.no
|
|
|
|
done
|
2004-09-09 03:38:07 +00:00
|
|
|
# remove all CVS files
|
|
|
|
for dir in `find . -type d -name CVS`; do rm -rf $dir; done
|
|
|
|
for file in `find . -type f -name .cvsignore`; do rm -rf $file; done
|
2007-03-16 15:51:11 +00:00
|
|
|
# fix rpmlint spurious-executable-perm warnings
|
|
|
|
for i in backbutton forwardbutton homebutton remoteconsole upbutton; do
|
|
|
|
chmod 644 docs/images/$i.gif
|
|
|
|
done
|
2004-09-09 03:38:07 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
mkdir -p lib
|
2008-01-21 19:07:37 +00:00
|
|
|
pushd lib
|
|
|
|
ln -sf $(build-classpath bsf)
|
|
|
|
ln -sf $(build-classpath servlet)
|
|
|
|
popd
|
2010-11-25 20:47:53 +00:00
|
|
|
ant="ant -Dant.build.javac.source=1.5"
|
2013-06-06 07:22:33 +00:00
|
|
|
$ant test dist
|
2010-11-25 20:47:53 +00:00
|
|
|
(cd docs/faq && $ant)
|
|
|
|
(cd docs/manual && $ant)
|
2004-09-09 03:38:07 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
# jars
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
|
2013-07-10 13:26:59 +00:00
|
|
|
for mod in '' bsf classpath commands core reflect util; do
|
|
|
|
install -p -m 644 dist/%{name}${mod:+-${mod}}-%{version}.jar \
|
|
|
|
$RPM_BUILD_ROOT%{_javadir}/%{name}${mod:+-${mod}}.jar
|
|
|
|
done
|
|
|
|
|
2008-01-21 19:07:37 +00:00
|
|
|
%add_to_maven_depmap %{name} %{name} %{version} JPP %{name}
|
2012-11-01 15:24:16 +00:00
|
|
|
%add_to_maven_depmap org.beanshell %{name} %{version} JPP %{name}
|
2008-01-21 19:07:37 +00:00
|
|
|
%add_to_maven_depmap %{name} %{name}-bsf %{version} JPP %{name}-bsf
|
|
|
|
|
|
|
|
# poms
|
2013-07-10 13:32:40 +00:00
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
|
2008-01-21 19:07:37 +00:00
|
|
|
install -pm 644 %{SOURCE1} \
|
2013-07-10 13:32:40 +00:00
|
|
|
$RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom
|
2008-01-21 19:07:37 +00:00
|
|
|
install -pm 644 %{SOURCE2} \
|
2013-07-10 13:32:40 +00:00
|
|
|
$RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}-bsf.pom
|
2008-01-21 19:07:37 +00:00
|
|
|
|
2004-09-09 03:38:07 +00:00
|
|
|
# manual
|
|
|
|
find docs -name ".cvswrappers" -exec rm -f {} \;
|
|
|
|
find docs -name "*.xml" -exec rm -f {} \;
|
|
|
|
find docs -name "*.xsl" -exec rm -f {} \;
|
|
|
|
find docs -name "*.log" -exec rm -f {} \;
|
|
|
|
(cd docs/manual && mv html/* .)
|
|
|
|
(cd docs/manual && rm -rf html)
|
|
|
|
(cd docs/manual && rm -rf xsl)
|
|
|
|
# javadoc
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
|
|
|
cp -pr javadoc/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
2007-04-26 16:20:20 +00:00
|
|
|
ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
2008-03-06 13:18:43 +00:00
|
|
|
# menu entry
|
2013-02-14 07:21:26 +00:00
|
|
|
desktop-file-install --mode=644 \
|
2008-03-06 13:18:43 +00:00
|
|
|
--dir=$RPM_BUILD_ROOT%{_datadir}/applications %{SOURCE3}
|
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps
|
|
|
|
convert src/bsh/util/lib/icon.gif \
|
|
|
|
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/bsh.png
|
2007-04-26 16:20:20 +00:00
|
|
|
|
2004-09-09 03:38:07 +00:00
|
|
|
# demo
|
|
|
|
for i in `find tests -name \*.bsh`; do
|
|
|
|
perl -p -i -e 's,^\n?#!(/(usr/)?bin/java bsh\.Interpreter|/bin/sh),#!/usr/bin/env %{_bindir}/%{name},' $i
|
|
|
|
if head -1 $i | grep '#!/usr/bin/env %{_bindir}/%{name}' >/dev/null; then
|
|
|
|
chmod 755 $i
|
|
|
|
fi
|
|
|
|
done
|
2007-03-16 15:51:11 +00:00
|
|
|
chmod 755 tests/Template
|
|
|
|
cat > one << EOF
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
EOF
|
|
|
|
cat tests/Interactive/reload/one >> one
|
|
|
|
cat one > tests/Interactive/reload/one
|
|
|
|
rm one
|
|
|
|
cat > two << EOF
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
EOF
|
|
|
|
cat tests/Interactive/reload/two >> two
|
|
|
|
cat two > tests/Interactive/reload/two
|
|
|
|
rm two
|
2004-09-09 03:38:07 +00:00
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}
|
|
|
|
cp -pr tests $RPM_BUILD_ROOT%{_datadir}/%{name}
|
2008-01-21 19:07:37 +00:00
|
|
|
install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}/webapps
|
|
|
|
install -m 644 dist/bshservlet.war $RPM_BUILD_ROOT%{_datadir}/%{name}/webapps
|
|
|
|
install -m 644 dist/bshservlet-wbsh.war $RPM_BUILD_ROOT%{_datadir}/%{name}/webapps
|
|
|
|
|
2004-09-09 03:38:07 +00:00
|
|
|
# scripts
|
|
|
|
install -d $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
|
2013-07-10 13:24:42 +00:00
|
|
|
%jpackage_script jline.ConsoleRunner "\\${BSH_DEBUG:+-Ddebug=true}" bsh.Interpreter %{name}:jline %{name} true
|
|
|
|
%jpackage_script bsh.Console "\\${BSH_DEBUG:+-Ddebug=true}" "" %{name} %{name}-console true
|
2004-09-09 03:38:07 +00:00
|
|
|
|
|
|
|
cat > $RPM_BUILD_ROOT%{_bindir}/%{name}doc << EOF
|
|
|
|
#!/usr/bin/env %{_bindir}/%{name}
|
|
|
|
EOF
|
|
|
|
cat scripts/bshdoc.bsh >> $RPM_BUILD_ROOT%{_bindir}/%{name}doc
|
|
|
|
|
2010-11-25 20:40:38 +00:00
|
|
|
%post utils
|
2013-02-14 07:21:26 +00:00
|
|
|
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
2008-03-10 13:59:44 +00:00
|
|
|
|
|
|
|
%post
|
2008-01-21 19:07:37 +00:00
|
|
|
%update_maven_depmap
|
2006-07-20 16:45:38 +00:00
|
|
|
|
2010-11-25 20:40:38 +00:00
|
|
|
%postun utils
|
|
|
|
if [ $1 -eq 0 ] ; then
|
2013-02-14 07:21:26 +00:00
|
|
|
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
|
|
|
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
2008-03-06 13:18:43 +00:00
|
|
|
fi
|
2008-03-10 13:59:44 +00:00
|
|
|
|
|
|
|
%postun
|
2008-01-21 19:07:37 +00:00
|
|
|
%update_maven_depmap
|
2006-07-20 16:45:38 +00:00
|
|
|
|
2010-11-25 20:40:38 +00:00
|
|
|
%posttrans utils
|
2013-02-14 07:21:26 +00:00
|
|
|
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
2010-11-25 20:40:38 +00:00
|
|
|
|
2004-09-09 03:38:07 +00:00
|
|
|
%files
|
|
|
|
%doc src/Changes.html src/License.txt src/README.txt
|
|
|
|
%{_javadir}/*
|
|
|
|
%dir %{_datadir}/%{name}
|
2008-01-21 19:07:37 +00:00
|
|
|
%{_datadir}/%{name}/webapps
|
2013-07-10 13:32:40 +00:00
|
|
|
%{_mavenpomdir}/*
|
2012-11-20 09:11:02 +00:00
|
|
|
%{_mavendepmapfragdir}/%{name}
|
2004-09-09 03:38:07 +00:00
|
|
|
|
|
|
|
%files manual
|
|
|
|
%doc docs/*
|
|
|
|
|
|
|
|
%files javadoc
|
|
|
|
%{_javadocdir}/%{name}-%{version}
|
2007-04-26 16:20:20 +00:00
|
|
|
%{_javadocdir}/%{name}
|
2004-09-09 03:38:07 +00:00
|
|
|
|
|
|
|
%files demo
|
2007-03-16 15:51:11 +00:00
|
|
|
%doc tests/README.txt tests/Interactive/README
|
2004-09-09 03:38:07 +00:00
|
|
|
%{_datadir}/%{name}/*
|
|
|
|
|
2010-11-25 20:40:38 +00:00
|
|
|
%files utils
|
|
|
|
%attr(0755,root,root) %{_bindir}/%{name}*
|
2013-02-14 07:21:26 +00:00
|
|
|
%{_datadir}/applications/%{name}-desktop.desktop
|
2008-03-10 13:59:44 +00:00
|
|
|
%{_datadir}/icons/hicolor/*x*/apps/%{name}.png
|
|
|
|
|
2004-09-09 03:38:07 +00:00
|
|
|
%changelog
|
2013-07-10 12:18:42 +00:00
|
|
|
* Wed Jul 10 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3.0-26
|
|
|
|
- Remove arch-specific conditionals
|
2013-07-10 12:20:24 +00:00
|
|
|
- Remove group tags
|
2013-07-10 12:21:13 +00:00
|
|
|
- Remove Requires on jpackage-utils
|
2013-07-10 12:24:01 +00:00
|
|
|
- Remove Requires on coreutils
|
2013-07-10 13:24:42 +00:00
|
|
|
- Generate custom scripts with %%jpackage_script
|
2013-07-10 13:26:59 +00:00
|
|
|
- Install versionless JARs only
|
2013-07-10 13:32:40 +00:00
|
|
|
- Install POM files to %%{_mavenpomdir}
|
2013-07-10 12:18:42 +00:00
|
|
|
|
2013-06-06 07:22:33 +00:00
|
|
|
* Thu Jun 06 2013 Michal Srb <msrb@redhat.com> - 0:1.3.0-25
|
|
|
|
- Enable tests
|
|
|
|
- Fix BR
|
|
|
|
|
2013-02-14 07:21:26 +00:00
|
|
|
* Thu Feb 14 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 0:1.3.0-24
|
|
|
|
- remove vendor tag from desktop file. https://fedorahosted.org/fpc/ticket/247
|
|
|
|
- clean up spec to follow current guidelines
|
|
|
|
|
2013-02-13 18:03:46 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-23
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-20 09:11:02 +00:00
|
|
|
* Tue Nov 20 2012 David Tardon <dtardon@redhat.com> - 0:1.3.0-22
|
|
|
|
- Resolves: rhbz#850008 bsh - Should not own /usr/share/maven-fragments
|
|
|
|
directory
|
2012-11-20 09:36:16 +00:00
|
|
|
- Resolves: rhbz#878163 bsh - javadoc subpackage doesn't require
|
|
|
|
jpackage-utils
|
2012-11-20 09:40:28 +00:00
|
|
|
- Resolves: rhbz#878166 bsh: Public Domain not listed in license tag
|
2012-11-20 09:11:02 +00:00
|
|
|
|
2012-11-01 15:24:16 +00:00
|
|
|
* Thu Nov 1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3.0-21
|
|
|
|
- Add additional maven depmap
|
|
|
|
|
2012-07-18 18:18:23 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-20
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-12 22:51:20 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-19
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-08 05:53:37 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-11-25 20:40:38 +00:00
|
|
|
* Thu Nov 25 2010 Ville Skyttä <ville.skytta@iki.fi> - 0:1.3.0-17
|
|
|
|
- Rename -desktop to -utils, move shell scripts and menu entry to it (#417491).
|
|
|
|
- Bring icon cache scriptlets up to date with current guidelines.
|
2010-11-25 20:44:33 +00:00
|
|
|
- Use jline in bsh script for command history support.
|
2010-11-25 20:47:11 +00:00
|
|
|
- Prefer JRE over SDK when finding JVM to invoke in scripts.
|
2010-11-25 20:47:53 +00:00
|
|
|
- Build with -source 1.5.
|
2010-11-25 20:40:38 +00:00
|
|
|
|
2010-11-25 13:50:10 +00:00
|
|
|
* Thu Nov 25 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.3.0-16
|
|
|
|
- Fix pom filenames (Resolves rhbz#655791)
|
|
|
|
- Fix xsl errors when building docs
|
|
|
|
|
2010-01-09 13:50:46 +00:00
|
|
|
* Sat Jan 9 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.3.0-15.2
|
|
|
|
- Drop gcj_support.
|
|
|
|
- Fix rpmlint warnings.
|
|
|
|
|
2009-09-21 18:03:46 +00:00
|
|
|
* Mon Sep 21 2009 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-15.1
|
|
|
|
- Do not build manual and faq for ppc64 or s390x as the style task is disabled
|
|
|
|
|
2009-07-24 18:27:06 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-24 05:56:44 +00:00
|
|
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-07-09 17:15:38 +00:00
|
|
|
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:1.3.0-13
|
|
|
|
- drop repotag
|
|
|
|
- fix license tag
|
|
|
|
|
2008-03-10 13:59:44 +00:00
|
|
|
* Mon Mar 10 2008 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-12jpp.3
|
|
|
|
- Fix bugzilla 436675. Separate menu entry into desktop subpackage.
|
|
|
|
|
2008-03-06 13:18:43 +00:00
|
|
|
* Thu Mar 06 2008 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-12jpp.2
|
|
|
|
- Fix bugzilla 417491. Thanks Ville Skytta for the patch.
|
|
|
|
- Add menu entry and startup script for bsh desktop.
|
|
|
|
- Ensure scriptlets exit with zero exit status.
|
|
|
|
|
2008-02-19 17:45:19 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:1.3.0-12jpp.1
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-21 19:07:37 +00:00
|
|
|
* Mon Jan 21 2008 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-11jpp.1
|
|
|
|
- Merge with upstream
|
|
|
|
|
|
|
|
* Thu Jul 12 2007 Ralph Apel <r.apel at r-apel.de> 0:1.3.0-11jpp
|
|
|
|
- Fix aot build
|
|
|
|
- Add pom and depmap frags
|
|
|
|
- Restore all jars
|
|
|
|
- Add webapps
|
|
|
|
|
2007-03-16 15:51:11 +00:00
|
|
|
* Fri Mar 16 2007 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-10jpp.1
|
|
|
|
- Merge with upstream
|
|
|
|
- Removed unapplied patch and moved buildroot removal from prep to install,
|
|
|
|
and other rpmlint cleanup
|
|
|
|
|
2007-03-12 16:42:58 +00:00
|
|
|
* Mon Mar 12 2007 Karsten Hopp <karsten@redhat.com> 1.3.0-9jpp.2
|
|
|
|
- add buildrequirement ant-trax for documentation
|
|
|
|
|
2006-08-05 00:06:54 +00:00
|
|
|
* Fri Aug 04 2006 Deepak Bhole <dbhole@redhat.com> 0:1.3.0-9jpp.1
|
|
|
|
- Added missing requirements
|
|
|
|
|
2006-07-22 08:36:19 +00:00
|
|
|
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> 0:1.3.0-8jpp_3fc
|
|
|
|
- Rebuilt
|
|
|
|
|
2006-07-21 20:47:12 +00:00
|
|
|
* Fri Jul 21 2006 Deepak Bhole <dbhole@redhat.com> 0:1.3.0-8jpp_2fc
|
|
|
|
- Removing vendor and distribution tags.
|
|
|
|
|
2006-07-20 16:45:38 +00:00
|
|
|
* Thu Jul 20 2006 Deepak Bhole <dbhole@redhat.com> 0:1.3.0-8jpp_1fc
|
|
|
|
- Add conditional native compilation.
|
2005-12-09 22:39:50 +00:00
|
|
|
|
2006-07-20 16:45:38 +00:00
|
|
|
* Thu May 04 2006 Ralph Apel <r.apel at r-apel.de> 0:1.3.0-7jpp
|
|
|
|
- First JPP-1.7 release
|
2005-06-16 12:57:31 +00:00
|
|
|
|
2006-07-20 16:45:38 +00:00
|
|
|
* Fri Aug 20 2004 Ralph Apel <r.apel at r-apel.de> 0:1.3.0-6jpp
|
|
|
|
- Build with ant-1.6.2
|
2004-09-09 03:38:10 +00:00
|
|
|
|
2004-09-09 03:38:07 +00:00
|
|
|
* Mon Jan 26 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-5jpp
|
|
|
|
- really drop readline patch
|
|
|
|
|
|
|
|
* Sun Jan 25 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-4jpp
|
|
|
|
- drop readline patch
|
|
|
|
|
|
|
|
* Wed Jan 21 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-3jpp
|
|
|
|
- port libreadline-java patch to new bsh
|
|
|
|
|
|
|
|
* Tue Jan 20 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-2jpp
|
|
|
|
- add Distribution tag
|
|
|
|
|
|
|
|
* Tue Jan 20 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-1jpp
|
|
|
|
- 1.3.0
|
|
|
|
- remove bsf patch (fixed upstream)
|
|
|
|
- add epoch to demo package Requires
|
|
|
|
|
|
|
|
* Fri Apr 12 2003 David Walluck <david@anti-microsoft.org> 0:1.2-0.b8.4jpp
|
|
|
|
- fix strange permissions
|
|
|
|
|
|
|
|
* Fri Apr 11 2003 David Walluck <david@anti-microsoft.org> 0:1.2-0.b8.3jpp
|
|
|
|
- rebuild for JPackage 1.5
|
|
|
|
- add bsf patch
|
|
|
|
|
|
|
|
* Sat Feb 01 2003 David Walluck <david@anti-microsoft.org> 1.2-0.b8.2jpp
|
|
|
|
- remove servlet dependency (if anyone wants to add this as a separate
|
|
|
|
package and do the tomcat integration, be my guest)
|
|
|
|
|
|
|
|
* Thu Jan 23 2003 David Walluck <david@anti-microsoft.org> 1.2-0.b8.1jpp
|
|
|
|
- rename to bsh
|
|
|
|
- add manual
|
|
|
|
- add Changes.html to %%doc
|
|
|
|
- add bsh and bshdoc scripts
|
|
|
|
- add %%dir %%{_datadir}/%%{name} to main package
|
|
|
|
- correct test interpreter and make bsh files executable
|
|
|
|
|
|
|
|
* Mon Jan 21 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.01-3jpp
|
|
|
|
- really section macro
|
|
|
|
|
|
|
|
* Sun Jan 20 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.01-2jpp
|
|
|
|
- additional sources in individual archives
|
|
|
|
- versioned dir for javadoc
|
|
|
|
- no dependencies for javadoc package
|
|
|
|
- stricter dependency for demo package
|
|
|
|
- section macro
|
|
|
|
|
|
|
|
* Tue Dec 18 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.01-1jpp
|
|
|
|
- first JPackage release
|