d9f3f30
%global short_name httpclient
cvsdist 9e8cbd3
b7a1488
Name:           jakarta-commons-httpclient
78d0e67
Version:        3.1
757a273
Release:        27%{?dist}
Permaine Cheung f324326
Summary: Jakarta Commons HTTPClient implements the client side of HTTP standards
a5e8139
License:        ASL 2.0 and (ASL 2.0 or LGPLv2+)
dc5febc
URL:            http://jakarta.apache.org/commons/httpclient/
dc5febc
Epoch:          1
78d0e67
Source0:        http://archive.apache.org/dist/httpcomponents/commons-httpclient/source/commons-httpclient-3.1-src.tar.gz
4962856
Source1:        http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/%{version}/commons-httpclient-%{version}.pom
eb9b631
Patch0:         %{name}-disablecryptotests.patch
Permaine Cheung 7bec6b6
# Add OSGi MANIFEST.MF bits
Permaine Cheung 7bec6b6
Patch1:         %{name}-addosgimanifest.patch
Andy Grimm 3d888b6
Patch2:         %{name}-encoding.patch
f0d4b80
# CVE-2012-5783: missing connection hostname check against X.509 certificate name
f0d4b80
# https://fisheye6.atlassian.com/changelog/httpcomponents?cs=1422573
f0d4b80
Patch3:         %{name}-CVE-2012-5783.patch
f12a786
Patch4:         %{name}-CVE-2014-3577.patch
965e7ca
Patch5:         %{name}-CVE-2015-5262.patch
dc5febc
d9f3f30
BuildArch:      noarch
gbenson ba18bd2
8663b47
# FIXME: we need BR maven-local, because we're using macros like mvn_install
8663b47
# this should be changed to "javapackages-local" when javapackages-tools 4.0.0 is out
8663b47
BuildRequires:  maven-local
gbenson ba18bd2
BuildRequires:  ant
d9f3f30
BuildRequires:  apache-commons-codec
d9f3f30
BuildRequires:  apache-commons-logging >= 0:1.0.3
d9f3f30
BuildRequires:  apache-commons-logging-javadoc
dc5febc
BuildRequires:  java-javadoc
70b8c81
BuildRequires:  junit
cvsdist 9e8cbd3
Stanislav Ochotnicky afd387e
Requires:       java-headless
d9f3f30
Requires:       apache-commons-logging >= 0:1.0.3
2f02571
Requires:       apache-commons-codec
gbenson ba18bd2
cvsdist 9e8cbd3
%description
cvsdist 9e8cbd3
The Hyper-Text Transfer Protocol (HTTP) is perhaps the most significant
cvsdist 9e8cbd3
protocol used on the Internet today. Web services, network-enabled
cvsdist 9e8cbd3
appliances and the growth of network computing continue to expand the
cvsdist 9e8cbd3
role of the HTTP protocol beyond user-driven web browsers, and increase
cvsdist 9e8cbd3
the number of applications that may require HTTP support.
cvsdist 9e8cbd3
Although the java.net package provides basic support for accessing
cvsdist 9e8cbd3
resources via HTTP, it doesn't provide the full flexibility or
cvsdist 9e8cbd3
functionality needed by many applications. The Jakarta Commons HTTP
cvsdist 9e8cbd3
Client component seeks to fill this void by providing an efficient,
cvsdist 9e8cbd3
up-to-date, and feature-rich package implementing the client side of the
cvsdist 9e8cbd3
most recent HTTP standards and recommendations.
cvsdist 9e8cbd3
Designed for extension while providing robust support for the base HTTP
cvsdist 9e8cbd3
protocol, the HTTP Client component may be of interest to anyone
cvsdist 9e8cbd3
building HTTP-aware client applications such as web browsers, web
cvsdist 9e8cbd3
service clients, or systems that leverage or extend the HTTP protocol
cvsdist 9e8cbd3
for distributed communication.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%package        javadoc
cvsdist 9e8cbd3
Summary:        Javadoc for %{name}
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%description    javadoc
cvsdist 9e8cbd3
%{summary}.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%package        demo
cvsdist 9e8cbd3
Summary:        Demos for %{name}
cvsdist 9e8cbd3
Requires:       %{name} = %{epoch}:%{version}-%{release}
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%description    demo
cvsdist 9e8cbd3
%{summary}.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%package        manual
cvsdist 9e8cbd3
Summary:        Manual for %{name}
Permaine Cheung 73ed7fd
Requires:       %{name}-javadoc = %{epoch}:%{version}-%{release}
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%description    manual
cvsdist 9e8cbd3
%{summary}.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%prep
b7a1488
%setup -q -n commons-httpclient-%{version}
cvsdist 9e8cbd3
mkdir lib # duh
42954ed
build-jar-repository -p lib commons-codec commons-logging junit
gbenson 8aeec2c
rm -rf docs/apidocs docs/*.patch docs/*.orig docs/*.rej
gbenson 8aeec2c
eb9b631
%patch0
eb9b631
Permaine Cheung 7bec6b6
pushd src/conf
Permaine Cheung 7bec6b6
%{__sed} -i 's/\r//' MANIFEST.MF
Permaine Cheung 7bec6b6
%patch1
Permaine Cheung 7bec6b6
popd
Permaine Cheung 7bec6b6
Andy Grimm 3d888b6
%patch2
f0d4b80
%patch3 -p2
f12a786
%patch4 -p1
965e7ca
%patch5 -p1
Andy Grimm 3d888b6
b7a1488
# Use javax classes, not com.sun ones
b7a1488
# assume no filename contains spaces
b7a1488
pushd src
b7a1488
    for j in $(find . -name "*.java" -exec grep -l 'com\.sun\.net\.ssl' {} \;); do
b7a1488
        sed -e 's|com\.sun\.net\.ssl|javax.net.ssl|' $j > tempf
b7a1488
        cp tempf $j
b7a1488
    done
b7a1488
    rm tempf
b7a1488
popd
cvsdist 9e8cbd3
46ab139
%mvn_alias : apache:commons-httpclient
dc5febc
%mvn_file ":{*}" jakarta-@1 "@1" commons-%{short_name}3
dc5febc
cvsdist 9e8cbd3
%build
cvsdist 9e8cbd3
ant \
cvsdist 9e8cbd3
  -Dbuild.sysclasspath=first \
cvsdist 9e8cbd3
  -Djavadoc.j2sdk.link=%{_javadocdir}/java \
cvsdist 9e8cbd3
  -Djavadoc.logging.link=%{_javadocdir}/jakarta-commons-logging \
fa0243c
  -Dtest.failonerror=false \
Andy Grimm 3d888b6
  -Djavac.encoding=UTF-8 \
b7a1488
  dist test
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%install
dc5febc
%mvn_artifact %{SOURCE1} dist/commons-httpclient.jar
dc5febc
%mvn_install -J dist/docs/api
cvsdist 9e8cbd3
cvsdist 9e8cbd3
# demo
cvsdist 9e8cbd3
mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}
cvsdist 9e8cbd3
cp -pr src/examples src/contrib $RPM_BUILD_ROOT%{_datadir}/%{name}
cvsdist 9e8cbd3
cvsdist 9e8cbd3
# manual and docs
dc5febc
rm -Rf dist/docs/{api,BUILDING.txt,TESTING.txt}
dc5febc
ln -s %{_javadocdir}/%{name} dist/docs/apidocs
cvsdist 9e8cbd3
4962856
42bfd29
%files -f .mfiles
3f24c41
%doc LICENSE NOTICE
3f24c41
%doc README RELEASE_NOTES
cvsdist 9e8cbd3
dc5febc
%files javadoc -f .mfiles-javadoc
3f24c41
%doc LICENSE NOTICE
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%files demo
cvsdist 9e8cbd3
%{_datadir}/%{name}
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%files manual
cvsdist 9e8cbd3
%doc dist/docs/*
cvsdist 9e8cbd3
cvsdist 9e8cbd3
cvsdist 9e8cbd3
%changelog
757a273
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.1-27
757a273
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
757a273
42954ed
* Thu Feb 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.1-26
42954ed
- Use build-jar-repository for locating dependencies
42954ed
86e78f8
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.1-25
86e78f8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
86e78f8
41d33d9
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.1-24
41d33d9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
41d33d9
965e7ca
* Fri Sep 11 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.1-23
965e7ca
- Respect configured SO_TIMEOUT during SSL handshake
965e7ca
- Resolves: CVE-2015-5262
965e7ca
ea61d11
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-22
ea61d11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
ea61d11
a4654bf
* Tue Oct 14 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.1-21
a4654bf
- Remove legacy Obsoletes/Provides
a4654bf
f12a786
* Mon Aug 18 2014 Michal Srb <msrb@redhat.com> - 1:3.1-20
f12a786
- Fix MITM security vulnerability
f12a786
- Resolves: CVE-2014-3577
f12a786
46ab139
* Mon Aug 11 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.1-19
46ab139
- Add alias for apache:commons-httpclient
46ab139
db7a8fe
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-18
db7a8fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
db7a8fe
dc5febc
* Wed May 21 2014 Michal Srb <msrb@redhat.com> - 1:3.1-17
dc5febc
- Adapt to current guidelines
dc5febc
42bfd29
* Wed May 21 2014 Michal Srb <msrb@redhat.com> - 1:3.1-16
42bfd29
- Migrate to mfiles
42bfd29
Stanislav Ochotnicky afd387e
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1:3.1-15
Stanislav Ochotnicky afd387e
- Use Requires: java-headless rebuild (#1067528)
Stanislav Ochotnicky afd387e
d3a1721
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-14
d3a1721
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d3a1721
b082eb2
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-13
b082eb2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b082eb2
f0d4b80
* Mon Jan 21 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.1-12
f0d4b80
- Add missing connection hostname check against X.509 certificate name
f0d4b80
- Resolves: CVE-2012-5783
f0d4b80
4962856
* Thu Nov  1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.1-11
4962856
- Add maven POM
4962856
a5e8139
* Thu Sep 20 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.1-10
a5e8139
- Fix license tag
a5e8139
3f24c41
* Thu Sep 20 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.1-9
3f24c41
- Install LICENSE and NOTICE files
3f24c41
- Add missing R: java, jpackage-utils
3f24c41
7b5281b
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-8
7b5281b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7b5281b
Andy Grimm 3d888b6
* Sun Jan 22 2012 Andy Grimm <agrimm@gmail.com> - 1:3.1-7
Andy Grimm 3d888b6
- Fix character encoding
Andy Grimm 3d888b6
5b562f6
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-6
5b562f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5b562f6
Stanislav Ochotnicky 4e96839
* Tue Jun 28 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1:3.1-5
Stanislav Ochotnicky 4e96839
- Fix symlinks in javadir
Stanislav Ochotnicky 4e96839
1c9ad5d
* Tue Jun 28 2011 Alexander Kurtakov <akurtako@redhat.com> 1:3.1-4
1c9ad5d
- Fix FTBFS.
1c9ad5d
- Adapt to current guidelines.
1c9ad5d
d9371a1
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-3
d9371a1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d9371a1
2f02571
* Wed Nov 10 2010 Alexander Kurtakov <akurtako@redhat.com> 1:3.1-2
2f02571
- Add missing requires on commons-codec.
2f02571
d9f3f30
* Fri Jul 16 2010 Alexander Kurtakov <akurtako@redhat.com> 1:3.1-1
d9f3f30
- Drop gcj_support.
d9f3f30
- Fix FTBFS.
d9f3f30
a7c2035
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-0.5
a7c2035
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
a7c2035
d58ddff
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.1-0.4
d58ddff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
d58ddff
Andrew Overholt b3aad53
* Thu Jul 24 2008 Andrew Overholt <overholt@redhat.com> 1:3.1-0.3
Andrew Overholt b3aad53
- Update OSGi MANIFEST.MF
Andrew Overholt b3aad53
4d28704
* Wed Jul  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1:3.1-0.2
4d28704
- drop repotag
4d28704
- fix license tag
4d28704
78d0e67
* Fri Apr 04 2008 Deepak Bhole <dbhole@redhat.com> - 0:3.1-0jpp.1
78d0e67
- Update to 3.1
78d0e67
6fb849e
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:3.0.1-2jpp.2
6fb849e
- Autorebuild for GCC 4.3
6fb849e
Permaine Cheung 7bec6b6
* Thu Sep 06 2007 Andrew Overholt <overholt@redhat.com> 1:3.0.1-1jpp.2
Permaine Cheung 7bec6b6
- Add OSGi MANIFEST.MF information.
Permaine Cheung 7bec6b6
Permaine Cheung f324326
* Fri Mar 16 2007 Permaine Cheung <pcheung@redhat.com> - 1:3.0.1-1jpp.1
Permaine Cheung 73ed7fd
- Merge with upstream and more rpmlint cleanup.
Permaine Cheung 73ed7fd
Permaine Cheung 73ed7fd
* Thu Feb 15 2007 Fernando Nasser <fnasser@redhat.com> - 1:3.0.1-1jpp
Permaine Cheung 73ed7fd
- Upgrade to 3.0.1
Permaine Cheung 73ed7fd
Permaine Cheung 73ed7fd
* Fri Jan 26 2007 Permaine Cheung <pcheung@redhat.com> - 1:3.0-8jpp
Permaine Cheung 73ed7fd
- Added versions for provides and obsoletes and rpmlint cleanup.
Permaine Cheung 73ed7fd
d5a2db8
* Thu Aug 10 2006 Deepak Bhole <dbhole@redhat.com> - 1:3.0-7jpp.1
d5a2db8
- Added missing requirements.
d5a2db8
- Added missing postun section for javadoc.
d5a2db8
3f2bc28
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> - 1:3.0-6jpp_2fc
3f2bc28
- Rebuilt
3f2bc28
b7a1488
* Thu Jul 20 2006 Deepak Bhole <dbhole@redhat.com> - 1:3.0-6jpp_1fc
b7a1488
- Added conditional native compilation.
eb9b631
- Disable certain ssl related tests that are known to fail with libgcj.
8482159
b7a1488
* Thu Apr 06 2006 Fernando Nasser <fnasser@redhat.com> - 1:3.0-5jpp
b7a1488
- Improve backwards compatibility and force removal of older versioned
b7a1488
  packages
a17bb52
b7a1488
* Thu Apr 06 2006 Fernando Nasser <fnasser@redhat.com> - 1:3.0-4jpp
b7a1488
- Remove duplicate release definition
b7a1488
- Require simply a jaxp 1.3
e53577a
b7a1488
* Thu Apr 06 2006 Fernando Nasser <fnasser@redhat.com> - 1:3.0-3jpp
b7a1488
- BR xml-commons-jaxp-1.3-apis
cf45116
b7a1488
* Thu Apr 06 2006 Ralph Apel <r.apel@r-apel.de> - 1:3.0-2jpp
b7a1488
- Fix tarball typo
b7a1488
- assure javax classes are used instead of com.sun. ones
gbenson 2adb175
b7a1488
* Wed Apr 05 2006 Ralph Apel <r.apel@r-apel.de> - 1:3.0-1jpp
b7a1488
- 3.0 final, drop main version in name
gbenson ba18bd2
b7a1488
* Thu Oct 20 2005 Jason Corley <jason.corley@gmail.com> - 1:3.0-0.rc4.1jpp
b7a1488
- 3.0rc4
gbenson ba18bd2
gbenson ba18bd2
* Thu May 05 2005 Fernando Nasser <fnasser@redhat.com> - 1:3.0-0.rc2.1jpp
gbenson ba18bd2
- Update to 3.0 rc2.
gbenson ba18bd2
gbenson 8aeec2c
* Thu Nov  4 2004 Ville Skyttä <ville.skytta at iki.fi> - 1:2.0.2-1jpp
gbenson 8aeec2c
- Update to 2.0.2.
gbenson 8aeec2c
- Fix Group tag in -manual.
gbenson 8aeec2c
gbenson 8aeec2c
* Sun Aug 23 2004 Randy Watler <rwatler at finali.com> - 0:2.0-2jpp
gbenson 8aeec2c
- Rebuild with ant-1.6.2
gbenson 8aeec2c
cvsdist 9e8cbd3
* Mon Feb 16 2004 Kaj J. Niemi <kajtzu@fi.basen.net> - 0:2.0-1jpp
cvsdist 9e8cbd3
- 2.0 final
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Thu Jan 22 2004 David Walluck <david@anti-microsoft.org> 0:2.0-0.rc3.1jpp
cvsdist 9e8cbd3
- 2.0-rc3
cvsdist 9e8cbd3
- bump epoch
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Tue Oct 14 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.0-3.rc2.1jpp
cvsdist 9e8cbd3
- Update to 2.0rc2.
cvsdist 9e8cbd3
- Manual subpackage.
cvsdist 9e8cbd3
- Crosslink with local J2SE javadocs.
cvsdist 9e8cbd3
- Own unversioned javadoc dir symlink.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Fri Aug 15 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.0-3.rc1.1jpp
cvsdist 9e8cbd3
- Update to 2.0rc1.
cvsdist 9e8cbd3
- Include "jakarta-"-less jar symlinks for consistency with other packages.
cvsdist 9e8cbd3
- Exclude example and contrib sources from main package, they're in -demo.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Wed Jul  9 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.0-2.beta2.1jpp
cvsdist 9e8cbd3
- Update to 2.0 beta 2.
cvsdist 9e8cbd3
- Demo subpackage.
cvsdist 9e8cbd3
- Crosslink with local commons-logging javadocs.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Wed Jun  4 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.0-2.beta1.1jpp
cvsdist 9e8cbd3
- Update to 2.0 beta 1.
cvsdist 9e8cbd3
- Non-versioned javadoc symlinking.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Fri Apr  4 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.0-1.alpha3.2jpp
cvsdist 9e8cbd3
- Rebuild for JPackage 1.5.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Wed Feb 26 2003 Ville Skyttä <ville.skytta at iki.fi> - 2.0-1.alpha3.1jpp
cvsdist 9e8cbd3
- Update to 2.0 alpha 3.
cvsdist 9e8cbd3
- Fix Group tags.
cvsdist 9e8cbd3
- Run standalone unit tests during build.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Thu Sep 12 2002 Ville Skyttä <ville.skytta at iki.fi> 2.0-0.cvs20020909.1jpp
cvsdist 9e8cbd3
- Tune the rpm release number tag so rpm2html doesn't barf on it.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Mon Sep  9 2002 Ville Skyttä <ville.skytta at iki.fi> 2.0-0.20020909alpha1.1jpp
cvsdist 9e8cbd3
- 2.0alpha1 snapshot 20020909.
cvsdist 9e8cbd3
- Use sed instead of bash extensions when symlinking jars during build.
cvsdist 9e8cbd3
- Add distribution tag.
cvsdist 9e8cbd3
- Require commons-logging instead of log4j.
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Sat Jan 19 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.0-4jpp
cvsdist 9e8cbd3
- renamed to jakarta-commons-httpclient
cvsdist 9e8cbd3
- additional sources in individual archives
cvsdist 9e8cbd3
- versioned dir for javadoc
cvsdist 9e8cbd3
- no dependencies for javadoc package
cvsdist 9e8cbd3
- dropped j2ee package
cvsdist 9e8cbd3
- adapted to new jsse package
cvsdist 9e8cbd3
- section macro
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Fri Dec 7 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.0-3jpp
cvsdist 9e8cbd3
- javadoc into javadoc package
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Sat Nov 3 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.0-2jpp
cvsdist 9e8cbd3
- fixed jsse subpackage
cvsdist 9e8cbd3
cvsdist 9e8cbd3
* Fri Nov 2 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 1.0-1jpp
cvsdist 9e8cbd3
- first JPackage release