0ef8756
# Conditionally build svnkit/javahl support; we build javahl support by default becuase it's rock solid
0ef8756
# Otherwise fallback to svnkit where subversion is not present or not new enough
0ef8756
%bcond_without javahl
6634d84
6634d84
Name:           eclipse-subclipse
15e4036
Version:        4.3.0
56cb989
Release:        8%{?dist}
6634d84
Summary:        Subversion Eclipse plugin
6634d84
6c2b6ad
# The svnclientadaptor layer is Apache licensed
6c2b6ad
# The actual Subclipse plugins are Eclipse licensed
6c2b6ad
License:        EPL-1.0 and ASL 2.0
5778d99
URL:            https://github.com/subclipse/subclipse/wiki
a1d6293
fe05e95
%global svnclientadapter_version 1.14.0
fe05e95
%global javahl_version 1.14.0
6c2b6ad
%global svnkit_version 1:1.8.12
6c2b6ad
6c2b6ad
%global subclipse_tag %{version}
fe05e95
%global svnclientadapter_tag fd5bd3587c578ef76df75d8021424b4c1306459c
6c2b6ad
%global javahl_tag %{javahl_version}
6c2b6ad
9db0516
Source0:        https://github.com/subclipse/subclipse/archive/%{subclipse_tag}/subclipse-%{version}.tar.gz
f898031
# Upstream moved the svnclientadapter into a separate repo which could be packaged separately if needed
f898031
Source1:        https://github.com/subclipse/svnclientadapter/archive/%{svnclientadapter_tag}/svnclientadapter-%{svnclientadapter_version}.tar.gz
f898031
# Upstream moved the javahl fragments into a separate repo which could be packaged separately if needed
f898031
Source2:        https://github.com/subclipse/javahl-windows/archive/%{javahl_tag}/javahl-windows-%{javahl_version}.tar.gz
f898031
f898031
Source3:        eclipse-subclipse.metainfo.xml
6634d84
0ef8756
# Allow building against Fedora's svnkit
0ef8756
# TODO fix this properly when deps are properly OSGified
0ef8756
Patch1:         svnkit.patch
0ef8756
0ef8756
BuildArch:      noarch
90fd97a
864f58b
# Upstream Eclipse no longer supports non-64bit arches
864f58b
ExcludeArch: s390 %{arm} %{ix86}
864f58b
9db0516
BuildRequires:  tycho
9db0516
BuildRequires:  tycho-extras
049c1bd
BuildRequires:  maven-install-plugin
9db0516
BuildRequires:  eclipse-gef
9db0516
BuildRequires:  libappstream-glib
0ef8756
%if %{with javahl}
56cb989
BuildRequires:  subversion-javahl >= 1.12.0
56cb989
Requires:       subversion-javahl >= 1.12.0
15e4036
%endif
0ef8756
BuildRequires:  svnkit-javahl >= %{svnkit_version}
0ef8756
Requires:       svnkit-javahl >= %{svnkit_version}
6634d84
6634d84
%description
6634d84
Subclipse is an Eclipse plugin that adds Subversion integration to the Eclipse
6634d84
IDE.
6634d84
a1d6293
%prep
15e4036
%setup -q -n subclipse-%{subclipse_tag} -a 1
0ef8756
%patch1
87fe590
f898031
# Fix pom xml declarations
5778d99
# PR sent upstream here: https://github.com/subclipse/subclipse/pull/138
f898031
sed -i -e 's/4\.2\.0/4.0.0/g' {.,features,bundles}/pom.xml
f898031
6c2b6ad
cp -p svnclientadapter-%{svnclientadapter_tag}/LICENSE.md LICENSE-apache.md
6c2b6ad
f898031
# Insert Javahl features/bundles into build
f898031
tar xf %{SOURCE2} --strip-components=1 javahl-windows-%{javahl_version}/{releng/javahl.configuration,features/feature.javahl,bundles/svnapi.javahl}
f898031
%pom_xpath_inject "pom:modules" "<module>feature.javahl</module>" features
f898031
%pom_xpath_inject "pom:modules" "<module>svnapi.javahl</module>" bundles
f898031
%pom_xpath_remove "feature/plugin[@os='win32']" features/feature.javahl/feature.xml
f898031
9db0516
# Delete pre-built artifacts
9db0516
find -name '*.jar' -delete
6634d84
9db0516
# Don't need to build update site
9db0516
%pom_disable_module releng
Krzysztof Daniel 11b2469
15e4036
# Dont't ship source jars
15e4036
%pom_remove_plugin :maven-source-plugin svnclientadapter*
15e4036
15e4036
%if %{without javahl}
0ef8756
# Don't build javahl
f898031
%pom_disable_module feature.javahl features
0ef8756
%pom_disable_module svnapi.javahl bundles
0ef8756
%pom_change_dep "org.apache.subversion:javahl" "org.tmatesoft.svnkit:svnkit-javahl16" svnclientadapter-%{svnclientadapter_tag}/javahl
0ef8756
%endif
6634d84
9db0516
# Must be dir-shaped bundles so we can symlink system versions of libs
9db0516
for b in bundles/svnapi.* ; do
9db0516
  echo "Eclipse-BundleShape: dir" >> $b/META-INF/MANIFEST.MF
