2007-03-13 17:22:14 +00:00
|
|
|
Name: bsf
|
2016-06-14 20:13:52 +00:00
|
|
|
Version: 2.4.0
|
2021-01-26 01:25:00 +00:00
|
|
|
Release: 40%{?dist}
|
2004-09-09 03:38:00 +00:00
|
|
|
Summary: Bean Scripting Framework
|
2010-01-11 19:29:10 +00:00
|
|
|
License: ASL 2.0
|
2012-03-16 21:47:04 +00:00
|
|
|
URL: http://commons.apache.org/bsf/
|
2016-06-14 20:13:52 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
2012-11-22 15:32:17 +00:00
|
|
|
Source0: http://apache.mirror.anlx.net//commons/%{name}/source/%{name}-src-%{version}.tar.gz
|
2010-06-14 11:24:03 +00:00
|
|
|
Source1: %{name}-pom.xml
|
2016-06-14 20:13:52 +00:00
|
|
|
|
2010-06-14 11:24:03 +00:00
|
|
|
Patch0: build-file.patch
|
2017-02-10 11:03:19 +00:00
|
|
|
Patch1: build.properties.patch
|
2016-06-14 20:13:52 +00:00
|
|
|
|
2015-07-14 07:22:15 +00:00
|
|
|
BuildRequires: javapackages-local
|
2004-09-09 03:38:00 +00:00
|
|
|
BuildRequires: ant
|
2017-02-10 11:03:19 +00:00
|
|
|
BuildRequires: apache-parent
|
2006-07-20 15:43:31 +00:00
|
|
|
BuildRequires: xalan-j2
|
2012-03-16 21:47:04 +00:00
|
|
|
BuildRequires: apache-commons-logging
|
2006-07-20 15:43:31 +00:00
|
|
|
|
2004-09-09 03:38:00 +00:00
|
|
|
%description
|
|
|
|
Bean Scripting Framework (BSF) is a set of Java classes which provides
|
|
|
|
scripting language support within Java applications, and access to Java
|
|
|
|
objects and methods from scripting languages. BSF allows one to write
|
|
|
|
JSPs in languages other than Java while providing access to the Java
|
|
|
|
class library. In addition, BSF permits any Java application to be
|
|
|
|
implemented in part (or dynamically extended) by a language that is
|
|
|
|
embedded within it. This is achieved by providing an API that permits
|
|
|
|
calling scripting language engines from within Java, as well as an
|
|
|
|
object registry that exposes Java objects to these scripting language
|
|
|
|
engines.
|
|
|
|
|
|
|
|
BSF supports several scripting languages currently:
|
|
|
|
* Javascript (using Rhino ECMAScript, from the Mozilla project)
|
|
|
|
* Python (using either Jython or JPython)
|
|
|
|
* Tcl (using Jacl)
|
|
|
|
* NetRexx (an extension of the IBM REXX scripting language in Java)
|
|
|
|
* XSLT Stylesheets (as a component of Apache XML project's Xalan and
|
|
|
|
Xerces)
|
|
|
|
|
|
|
|
In addition, the following languages are supported with their own BSF
|
|
|
|
engines:
|
|
|
|
* Java (using BeanShell, from the BeanShell project)
|
|
|
|
* JRuby
|
|
|
|
* JudoScript
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2009-09-14 08:11:31 +00:00
|
|
|
%patch0 -p1
|
2006-07-20 15:43:31 +00:00
|
|
|
%patch1 -p1
|
2016-06-14 20:13:52 +00:00
|
|
|
find -name \*.jar -delete
|
|
|
|
|
|
|
|
%mvn_file : %{name}
|
|
|
|
%mvn_alias : org.apache.bsf:
|
2004-09-09 03:38:00 +00:00
|
|
|
|
|
|
|
%build
|
2018-07-17 12:00:35 +00:00
|
|
|
export CLASSPATH=$(build-classpath apache-commons-logging xalan-j2)
|
2019-10-28 12:48:20 +00:00
|
|
|
ant -Dsource.level=1.6 jar
|
2004-09-09 03:38:00 +00:00
|
|
|
|
2016-06-14 20:13:52 +00:00
|
|
|
%mvn_artifact %{SOURCE1} build/lib/%{name}.jar
|
2004-09-09 03:38:00 +00:00
|
|
|
|
2016-06-14 20:13:52 +00:00
|
|
|
%install
|
2019-10-28 12:48:20 +00:00
|
|
|
%mvn_install
|
2010-06-14 11:24:03 +00:00
|
|
|
|
2014-05-21 17:45:00 +00:00
|
|
|
%files -f .mfiles
|
2016-06-14 20:13:52 +00:00
|
|
|
%license LICENSE.txt NOTICE.txt
|
|
|
|
%doc AUTHORS.txt CHANGES.txt README.txt TODO.txt RELEASE-NOTE.txt
|
2004-09-09 03:38:00 +00:00
|
|
|
|
|
|
|
%changelog
|
2021-01-26 01:25:00 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-40
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-08-28 13:43:12 +00:00
|
|
|
* Fri Aug 28 2020 Fabio Valentini <decathorpe@gmail.com> - 0:2.4.0-39
|
|
|
|
- Re-enable JavaScript support (RHBZ#1858613).
|
|
|
|
|
2020-07-27 13:24:59 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-38
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-20 19:59:04 +00:00
|
|
|
* Mon Jul 20 2020 Fabio Valentini <decathorpe@gmail.com> - 0:2.4.0-37
|
|
|
|
- Adaptations for Java 11 compatibility.
|
|
|
|
|
2020-07-10 14:51:59 +00:00
|
|
|
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 0:2.4.0-36
|
|
|
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
|
|
|
2020-01-28 13:19:36 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-35
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2021-07-10 12:03:52 +00:00
|
|
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.4.0-32
|
|
|
|
- Mass rebuild for javapackages-tools 201902
|
|
|
|
|
|
|
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.4.0-32
|
|
|
|
- Mass rebuild for javapackages-tools 201902
|
|
|
|
|
2019-08-14 16:39:31 +00:00
|
|
|
* Wed Aug 14 2019 Fabio Valentini <decathorpe@gmail.com> - 0:2.4.0-34
|
|
|
|
- Remove BuildRequires: rhino.
|
|
|
|
|
2019-07-24 19:36:25 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-33
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2021-07-10 12:03:52 +00:00
|
|
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.4.0-31
|
|
|
|
- Mass rebuild for javapackages-tools 201901
|
|
|
|
|
2019-01-31 14:57:01 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-32
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-08-20 11:25:20 +00:00
|
|
|
* Mon Aug 20 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.0-31
|
|
|
|
- Re-add bulid dependency on rhino
|
|
|
|
|
|
|
|
* Tue Jul 17 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.0-30
|
|
|
|
- Remove bulid dependency on rhino
|
|
|
|
|
2018-07-12 21:22:25 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-29
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-07 04:13:05 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-28
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-07-26 04:15:00 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-27
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 11:03:19 +00:00
|
|
|
* Fri Feb 10 2017 Michael Simacek <msimacek@redhat.com> - 0:2.4.0-26
|
|
|
|
- Add missing BR apache-parent
|
|
|
|
|
2017-02-10 07:04:52 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-25
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-06-14 20:13:52 +00:00
|
|
|
* Tue Jun 14 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.0-24
|
|
|
|
- Cleanup package
|
|
|
|
|
2016-02-03 17:14:45 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.4.0-23
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-14 07:22:15 +00:00
|
|
|
* Tue Jul 14 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.0-22
|
|
|
|
- Add build-requires on javapackages-local
|
|
|
|
|
2015-06-17 02:06:19 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.0-21
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-14 04:19:50 +00:00
|
|
|
* Thu May 14 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.0-20
|
|
|
|
- Disable javadoc doclint
|
|
|
|
|
2014-06-07 03:36:01 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.0-19
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-21 17:45:00 +00:00
|
|
|
* Wed May 21 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.0-18
|
|
|
|
- Use .mfiles generated during build
|
|
|
|
- Update to current packaging guidelines
|
|
|
|
|
2013-08-03 03:59:28 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.0-17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-13 18:03:35 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.0-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-22 15:32:17 +00:00
|
|
|
* Thu Nov 22 2012 Tomas Radej <tradej@redhat.com> - 0:2.4.0-15
|
|
|
|
- Fixed URL of Source0
|
|
|
|
|
2012-11-20 16:29:42 +00:00
|
|
|
* Tue Nov 20 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.0-14
|
|
|
|
- Remove unneeded BR: jython
|
|
|
|
|
2012-07-18 18:18:04 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.0-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-16 21:47:04 +00:00
|
|
|
* Fri Mar 16 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.4.0-12
|
|
|
|
- Drop jsp/servlet api dependencies, leftovers from the past.
|
|
|
|
|
2012-01-12 22:51:06 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.0-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-02 14:00:54 +00:00
|
|
|
* Fri Dec 2 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.4.0-10
|
|
|
|
- Fixes according to latest guidelines
|
|
|
|
- Fix maven depmap
|
|
|
|
|
2011-02-08 05:53:04 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-09-21 18:18:41 +00:00
|
|
|
* Tue Sep 21 2010 Orion Poplawski <orion@cora.nwra.com> - 0:2.4.0-8
|
|
|
|
- Build against rhino for JavaScript support
|
|
|
|
|
2010-06-14 11:24:03 +00:00
|
|
|
* Mon Jun 14 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.4.0-7
|
|
|
|
- Added pom file to enable maven dependency resolution
|
|
|
|
- Fix Source0 URL
|
|
|
|
- Fix Group designation
|
|
|
|
|
2010-06-07 15:55:46 +00:00
|
|
|
* Mon Jun 7 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.4.0-6
|
|
|
|
- Fix BR after jakarta-commons rename
|
|
|
|
|
2010-04-07 09:55:18 +00:00
|
|
|
* Wed Apr 7 2010 Alexander Kurtakov <akurtako@redhat.com> 0:2.4.0-5
|
|
|
|
- Drop gcj support.
|
|
|
|
- Build against servlet and jsp apis from tomcat6.
|
|
|
|
|
2010-01-11 19:29:10 +00:00
|
|
|
* Mon Jan 11 2010 Andrew Overholt <overholt@redhat.com> 2.4.0-4
|
|
|
|
- Fix License (ASL 2.0 and not 1.1) (rhbz#554465).
|
|
|
|
|
2009-09-14 09:11:01 +00:00
|
|
|
* Mon Sep 14 2009 Christoph Höger <choeger@cs.tu-berlin.de> - 0:2.4.0-3
|
|
|
|
- Fix typo in Requires
|
|
|
|
|
2009-09-14 08:11:31 +00:00
|
|
|
* Wed Sep 09 2009 Christoph Höger <choeger@cs.tu-berlin.de> - 0:2.4.0-1
|
|
|
|
- New Upstream release: 2.4.0
|
|
|
|
- Add jython build dependency to include bsf-jython engine
|
|
|
|
|
2009-07-24 18:26:53 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.3.0-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-24 05:55:51 +00:00
|
|
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.3.0-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-07-09 17:14:29 +00:00
|
|
|
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:2.3.0-13
|
|
|
|
- drop repotag
|
|
|
|
- fix license
|
|
|
|
|
2008-02-19 17:44:24 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:2.3.0-12jpp.2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-04-26 16:24:45 +00:00
|
|
|
* Wed Mar 07 2007 Permaine Cheung <pcheung@redhat.com> 0:2.3.0-11jpp.2
|
|
|
|
- Update spec file as per Fedora guidelines
|
2007-03-13 17:22:14 +00:00
|
|
|
|
2006-08-04 23:15:07 +00:00
|
|
|
* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> 0:2.3.0-11jpp.1
|
|
|
|
- Added missing requirements.
|
|
|
|
|
2006-07-22 08:21:13 +00:00
|
|
|
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> 0:2.3.0-10jpp_2fc
|
|
|
|
- Rebuilt
|
|
|
|
|
2006-07-21 20:38:01 +00:00
|
|
|
* Fri Jul 21 2006 Deepak Bhole <dbhole@redhat.com> 0:2.3.0-10jpp_2fc
|
|
|
|
- Removing vendor and distribution tags.
|
|
|
|
|
2006-07-20 15:43:31 +00:00
|
|
|
* Thu Jul 20 2006 Deepak Bhole <dbhole@redhat.com> 0:2.3.0-10jpp_1fc
|
|
|
|
- Added conditional native compilation.
|
|
|
|
- From gbenson@redhat:
|
|
|
|
- Build without Jython or Rhino for now.
|
|
|
|
- Build with servletapi5.
|
|
|
|
- Avoid Sun-specific classes.
|
2005-06-15 11:29:58 +00:00
|
|
|
|
2006-07-20 15:43:31 +00:00
|
|
|
* Wed Apr 26 2006 Fernando Nasser <fnasser@redhat.com> 0:2.3.0-9jpp
|
|
|
|
- First JPP 1.7 build
|
2005-06-08 17:00:36 +00:00
|
|
|
|
2006-07-20 15:43:31 +00:00
|
|
|
* Wed Nov 3 2004 Nicolas Mailhot <nim@jpackage.org> 0:2.3.0-8jpp
|
|
|
|
- Clean up specfile a bit
|
2005-06-02 16:02:07 +00:00
|
|
|
|
2006-07-20 15:43:31 +00:00
|
|
|
* Fri Aug 20 2004 Ralph Apel <r.apel at r-apel.de> 0:2.3.0-7jpp
|
|
|
|
- Build with ant-1.6.2
|
2004-09-09 03:38:04 +00:00
|
|
|
|
2004-09-09 03:38:00 +00:00
|
|
|
* Thu Oct 09 2003 David Walluck <david@anti-microsoft.org> 0:2.3.0-6jpp
|
|
|
|
- add javadoc symlinks
|
|
|
|
- change Apache Software License to Apache License
|
|
|
|
|
|
|
|
* Tue Aug 26 2003 David Walluck <david@anti-microsoft.org> 0:2.3.0-5jpp
|
|
|
|
- remove all Requires
|
|
|
|
|
|
|
|
* Fri Apr 12 2003 David Walluck <david@anti-microsoft.org> 0:2.3.0-4jpp
|
|
|
|
- fix strange permissions
|
|
|
|
|
|
|
|
* Fri Apr 11 2003 David Walluck <david@anti-microsoft.org> 0:2.3.0-3jpp
|
|
|
|
- rebuild for jpackage 1.5
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 David Walluck <david@anti-microsoft.org> 2.3.0-2jpp
|
|
|
|
- Requires/BuildRequires: xalan-j2
|
|
|
|
- update %%description
|
|
|
|
|
|
|
|
* Mon Jan 13 2003 David Walluck <david@anti-microsoft.org> 2.3.0-1jpp
|
|
|
|
- version 2.3.0 (first jakarta release)
|
|
|
|
|
2011-12-02 14:00:54 +00:00
|
|
|
* Tue May 07 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.2-5jpp
|
2004-09-09 03:38:00 +00:00
|
|
|
- vendor, distribution, group tags
|
|
|
|
- versioned dir for javadoc
|
|
|
|
- section macro
|
|
|
|
|
|
|
|
* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.2-4jpp
|
|
|
|
- javadoc in javadoc package
|
|
|
|
|
|
|
|
* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 2.2-3jpp
|
|
|
|
- removed packager tag
|
|
|
|
- new jpp extension
|
|
|
|
- fixed url
|
|
|
|
|
|
|
|
* Sat Oct 6 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.2-2jpp
|
|
|
|
- first unified release
|
|
|
|
- used original tarball
|
|
|
|
- s/jPackage/JPackage
|
|
|
|
|
|
|
|
* Thu Aug 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.2-1jpp
|
|
|
|
- first Mandrake release
|