Permaine Cheung 1192965
# Copyright (c) 2000-2007, JPackage Project
b800ade
# All rights reserved.
b800ade
#
b800ade
# Redistribution and use in source and binary forms, with or without
b800ade
# modification, are permitted provided that the following conditions
b800ade
# are met:
b800ade
#
b800ade
# 1. Redistributions of source code must retain the above copyright
b800ade
#    notice, this list of conditions and the following disclaimer.
b800ade
# 2. Redistributions in binary form must reproduce the above copyright
b800ade
#    notice, this list of conditions and the following disclaimer in the
b800ade
#    documentation and/or other materials provided with the
b800ade
#    distribution.
b800ade
# 3. Neither the name of the JPackage Project nor the names of its
b800ade
#    contributors may be used to endorse or promote products derived
b800ade
#    from this software without specific prior written permission.
b800ade
#
b800ade
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
b800ade
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
b800ade
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
b800ade
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
b800ade
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
b800ade
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
b800ade
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
b800ade
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
b800ade
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
b800ade
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
b800ade
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
b800ade
#
b800ade
9a27cb9
%global reltag b6
eb48fa2
%bcond_without  desktop
9a27cb9
b800ade
Name:           bsh
9a27cb9
Version:        2.0
07f54b8
Release:        19.%{reltag}%{?dist}
Permaine Cheung 303ff4b
Epoch:          0
cvsdist 250c59a
Summary:        Lightweight Scripting for Java
9a27cb9
URL:            http://www.beanshell.org/
9a27cb9
# bundled asm is BSD
9a27cb9
# bsf/src/bsh/util/BeanShellBSFEngine.java is public-domain
9a27cb9
License:        ASL 2.0 and BSD and Public Domain
9a27cb9
BuildArch:      noarch
ebaf1ed
# ./generate-tarball.sh
ebaf1ed
Source0:        %{name}-%{version}-%{reltag}.tar.gz
9a27cb9
Source1:        %{name}-desktop.desktop
ebaf1ed
# Remove bundled jars which cannot be easily verified for licensing
bf95e92
# Remove code marked as SUN PROPRIETARY/CONFIDENTAIL
ebaf1ed
Source2:        generate-tarball.sh
9a27cb9
c218a3c
# compatibility with Java 11:
c218a3c
# - set javac / javadoc source and target values to 1.8
c218a3c
Patch0:         0000-source-target-1.8.patch
c218a3c
# - remove references to invisible symbols and methods
c218a3c
Patch1:         0001-java-11-compatibility.patch
c218a3c
9a27cb9
BuildRequires:  javapackages-local
7fad1b4
BuildRequires:  ant
7fad1b4
BuildRequires:  bsf
9a27cb9
BuildRequires:  junit
9a27cb9
BuildRequires:  javacc
44dadb7
BuildRequires:  glassfish-servlet-api
44dadb7
%if %{with desktop}
7fad1b4
BuildRequires:  ImageMagick
7fad1b4
BuildRequires:  desktop-file-utils
44dadb7
%endif
44dadb7
Stanislav Ochotnicky e8ba75e
Requires:       java-headless
Permaine Cheung 303ff4b
Requires:       bsf
9a27cb9
Requires:       jline
Severin Gehwolf 6128502
# Explicit javapackages-tools requires since scripts use
Severin Gehwolf 6128502
# /usr/share/java-utils/java-functions
Severin Gehwolf 6128502
Requires:       javapackages-tools
Severin Gehwolf 6128502
9a27cb9
9a27cb9
Provides:       %{name}-utils = %{epoch}:%{version}-%{release}
9a27cb9
Obsoletes:      %{name}-utils < 0:2.0
9a27cb9
Obsoletes:      %{name}-demo < 0:2.0
9a27cb9
9a27cb9
# bsh uses small subset of modified (shaded) classes from ancient version of
9a27cb9
# objecweb-asm under asm directory
9a27cb9
Provides:       bundled(objectweb-asm) = 1.3.6
b800ade
cvsdist 250c59a
%description
cvsdist 250c59a
BeanShell is a small, free, embeddable, Java source interpreter with
7fad1b4
object scripting language features, written in Java. BeanShell
ffbacea
executes standard Java statements and expressions, in addition to
7fad1b4
obvious scripting commands and syntax. BeanShell supports scripted
ffbacea
objects as simple method closures like those in Perl and
7fad1b4
JavaScript(tm). You can use BeanShell interactively for Java
ffbacea
experimentation and debugging or as a simple scripting engine for your
7fad1b4
applications. In short: BeanShell is a dynamically interpreted Java,
7fad1b4
plus some useful stuff. Another way to describe it is to say that in
ffbacea
many ways BeanShell is to Java as Tcl/Tk is to C: BeanShell is
ffbacea
embeddable - You can call BeanShell from your Java applications to
ffbacea
execute Java code dynamically at run-time or to provide scripting
7fad1b4
extensibility for your applications. Alternatively, you can call your
ffbacea
Java applications and objects from BeanShell; working with Java
7fad1b4
objects and APIs dynamically. Since BeanShell is written in Java and
ffbacea
runs in the same space as your application, you can freely pass
ffbacea
references to "real live" objects into scripts and return them as
ffbacea
results.
cvsdist 250c59a
cvsdist 250c59a
%package manual
cvsdist 250c59a
Summary:        Manual for %{name}
cvsdist 250c59a
cvsdist 250c59a
%description manual
cvsdist 250c59a
Documentation for %{name}.
cvsdist 250c59a
cvsdist 250c59a
%package javadoc
ffbacea
Summary:        API documentation for %{name}
cvsdist 250c59a
cvsdist 250c59a
%description javadoc
ffbacea
This package provides %{summary}.
cvsdist 250c59a
9a27cb9
%prep
9a27cb9
%setup -q -n beanshell-%{version}%{reltag}
c218a3c
%patch0 -p1
c218a3c
%patch1 -p1
cvsdist 250c59a
9a27cb9
sed -i 's,org.apache.xalan.xslt.extensions.Redirect,http://xml.apache.org/xalan/redirect,' docs/manual/xsl/*.xsl
Permaine Cheung 2f29479
9a27cb9
%mvn_alias :bsh bsh:bsh bsh:bsh-bsf org.beanshell:bsh
cvsdist 250c59a
ea7ee22
%mvn_file : %{name}
ea7ee22
cvsdist 250c59a
%build
9a27cb9
mkdir lib
64d618f
build-jar-repository lib bsf javacc junit glassfish-servlet-api
9a27cb9
9a27cb9
ant test dist
cvsdist 250c59a
cvsdist 250c59a
%install
9a27cb9
%mvn_artifact pom.xml dist/%{name}-%{version}%{reltag}.jar
9a27cb9
9a27cb9
%mvn_install -J javadoc
9a27cb9
eb48fa2
%if %{with desktop}
Permaine Cheung 3dca6f4
# menu entry
8f50f33
desktop-file-install --mode=644 \
9a27cb9
  --dir=%{buildroot}%{_datadir}/applications %{SOURCE1}
65b0098
install -d -m 755 %{buildroot}%{_datadir}/pixmaps
Permaine Cheung 3dca6f4
convert src/bsh/util/lib/icon.gif \
65b0098
  %{buildroot}%{_datadir}/pixmaps/bsh.png
eb48fa2
%endif
9a27cb9
9a27cb9
install -d -m 755 %{buildroot}%{_datadir}/%{name}
9a27cb9
install -d -m 755 %{buildroot}%{_datadir}/%{name}/webapps
9a27cb9
install -m 644 dist/bshservlet.war %{buildroot}%{_datadir}/%{name}/webapps
9a27cb9
install -m 644 dist/bshservlet-wbsh.war %{buildroot}%{_datadir}/%{name}/webapps
Permaine Cheung 4adf266
cvsdist 250c59a
# scripts
9a27cb9
install -d %{buildroot}%{_bindir}
cvsdist 250c59a
746caad
%jpackage_script bsh.Interpreter "\${BSH_DEBUG:+-Ddebug=true}" jline.console.internal.ConsoleRunner %{name}:jline %{name} true
9a27cb9
%jpackage_script bsh.Console "\${BSH_DEBUG:+-Ddebug=true}" "" bsh bsh-console true
cvsdist 250c59a
9a27cb9
echo '#!%{_bindir}/bsh' > %{buildroot}%{_bindir}/bshdoc
9a27cb9
cat scripts/bshdoc.bsh >> %{buildroot}%{_bindir}/bshdoc
cvsdist 250c59a
2193e40
%files -f .mfiles
9a27cb9
%license LICENSE NOTICE
9a27cb9
%doc README.md src/Changes.html src/CodeMap.html docs/faq/faq.html
9a27cb9
%attr(0755,root,root) %{_bindir}/%{name}*
eb48fa2
%if %{with desktop}
9a27cb9
%{_datadir}/applications/%{name}-desktop.desktop
65b0098
%{_datadir}/pixmaps/%{name}.png
eb48fa2
%endif
ff0381a
%{_datadir}/%{name}
cvsdist 250c59a
cvsdist 250c59a
%files manual
9a27cb9
%doc docs/manual/html
9a27cb9
%doc docs/manual/images/*.jpg
9a27cb9
%doc docs/manual/images/*.gif
9a27cb9
%license LICENSE NOTICE
cvsdist 250c59a
9a27cb9
%files javadoc -f .mfiles-javadoc
9a27cb9
%license LICENSE NOTICE
Permaine Cheung 2f29479
cvsdist 250c59a
%changelog
07f54b8
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.0-19.b6
07f54b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
07f54b8
c218a3c
* Mon Jul 20 2020 Fabio Valentini <decathorpe@gmail.com> - 0:2.0-18.b6
c218a3c
- Make adjustments for Java 11 compatibility.
c218a3c
8ba2c23
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 0:2.0-17.b6
8ba2c23
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
8ba2c23
41ee177
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.0-16.b6
41ee177
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
41ee177
2463377
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.0-15.b6
2463377
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2463377
1e2d804
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.0-14.b6
1e2d804
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
1e2d804
bf95e92
* Fri Aug 03 2018 Michael Simacek <msimacek@redhat.com> - 0:2.0-13.b6
bf95e92
- Remove proprietary files from tarball
bf95e92
Severin Gehwolf 6128502
* Mon Jul 30 2018 Severin Gehwolf <sgehwolf@redhat.com> - 0:2.0-12.b6
Severin Gehwolf 6128502
- Add requirement on javapackages-tools for script's usage of
Severin Gehwolf 6128502
  java-functions.
Severin Gehwolf 6128502
ebaf1ed
* Mon Jul 30 2018 Michael Simacek <msimacek@redhat.com> - 0:2.0-11.b6
ebaf1ed
- Repack the tarball without binaries
ebaf1ed
8eb9045
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.0-10.b6
8eb9045
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8eb9045
4d79248
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.0-9.b6
4d79248
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
4d79248
44dadb7
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.0-8.b6
44dadb7
- Properly conditionalize build-requires
44dadb7
996db66
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.0-7.b6
996db66
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
996db66
eb48fa2
* Tue Jun 13 2017 Michael Simacek <msimacek@redhat.com> - 0:2.0-6.b6
eb48fa2
- Add conditional for desktop file
eb48fa2
65b0098
* Fri Mar  3 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.0-5.b6
65b0098
- Install desktop icon to pixmaps instead of icons
65b0098
150999e
* Fri Mar  3 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.0-4.b6
150999e
- Fix directory ownership
150999e
64d618f
* Tue Feb 07 2017 Michael Simacek <msimacek@redhat.com> - 0:2.0-3.b6
64d618f
- Build against glassfish-servlet-api
64d618f
ea7ee22
* Thu Nov 24 2016 Michael Simacek <msimacek@redhat.com> - 0:2.0-2.b6
ea7ee22
- Install into expected location
ea7ee22
9a27cb9
* Thu Nov 24 2016 Michael Simacek <msimacek@redhat.com> - 0:2.0-1.b6
9a27cb9
- Update to upstream version 2.0.b6
9a27cb9
746caad
* Wed Oct 12 2016 Ville Skyttä <ville.skytta@iki.fi> - 0:1.3.0-36
746caad
- Switch to jline 2.x in -utils
746caad
- Mark License.txt as %%license
746caad
7fad1b4
* Thu Jul 21 2016 Michael Simacek <msimacek@redhat.com> - 0:1.3.0-35
7fad1b4
- Replace perl usage with sed
7fad1b4
a6fe1b5
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.3.0-34
a6fe1b5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a6fe1b5
0b92dc3
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-33
0b92dc3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0b92dc3
f3e079f
* Wed Nov  5 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3.0-32
f3e079f
- Remove workaround for RPM bug #646523
f3e079f
40a98cb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-31
40a98cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
40a98cb
2193e40
* Wed May 21 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3.0-30
2193e40
- Use .mfiles generated during build
2193e40
Stanislav Ochotnicky e8ba75e
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.3.0-29
Stanislav Ochotnicky e8ba75e
- Use Requires: java-headless rebuild (#1067528)
Stanislav Ochotnicky e8ba75e
b4c0e31
* Wed Oct 30 2013 Michal Srb <msrb@redhat.com> - 0:1.3.0-28
b4c0e31
- Switch to jline1 (Resolves rhbz#1023018)
b4c0e31
cb70e69
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-27
cb70e69
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
cb70e69
dc1e371
* Fri Jul 12 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3.0-26
dc1e371
- Use %%add_maven_depmap instead of legacy macros
bb284bd
- Install versionless javadocs
3c9e3d7
- Remove old Obsoletes
ffbacea
- Update and format descriptions
4d00d26
- Install license file with manual and javadoc packages
e748cf7
- Fix Requires and BuildRequires on java
3fdab42
- Fix calls to %%jpackage_script
dc1e371
73e5869
* Wed Jul 10 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3.0-26
73e5869
- Remove arch-specific conditionals
94f38ec
- Remove group tags
76a4031
- Remove Requires on jpackage-utils
642b066
- Remove Requires on coreutils
7e3acd4
- Generate custom scripts with %%jpackage_script
c3cf194
- Install versionless JARs only
354ec46
- Install POM files to %%{_mavenpomdir}
73e5869
a4916e4
* Thu Jun 06 2013 Michal Srb <msrb@redhat.com> - 0:1.3.0-25
a4916e4
- Enable tests
a4916e4
- Fix BR
a4916e4
8f50f33
* Thu Feb 14 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 0:1.3.0-24
8f50f33
- remove vendor tag from desktop file. https://fedorahosted.org/fpc/ticket/247
8f50f33
- clean up spec to follow current guidelines
8f50f33
369ec0c
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-23
369ec0c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
369ec0c
86dcb63
* Tue Nov 20 2012 David Tardon <dtardon@redhat.com> - 0:1.3.0-22
86dcb63
- Resolves: rhbz#850008 bsh - Should not own /usr/share/maven-fragments
86dcb63
  directory
a0958a6
- Resolves: rhbz#878163 bsh - javadoc subpackage doesn't require
a0958a6
  jpackage-utils
8e7c857
- Resolves: rhbz#878166 bsh: Public Domain not listed in license tag
86dcb63
6e6470c
* Thu Nov  1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3.0-21
6e6470c
- Add additional maven depmap
6e6470c
0d64ccd
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-20
0d64ccd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0d64ccd
c9659e6
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-19
c9659e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c9659e6
adf32d6
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-18
adf32d6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
adf32d6
39d2490
* Thu Nov 25 2010 Ville Skyttä <ville.skytta@iki.fi> - 0:1.3.0-17
39d2490
- Rename -desktop to -utils, move shell scripts and menu entry to it (#417491).
39d2490
- Bring icon cache scriptlets up to date with current guidelines.
30e46ba
- Use jline in bsh script for command history support.
3841abf
- Prefer JRE over SDK when finding JVM to invoke in scripts.
0b04f32
- Build with -source 1.5.
39d2490
Stanislav Ochotnicky 536318d
* Thu Nov 25 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.3.0-16
Stanislav Ochotnicky 536318d
- Fix pom filenames (Resolves rhbz#655791)
Stanislav Ochotnicky 536318d
- Fix xsl errors when building docs
Stanislav Ochotnicky 536318d
065175b
* Sat Jan 9 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.3.0-15.2
065175b
- Drop gcj_support.
065175b
- Fix rpmlint warnings.
065175b
Permaine Cheung bd0eeaf
* Mon Sep 21 2009 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-15.1
Permaine Cheung bd0eeaf
- Do not build manual and faq for ppc64 or s390x as the style task is disabled
Permaine Cheung bd0eeaf
9782ec0
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-15
9782ec0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9782ec0
80186ce
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.3.0-14
80186ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
80186ce
bfafa30
* Wed Jul  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:1.3.0-13
bfafa30
- drop repotag
bfafa30
- fix license tag
bfafa30
Permaine Cheung 2f29479
* Mon Mar 10 2008 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-12jpp.3
Permaine Cheung 2f29479
- Fix bugzilla 436675. Separate menu entry into desktop subpackage.
Permaine Cheung 2f29479
Permaine Cheung 3dca6f4
* Thu Mar 06 2008 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-12jpp.2
Permaine Cheung 3dca6f4
- Fix bugzilla 417491. Thanks Ville Skytta for the patch.
Permaine Cheung 3dca6f4
- Add menu entry and startup script for bsh desktop.
Permaine Cheung 3dca6f4
- Ensure scriptlets exit with zero exit status.
Permaine Cheung 3dca6f4
7432530
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:1.3.0-12jpp.1
7432530
- Autorebuild for GCC 4.3
7432530
Permaine Cheung 4adf266
* Mon Jan 21 2008 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-11jpp.1
Permaine Cheung 4adf266
- Merge with upstream
Permaine Cheung 4adf266
Permaine Cheung 4adf266
* Thu Jul 12 2007 Ralph Apel <r.apel at r-apel.de> 0:1.3.0-11jpp
Permaine Cheung 4adf266
- Fix aot build
Permaine Cheung 4adf266
- Add pom and depmap frags
Permaine Cheung 4adf266
- Restore all jars
Permaine Cheung 4adf266
- Add webapps
Permaine Cheung 4adf266
Permaine Cheung 303ff4b
* Fri Mar 16 2007 Permaine Cheung <pcheung@redhat.com> 0:1.3.0-10jpp.1
Permaine Cheung 303ff4b
- Merge with upstream
Permaine Cheung 303ff4b
- Removed unapplied patch and moved buildroot removal from prep to install,
Permaine Cheung 303ff4b
  and other rpmlint cleanup
Permaine Cheung 303ff4b
1acbabc
* Mon Mar 12 2007 Karsten Hopp <karsten@redhat.com> 1.3.0-9jpp.2
1acbabc
- add buildrequirement ant-trax for documentation
1acbabc
29faa07
* Fri Aug 04 2006 Deepak Bhole <dbhole@redhat.com> 0:1.3.0-9jpp.1
29faa07
- Added missing requirements
29faa07
fa6c416
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> 0:1.3.0-8jpp_3fc
fa6c416
- Rebuilt
fa6c416
cf7225e
* Fri Jul 21 2006 Deepak Bhole <dbhole@redhat.com> 0:1.3.0-8jpp_2fc
cf7225e
- Removing vendor and distribution tags.
cf7225e
b800ade
* Thu Jul 20 2006 Deepak Bhole <dbhole@redhat.com> 0:1.3.0-8jpp_1fc
b800ade
- Add conditional native compilation.
406b818
b800ade
* Thu May 04 2006 Ralph Apel <r.apel at r-apel.de> 0:1.3.0-7jpp
b800ade
- First JPP-1.7 release
gbenson 76ed5d9
b800ade
* Fri Aug 20 2004 Ralph Apel <r.apel at r-apel.de> 0:1.3.0-6jpp
b800ade
- Build with ant-1.6.2
cvsdist 978c8f9
cvsdist 250c59a
* Mon Jan 26 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-5jpp
cvsdist 250c59a
- really drop readline patch
cvsdist 250c59a
cvsdist 250c59a
* Sun Jan 25 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-4jpp
cvsdist 250c59a
- drop readline patch
cvsdist 250c59a
cvsdist 250c59a
* Wed Jan 21 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-3jpp
cvsdist 250c59a
- port libreadline-java patch to new bsh
cvsdist 250c59a
cvsdist 250c59a
* Tue Jan 20 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-2jpp
cvsdist 250c59a
- add Distribution tag
cvsdist 250c59a
cvsdist 250c59a
* Tue Jan 20 2004 David Walluck <david@anti-microsoft.org> 0:1.3.0-1jpp
cvsdist 250c59a
- 1.3.0
cvsdist 250c59a
- remove bsf patch (fixed upstream)
cvsdist 250c59a
- add epoch to demo package Requires
cvsdist 250c59a
746caad
* Sat Apr 12 2003 David Walluck <david@anti-microsoft.org> 0:1.2-0.b8.4jpp
cvsdist 250c59a
- fix strange permissions
cvsdist 250c59a
cvsdist 250c59a
* Fri Apr 11 2003 David Walluck <david@anti-microsoft.org> 0:1.2-0.b8.3jpp
cvsdist 250c59a
- rebuild for JPackage 1.5
cvsdist 250c59a
- add bsf patch
cvsdist 250c59a
cvsdist 250c59a
* Sat Feb 01 2003 David Walluck <david@anti-microsoft.org> 1.2-0.b8.2jpp
cvsdist 250c59a
- remove servlet dependency (if anyone wants to add this as a separate
cvsdist 250c59a
  package and do the tomcat integration, be my guest)
cvsdist 250c59a
cvsdist 250c59a
* Thu Jan 23 2003 David Walluck <david@anti-microsoft.org> 1.2-0.b8.1jpp
cvsdist 250c59a
- rename to bsh
cvsdist 250c59a
- add manual
cvsdist 250c59a
- add Changes.html to %%doc
cvsdist 250c59a
- add bsh and bshdoc scripts
cvsdist 250c59a
- add %%dir %%{_datadir}/%%{name} to main package
cvsdist 250c59a
- correct test interpreter and make bsh files executable
cvsdist 250c59a
cvsdist 250c59a
* Mon Jan 21 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.01-3jpp
cvsdist 250c59a
- really section macro
cvsdist 250c59a
cvsdist 250c59a
* Sun Jan 20 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.01-2jpp
cvsdist 250c59a
- additional sources in individual archives
cvsdist 250c59a
- versioned dir for javadoc
cvsdist 250c59a
- no dependencies for javadoc package
cvsdist 250c59a
- stricter dependency for demo package
cvsdist 250c59a
- section macro
cvsdist 250c59a
cvsdist 250c59a
* Tue Dec 18 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.01-1jpp
cvsdist 250c59a
- first JPackage release