15e4036
  sed -i -e 's/-1\.[0-9]\+\.[0-9]\+\.jar/.jar/' $b/META-INF/MANIFEST.MF $b/build.properties
9db0516
done
6634d84
5778d99
# Don't build mylyn features because mylyn is not shipped in Fedora
736e9fb
%pom_disable_module feature.mylyn features
736e9fb
%pom_disable_module subclipse.mylyn bundles
736e9fb
6c2b6ad
pushd svnclientadapter-%{svnclientadapter_tag}
6c2b6ad
%pom_remove_plugin ":bnd-maven-plugin" base cmdline javahl svnkit
6c2b6ad
%pom_remove_plugin ":maven-jar-plugin" base cmdline javahl svnkit
6c2b6ad
popd
6c2b6ad
9db0516
# Don't install poms
c5dd6c9
%mvn_package "::pom::" __noinstall
6634d84
c5dd6c9
%build
9db0516
pushd svnclientadapter-%{svnclientadapter_tag}
9db0516
# TODO: Make subversion-javahl package install a pom file
0ef8756
%if %{with javahl}
049c1bd
xmvn -B -o install:install-file -Dfile=$(build-classpath svn-javahl) -Dpackaging=jar \
f898031
      -DgroupId=org.apache.subversion -DartifactId=javahl -Dversion=%{svnclientadapter_version}
0ef8756
%endif
0ef8756
9db0516
%mvn_build -j
9db0516
popd
9db0516
0ef8756
cp -p $(find svnclientadapter-%{svnclientadapter_tag} -name adapter-base*.jar) bundles/svnapi.core/lib/adapter-base.jar
0ef8756
%if %{with javahl}
15e4036
# JavaHL libs
0ef8756
cp -p $(find svnclientadapter-%{svnclientadapter_tag} -name adapter-javahl*.jar) bundles/svnapi.javahl/lib/adapter-javahl.jar
9db0516
ln -s $(build-classpath svn-javahl) bundles/svnapi.javahl/lib/javahl.jar
15e4036
%endif
15e4036
# SVNKit libs
0ef8756
cp -p $(find svnclientadapter-%{svnclientadapter_tag} -name adapter-svnkit*.jar) bundles/svnapi.svnkit/lib/adapter-svnkit.jar
0ef8756
cp -p $(find svnclientadapter-%{svnclientadapter_tag} -name adapter-javahl*.jar) bundles/svnapi.svnkit/lib/adapter-javahl.jar
0ef8756
for j in \
0ef8756
    svnkit/svnkit svnkit/svnkit-javahl16 \
0ef8756
    sqljet antlr32/antlr-runtime-3.2 sequence-library trilead-ssh2 \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.connector-factory \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.core \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.pageant \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.sshagent \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.svnkit-trilead-ssh2 \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.usocket-jna \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.usocket-nc \
0ef8756
    jna/jna jna/jna-platform ; do
0ef8756
  ln -s $(build-classpath $j) bundles/svnapi.svnkit/lib/$(basename $j).jar
0ef8756
  sed -i -e "/Bundle-ClassPath/s/: /: lib\/$(basename $j).jar,/" bundles/svnapi.svnkit/META-INF/MANIFEST.MF
0ef8756
done
0ef8756
f898031
# Qualifier generated from last modification time of source tarball
f898031
QUALIFIER=$(date -u -d"$(stat --format=%y %{SOURCE0})" +%Y%m%d%H%M)
f898031
%mvn_build -j -- -DforceContextQualifier=$QUALIFIER
c5dd6c9
c5dd6c9
%install
c5dd6c9
%mvn_install
6634d84
15e4036
droplet=%{buildroot}%{_datadir}/eclipse/droplets/subclipse
15e4036
9db0516
# Replace jar with link to system libraries
0ef8756
%if %{with javahl}
15e4036
# JavaHL libs
15e4036
pushd $droplet/plugins/org.tigris.subversion.clientadapter.javahl_*
9db0516
rm lib/javahl.jar
9db0516
ln -s $(build-classpath svn-javahl) lib/javahl.jar
Krzysztof Daniel 1b3f798
popd
15e4036
%endif
15e4036
# SVNKit libs
15e4036
pushd $droplet/plugins/org.tigris.subversion.clientadapter.svnkit_*
0ef8756
for j in \
0ef8756
    svnkit/svnkit svnkit/svnkit-javahl16 \
0ef8756
    sqljet antlr32/antlr-runtime-3.2 sequence-library trilead-ssh2 \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.connector-factory \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.core \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.pageant \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.sshagent \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.svnkit-trilead-ssh2 \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.usocket-jna \
0ef8756
    jsch-agent-proxy/jsch.agentproxy.usocket-nc \
0ef8756
    jna/jna jna/jna-platform ; do
0ef8756
  rm lib/$(basename $j).jar
0ef8756
  ln -s $(build-classpath $j) lib/$(basename $j).jar
0ef8756
done
0ef8756
popd
87fe590
9db0516
# Install appdata
f898031
install -m644 -D %{SOURCE3} %{buildroot}%{_datadir}/appdata/eclipse-subclipse.metainfo.xml
9db0516
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/appdata/eclipse-subclipse.metainfo.xml
6e14993
c5dd6c9
%files -f .mfiles
6c2b6ad
%doc CHANGELOG.md README.md
6c2b6ad
%license LICENSE.md LICENSE-apache.md
6e14993
%{_datadir}/appdata/eclipse-subclipse.metainfo.xml
a1d6293
6634d84
%changelog
56cb989
* Wed Aug 26 2020 Mat Booth <mat.booth@redhat.com> - 4.3.0-8
56cb989
- Actual minimum supported native JavaHL version is 1.12
56cb989
fe05e95
* Wed Aug 26 2020 Mat Booth <mat.booth@redhat.com> - 4.3.0-7
fe05e95
- Update JavaHL support bundles to 1.14
fe05e95
6c2b6ad
* Mon Aug 17 2020 Mat Booth <mat.booth@redhat.com> - 4.3.0-6
6c2b6ad
- Clarify licensing and install copy of the Apache license
6c2b6ad
5778d99
* Mon Aug 17 2020 Mat Booth <mat.booth@redhat.com> - 4.3.0-5
5778d99
- Update project URL
5778d99
736e9fb
* Tue May 05 2020 Mat Booth <mat.booth@redhat.com> - 4.3.0-4
736e9fb
- Drop dependency on mylyn
736e9fb
e4c7223
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.0-3
e4c7223
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e4c7223
fc7524d
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.0-2
fc7524d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
fc7524d
f898031
* Tue Mar 19 2019 Mat Booth <mat.booth@redhat.com> - 4.3.0-1
f898031
- Update to final 4.3.0 release
f898031
864f58b
* Fri Mar 15 2019 Mat Booth <mat.booth@redhat.com> - 4.3.0-0.3.git43b895a
864f58b
- Restrict to same architectures as Eclipse itself
864f58b
48a358b
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.0-0.2.git43b895a
48a358b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
48a358b
15e4036
* Mon Oct 22 2018 Mat Booth <mat.booth@redhat.com> - 4.3.0-0.1
15e4036
- Update to latest upstream snapshot for SVN 1.10 support
15e4036
- Update license tag
15e4036
8c4da2c
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.3-5
8c4da2c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8c4da2c
e8abc25
* Wed May 09 2018 Mat Booth <mat.booth@redhat.com> - 4.2.3-4
e8abc25
- Fix reference to droplets directory tree
e8abc25
0ef8756
* Wed Mar 21 2018 Mat Booth <mat.booth@redhat.com> - 4.2.3-3
0ef8756
- Enable conditional build support for svn backends
0ef8756
bd69aa4
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.3-2
bd69aa4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
bd69aa4
fb62805
* Fri Nov 24 2017 Mat Booth <mat.booth@redhat.com> - 4.2.3-1
fb62805
- Update to latest upstream release
fb62805
- Add patch to fix "unable to auto-share" error, rhbz#1380666
fb62805
eb93e57
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.2-4
eb93e57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
eb93e57
049c1bd
* Tue May 30 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-3
049c1bd
- Add missing build-requires on maven-install-plugin
049c1bd
- Run xmvn in batch mode
049c1bd
5502ef5
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.2-2
5502ef5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5502ef5
9db0516
* Sat Jan 21 2017 Mat Booth <mat.booth@redhat.com> - 4.2.2-1
9db0516
- Update to latest upstream release
9db0516
- Project moved to github and absorbed the merge client plugin
9db0516
- Obsolete/Provide the collabnet-merge package
9db0516
c5dd6c9
* Wed Apr 20 2016 Mat Booth <mat.booth@redhat.com> - 1.10.11-3
c5dd6c9
- Build/install with tycho/xmvn
c5dd6c9
6e14993
* Wed Mar 09 2016 Mat Booth <mat.booth@redhat.com> - 1.10.11-2
6e14993
- Add appdata add-on metadata
6e14993
a306398
* Wed Mar 09 2016 Mat Booth <mat.booth@redhat.com> - 1.10.11-1
a306398
- Update to latest upstream release
a306398
fcd6463
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.10-2
fcd6463
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
fcd6463
90fd97a
* Thu Oct 29 2015 Mat Booth <mat.booth@redhat.com> - 1.10.10-1
90fd97a
- Update to 1.10.10 with Subversion 1.9 support
90fd97a
b5526b6
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.9-2
b5526b6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b5526b6
2ee816c
* Tue Mar 03 2015 Mat Booth <mat.booth@redhat.com> - 1.10.9-1
2ee816c
- Update to latest upstream release
2ee816c
3e10bf3
* Thu Jan 15 2015 Alexander Kurtakov <akurtako@redhat.com> 1.10.5-2
3e10bf3
- Adapt pde-build.sh call to gef path change.
3e10bf3
0f6ad9e
* Fri Jul 18 2014 Mat Booth <mat.booth@redhat.com> - 1.10.5-1
0f6ad9e
- Update to latest upstream release
0f6ad9e
- Drop ancient obsoletes on subclipse-book, drop unnecessary BRs
0f6ad9e
- Fix bogus dates in changelog
0f6ad9e
- Install license files as %%doc
0f6ad9e
090a1f5
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.2-3
090a1f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
090a1f5
Krzysztof Daniel fb5b7c9
* Tue Oct 1 2013 Krzysztof Daniel <kdaniel@redhat.com> 1.10.2-2
Krzysztof Daniel fb5b7c9
- Fix the javahl version.
Krzysztof Daniel fb5b7c9
Krzysztof Daniel 31e9227
* Tue Oct 1 2013 Krzysztof Daniel <kdaniel@redhat.com> 1.10.2-1
Krzysztof Daniel 31e9227
- Update to 1.10.2.
Krzysztof Daniel 31e9227
a1d32e7
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-3
a1d32e7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a1d32e7
Krzysztof Daniel c871d3e
* Wed Jun 19 2013 Krzysztof Daniel <kdaniel@redhat.com> 1.10.0-2
Krzysztof Daniel c871d3e
- Upload sources.
Krzysztof Daniel c871d3e
Krzysztof Daniel dd2fbda
* Wed Jun 19 2013 Krzysztof Daniel <kdaniel@redhat.com> 1.10.0-1
Krzysztof Daniel dd2fbda
- Update to 1.10.0.
Krzysztof Daniel dd2fbda
Krzysztof Daniel 11b2469
* Wed Jun 19 2013 Krzysztof Daniel <kdaniel@redhat.com> 1.8.21-1
Krzysztof Daniel 11b2469
- Update to 1.8.21.
Krzysztof Daniel 11b2469
Krzysztof Daniel 1b3f798
* Fri May 3 2013 Krzysztof Daniel <kdaniel@redhat.com> 1.8.20-1
Krzysztof Daniel 1b3f798
- Update to latest upstream release.
Krzysztof Daniel 1b3f798
b0634ef
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.16-2
b0634ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b0634ef
Sami Wagiaalla 21c1f30
* Thu Oct 11 2012 Sami Wagiaalla <swagiaal@redhat.com> 1.8.16-1
Sami Wagiaalla 21c1f30
- Update to release 1.8.16.
Sami Wagiaalla 21c1f30
Krzysztof Daniel 3ee15f5
* Wed Aug 8 2012 Krzysztof Daniel <kdaniel@redhat.com> 1.8.13-2
Krzysztof Daniel 3ee15f5
- Get rid off eclipse-svnkit dependency.
Krzysztof Daniel 3ee15f5
caa331e
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.13-2
caa331e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
caa331e
Krzysztof Daniel 1dc7854
* Fri Jul 13 2012 Krzysztof Daniel <kdaniel@redhat.com> 1.8.13-1
Krzysztof Daniel 1dc7854
- Update to latest upstream release.
Krzysztof Daniel 1dc7854
Krzysztof Daniel 9fc24bf
* Thu May 3 2012 Krzysztof Daniel <kdaniel@redhat.com> 1.8.9-2
Krzysztof Daniel 9fc24bf
- Bug 818472 - Bump javahl BR/R.
Krzysztof Daniel 9fc24bf
Krzysztof Daniel ff3bef2
* Wed May 2 2012 Krzysztof Daniel <kdaniel@redhat.com> 1.8.9-1
Krzysztof Daniel ff3bef2
- Update to latest upstream release.
Krzysztof Daniel ff3bef2
e51a01f
* Wed Feb 29 2012 Alexander Kurtakov <akurtako@redhat.com> 1.8.5-1
e51a01f
- Update to latest upstream release.
e51a01f
e08c5c6
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.18-2
e08c5c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e08c5c6
f96abc4
* Tue Jul 12 2011 Alexander Kurtakov <akurtako@redhat.com> 1.6.18-1
f96abc4
- Update to 1.6.18.
f96abc4
9162eaa
* Fri Feb 25 2011 Alexander Kurtakov <akurtako@redhat.com> 1.6.17-1
9162eaa
- Update to 1.6.17.
9162eaa
f56ec94
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.16-2
f56ec94
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f56ec94
11f0bf3
* Tue Dec 14 2010 Alexander Kurtakov <akurtako@redhat.com> 1.6.16-1
11f0bf3
- Update to 1.6.16.
11f0bf3
0731283
* Tue Nov 9 2010 Alexander Kurtakov <akurtako@redhat.com> 1.6.15-1
0731283
- Update to 1.6.15.
0731283
bcaf507
* Tue Jul 13 2010 Alexander Kurtakov <akurtako@redhat.com> 1.6.12-1
bcaf507
- Update to 1.6.12.
bcaf507
113c245
* Thu Mar 11 2010 Alexander Kurtakov <akurtako@redhat.com> 1.6.10-1
113c245
- Update to 1.6.10.
113c245
c65b9ee
* Tue Feb 23 2010 Alexander Kurtakov <akurtako@redhat.com> 1.6.8-1
c65b9ee
- Update to upstream 1.6.8.
c65b9ee
c18e11d
* Fri Feb 19 2010 Alexander Kurtakov <akurtako@redhat.com> 1.6.7-1
c18e11d
- Update to upstream 1.6.7.
c18e11d
676bc0f
* Thu Feb 4 2010 Alexander Kurtakov <akurtako@redhat.com> 1.6.6-1
676bc0f
- Update to upstream 1.6.6.
676bc0f
ff1d2b8
* Sun Nov 22 2009 Alexander Kurtakov <akurtako@redhat.com> 1.6.5-3
ff1d2b8
- Fix typo.
ff1d2b8
63d22d2
* Sun Nov 22 2009 Alexander Kurtakov <akurtako@redhat.com> 1.6.5-2
63d22d2
- Do not pass non-existing folders to pdebuild -o.
63d22d2
- Switch to using %%global instead of %%define.
63d22d2
da55584
* Tue Aug 18 2009 Alexander Kurtakov <akurtako@redhat.com> 1.6.5-1
da55584
- Update to upstream 1.6.5.
da55584
052f277
* Mon Aug 10 2009 Alexander Kurtakov <akurtako@redhat.com> 1.6.4-1
052f277
- Update to upstream 1.6.4.
052f277
8a4ba84
* Mon Jul 27 2009 Alexander Kurtakov <akurtako@redhat.com> 1.6.2-1
8a4ba84
- Update to upstream 1.6.2.
8a4ba84
ac6527b
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.0-2
ac6527b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
ac6527b
0f6ad9e
* Sun Apr 26 2009 Robert Marcano <robert@marcanoonline.com> 1.6.0-1
0213ebb
- Update to upstream 1.6.0
0213ebb
3dc4114
* Mon Mar 23 2009 Alexander Kurtakov <akurtako@redhat.com> 1.4.7-4
3dc4114
- Rebuild to not ship p2 context.xml.
3dc4114
87fe590
* Tue Feb 24 2009 Robert Marcano <robert@marcanoonline.com> 1.4.7-3
a1d6293
- Update to upstream 1.4.7
a1d6293
- eclipse-subclipse-book is obsoleted, not provided upstream
a1d6293
- New eclipse-subclipse-graph subpackage
a1d6293
1028971
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-13
1028971
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1028971
dd36f6d
* Mon Oct 13 2008 Alexander Kurtakov <akurtako@redhat.com> - 1.2.4-12
dd36f6d
- Bump revision.
dd36f6d
88fd402
* Mon Oct 13 2008 Alexander Kurtakov <akurtako@redhat.com> - 1.2.4-11
88fd402
- Fix build with eclipse 3.4.
ca6e87d
- Rediff plugin-classpath.patch.
88fd402
8693a76
* Sun Sep 21 2008 Ville Skyttä <ville.skytta at iki.fi> - 1.2.4-10
8693a76
- Fix Patch0:/%%patch mismatch.
8693a76
9ecb77e
* Fri Apr 04 2008 Robert Marcano <robert@marcanoonline.com> 1.2.4-9
424e5e1
- Fix Bug 440818: changed links to svn-javahl.jar
424e5e1
8b11fce
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.4-7
8b11fce
- Autorebuild for GCC 4.3
8b11fce
6da9624
* Mon Nov 12 2007 Robert Marcano <robert@marcanoonline.com> 1.2.4-6
45be3b1
- Build for all supported arquitectures
45be3b1
5cd021f
* Fri Oct 19 2007 Robert Marcano <robert@marcanoonline.com> 1.2.4-3
5cd021f
- Disable ppc64 build for f8, see Bug #298071
5cd021f
c8b3cb0
* Wed Sep 19 2007 Robert Marcano <robert@marcanoonline.com> 1.2.4-2
c8b3cb0
- Fix wrong applied classpath patch, fixing error: An error occurred while
c8b3cb0
automatically activating bundle org.tigris.subversion.subclipse.core
c8b3cb0
006e728
* Mon Sep 10 2007 Robert Marcano <robert@marcanoonline.com> 1.2.4-1
006e728
- Update to upstream 1.2.4
41b2370
- Build for all supported arquitectures
41b2370
b9c270b
* Sun Sep 09 2007 Robert Marcano <robert@marcanoonline.com> 1.2.2-6
b7d3fa4
- Change MANIFEST.MF patch to be applied on prep stage
b9c270b
2091e4d
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.2.2-4
2091e4d
- Rebuild for selinux ppc32 issue.
2091e4d
33bea86
* Wed Jun 20 2007 Robert Marcano <robert@marcanoonline.com> 1.2.2-2
33bea86
- Update to upstream 1.2.2
33bea86
- Dependency changed from javasvn to svnkit
33bea86
- Patch to support EPEL5 sent by Rob Myers
33bea86
88f8efa
* Thu Dec 21 2006 Robert Marcano <robert@marcanoonline.com> 1.1.9-2
88f8efa
- Update to upstream 1.1.9
88f8efa
- Removed patch that added source attribute to the javac ant task
88f8efa
- Using the "eclipse" launcher
88f8efa
46118fc
* Wed Nov 08 2006 Robert Marcano <robert@marcanoonline.com> 1.1.8-2
46118fc
- Update to upstream 1.1.8
46118fc
8ae11ac
* Mon Aug 28 2006 Robert Marcano <robert@marcanoonline.com> 1.1.5-2
8ae11ac
- Rebuild
8ae11ac
6634d84
* Mon Aug 21 2006 Robert Marcano <robert@marcanoonline.com> 1.1.5-1
6634d84
- Update to upstream 1.1.5
6634d84
- svnClientAdapter documentation files added. Subclipse includes an eclipse
6634d84
  based documentation for the plugins
6634d84
0f6ad9e
* Sun Aug 06 2006 Robert Marcano <robert@marcanoonline.com> 1.1.4-1
6634d84
- Update to upstream 1.1.4
6634d84
- License changed to EPL
6634d84
- svnClientAdapter-1.1.4-javac-target.patch added fix to svnClientAdapter ant
6634d84
  script
6634d84
6634d84
* Tue Jul 04 2006 Andrew Overholt <overholt@redhat.com> 1.0.3-2
6634d84
- Use versionless pde.build.
6634d84
- Remove strict SDK version requirement due to above.
6634d84
6634d84
* Sun Jul 02 2006 Robert Marcano <robert@marcanoonline.com> 1.0.3-2
6634d84
- Embeeding the script that fetch the source code
6634d84
6634d84
* Sun Jun 25 2006 Robert Marcano <robert@marcanoonline.com> 1.0.3-1
6634d84
- Update to 1.0.3
6634d84
- Dependency name changed to ganymed-ssh2
6634d84
6634d84
* Sun Jun 11 2006 Robert Marcano <robert@marcanoonline.com> 1.0.1-6
6634d84
- rpmlint fixes and debuginfo generation workaround
6634d84
6634d84
* Thu Jun 01 2006 Robert Marcano <robert@marcanoonline.com> 1.0.1-5
6634d84
- Use package-build from eclipse SDK
da55584
6634d84
* Sun May 28 2006 Robert Marcano <robert@marcanoonline.com> 1.0.1-4
6634d84
- Integrated svnClientAdapter inside this package
6634d84
6634d84
* Tue May 23 2006 Ben Konrath <bkonrath@redhat.com> 1.0.1-3
6634d84
- Rename package to eclipse-subclipse.
6634d84
- Use copy-platform script for now.
6634d84
6634d84
* Sun May 07 2006 Robert Marcano <robert@marcanoonline.com> 1.0.1-2
6634d84
- use external libraries from dependent packages
6634d84
6634d84
* Wed Apr 26 2006 Ben Konrath <bkonrath@redhat.com> 1.0.1-1
6634d84
- initial version based on the work of Robert Marcano