5240563
%global gittag %{version}.201803080745-r
8e30c35
8e30c35
# Due to circular self-dependency, one build must be done with this flag set
8e30c35
# when updating to new versions. A second build without this flag ensures that
8e30c35
# all symlinks are generated correctly.
7568d07
%bcond_with bootstrap
6da71a5
7e56336
Name:           eclipse-jgit
5240563
Version:        4.11.0
7568d07
Release:        2%{?dist}
d04931f
Summary:        Eclipse JGit
d04931f
d04931f
License:        BSD
d04931f
URL:            http://www.eclipse.org/egit/
fff1063
# Use github mirror for now, see: https://bugs.eclipse.org/bugs/show_bug.cgi?id=522144
fff1063
Source0:        https://github.com/eclipse/jgit/archive/v%{gittag}/jgit-v%{gittag}.tar.gz
32b3dee
Patch0:         fix_jgit_sh.patch
b1c8e10
# Change how feature deps are specified, to avoid embedding versions
a86260e
Patch1:         jgit-feature-deps.patch
d04931f
d04931f
BuildArch: noarch
d04931f
be531b4
# For main build
d2ac91f
BuildRequires:  maven-local
be531b4
BuildRequires:  mvn(args4j:args4j)
be531b4
BuildRequires:  mvn(com.google.code.gson:gson)
be531b4
BuildRequires:  mvn(com.googlecode.javaewah:JavaEWAH) >= 1.1.6
be531b4
BuildRequires:  mvn(com.jcraft:jsch)
5721a1a
BuildRequires:  mvn(com.jcraft:jzlib)
be531b4
BuildRequires:  mvn(javax.servlet:javax.servlet-api)
be531b4
BuildRequires:  mvn(junit:junit)
be531b4
BuildRequires:  mvn(org.apache.ant:ant)
be531b4
BuildRequires:  mvn(org.apache.commons:commons-compress)
be531b4
BuildRequires:  mvn(org.apache.httpcomponents:httpclient)
be531b4
BuildRequires:  mvn(org.apache.maven.plugins:maven-antrun-plugin)
be531b4
BuildRequires:  mvn(org.apache.maven.plugins:maven-clean-plugin)
a86260e
BuildRequires:  mvn(org.apache.maven.plugins:maven-install-plugin)
be531b4
BuildRequires:  mvn(org.apache.maven.plugins:maven-shade-plugin)
be531b4
BuildRequires:  mvn(org.apache.maven.plugins:maven-source-plugin)
d8f31e7
BuildRequires:  mvn(org.bouncycastle:bcprov-jdk15on)
be531b4
BuildRequires:  mvn(org.codehaus.mojo:build-helper-maven-plugin)
d8f31e7
BuildRequires:  mvn(org.eclipse.jetty:jetty-servlet)
d8f31e7
BuildRequires:  mvn(org.hamcrest:hamcrest-library)
a86260e
BuildRequires:  mvn(org.osgi:osgi.core)
be531b4
BuildRequires:  mvn(org.slf4j:slf4j-api)
be531b4
BuildRequires:  mvn(org.slf4j:slf4j-simple)
e9ba6b0
BuildRequires:  git
be531b4
a86260e
%if %{without bootstrap}
f2fb19f
# For building the eclipse features
Krzysztof Daniel 4b2dc80
BuildRequires:  tycho
be531b4
BuildRequires:  eclipse-filesystem
e9ba6b0
BuildRequires:  jgit = %{version}
be531b4
01f94be
Requires:       eclipse-platform
7e56336
Requires:       jgit = %{version}-%{release}
d9aaf46
Requires:       jzlib
f2fb19f
%endif
d04931f
d04931f
%description
d04931f
A pure Java implementation of the Git version control system.
d04931f
7e56336
%package -n     jgit-javadoc
7e56336
Summary:        API documentation for %{name}
Andrew Robinson d5491ad
7e56336
%description -n jgit-javadoc
Andrew Robinson d5491ad
%{summary}.
Andrew Robinson d5491ad
7e56336
%package -n     jgit
Andrew Robinson d5491ad
Summary:        Java-based command line Git interface
d8f31e7
Requires:       javaewah >= 1.1.6
Andrew Robinson d5491ad
7e56336
%description -n jgit
Andrew Robinson ec9841f
Command line Git tool built entirely in Java.
Andrew Robinson d5491ad
d04931f
%prep
fff1063
%setup -n jgit-%{gittag} -q
32b3dee
32b3dee
%patch0
a86260e
%patch1
d04931f
bb74d2d
# Disable multithreaded build
bb74d2d
rm .mvn/maven.config
bb74d2d
bb74d2d
# Javaewah change
97ed2d3
sed -i -e "s/javaewah/com.googlecode.javaewah.JavaEWAH/g" org.eclipse.jgit.packaging/org.eclipse.jgit{,.pgm}.feature/feature.xml
be531b4
29fb5a2
# Don't try to get deps from local *maven* repo, use tycho resolved ones
Krzysztof Daniel 4b2dc80
%pom_remove_dep com.googlecode.javaewah:JavaEWAH
29fb5a2
for p in $(find org.eclipse.jgit.packaging -name pom.xml) ; do
29fb5a2
  grep -q dependencies $p && %pom_xpath_remove "pom:dependencies" $p
29fb5a2
done
Krzysztof Daniel 4b2dc80
bb74d2d
# Disable "errorprone" compiler
bb74d2d
%pom_xpath_remove "pom:build/pom:pluginManagement/pom:plugins/pom:plugin[pom:artifactId='maven-compiler-plugin']/pom:executions" pom.xml
bb74d2d
%pom_xpath_remove "pom:build/pom:pluginManagement/pom:plugins/pom:plugin[pom:artifactId='maven-compiler-plugin']/pom:dependencies" pom.xml
bb74d2d
97ed2d3
# Don't need target platform or repository modules with xmvn
Krzysztof Daniel a8b81d9
%pom_disable_module org.eclipse.jgit.target org.eclipse.jgit.packaging
97ed2d3
%pom_disable_module org.eclipse.jgit.repository org.eclipse.jgit.packaging
Krzysztof Daniel a8b81d9
%pom_xpath_remove "pom:build/pom:pluginManagement/pom:plugins/pom:plugin/pom:configuration/pom:target" org.eclipse.jgit.packaging/pom.xml
Krzysztof Daniel a8b81d9
29fb5a2
# Don't build source features
97ed2d3
%pom_disable_module org.eclipse.jgit.source.feature org.eclipse.jgit.packaging
Krzysztof Daniel 4b2dc80
%pom_disable_module org.eclipse.jgit.pgm.source.feature org.eclipse.jgit.packaging
Krzysztof Daniel 50ebfcb
a86260e
# Use newer Felix dep
a86260e
%pom_change_dep -r org.osgi:org.osgi.core org.osgi:osgi.core
52829ae
d8f31e7
# Remove unnecessary plugins for RPM builds
d8f31e7
%pom_remove_plugin :jacoco-maven-plugin
fd0bd28
%pom_remove_plugin :maven-javadoc-plugin
67fcb96
%pom_remove_plugin :maven-enforcer-plugin
f0ade34
%pom_remove_plugin :maven-enforcer-plugin org.eclipse.jgit.packaging
d8f31e7
%pom_remove_plugin -r :japicmp-maven-plugin
fd0bd28
97ed2d3
# Don't attach shell script artifact
97ed2d3
%pom_remove_plugin org.codehaus.mojo:build-helper-maven-plugin org.eclipse.jgit.pgm
Krzysztof Daniel a8b81d9
47de08f
# Remove org.apache.log4j
65d2e33
%pom_remove_dep log4j:log4j . org.eclipse.jgit.pgm
a86260e
%pom_change_dep org.slf4j:slf4j-log4j12 org.slf4j:slf4j-simple . org.eclipse.jgit.pgm
47de08f
b852dfe
# org.slf4j.api -> slf4j.api
47de08f
# org.slf4j.impl.log4j12 -> slf4j.simple
b852dfe
sed -i 's/org\.slf4j\.api/slf4j\.api/
47de08f
        s/org\.slf4j\.impl\.log4j12/slf4j\.simple/' \
b852dfe
org.eclipse.jgit.packaging/org.eclipse.jgit.feature/feature.xml
b852dfe
68cada1
pushd org.eclipse.jgit.packaging
68cada1
%mvn_package "::pom::" __noinstall
68cada1
popd
d8f31e7
%mvn_package ":*.test" __noinstall
68cada1
Krzysztof Daniel 4b2dc80
%build
97ed2d3
# Due to a current limitation of Tycho it is not possible to mix pom-first and
97ed2d3
# manifest-first builds in the same reactor build hence two separate invocations
97ed2d3
97ed2d3
# First invocation installs jgit so the second invocation will succeed
d8f31e7
# One test always fails "RacyGitTests.testRacyGitDetection" so ignore failures for now
d8f31e7
%mvn_build --post install:install \
d8f31e7
  -- -Dmaven.repo.local=$(pwd)/org.eclipse.jgit.packaging/.m2 -Dmaven.test.failure.ignore=true
97ed2d3
29fb5a2
# Second invocation builds the eclipse features
a86260e
%if %{without bootstrap}
97ed2d3
pushd org.eclipse.jgit.packaging
d8f31e7
%mvn_build -j -- -Dfedora.p2.repos=$(pwd)/.m2
97ed2d3
popd
a86260e
%endif
d04931f
d04931f
%install
97ed2d3
# The macro does not allow us to change the "namespace" value, but here we want to
97ed2d3
# set it to something other than the SRPM name, so explode the macro
97ed2d3
xmvn-install -R .xmvn-reactor -n jgit -d %{buildroot}
97ed2d3
install -dm755 %{buildroot}%{_javadocdir}/jgit
97ed2d3
cp -pr .xmvn/apidocs/* %{buildroot}%{_javadocdir}/jgit
97ed2d3
echo '%{_javadocdir}/jgit' >>.mfiles-javadoc
97ed2d3
a86260e
%if %{without bootstrap}
97ed2d3
pushd org.eclipse.jgit.packaging
d8f31e7
%mvn_install
Krzysztof Daniel 50ebfcb
popd
a86260e
%endif
Krzysztof Daniel 50ebfcb
Andrew Robinson d5491ad
# Binary
Andrew Robinson d5491ad
install -dm 755 %{buildroot}%{_bindir}
32b3dee
install -m 755 org.eclipse.jgit.pgm/jgit.sh %{buildroot}%{_bindir}/jgit
d04931f
e5f1aa6
# Ant task configuration
e5f1aa6
install -dm 755 %{buildroot}%{_sysconfdir}/ant.d
e5f1aa6
cat > %{buildroot}%{_sysconfdir}/ant.d/jgit <
5721a1a
javaewah jzlib jsch jgit/org.eclipse.jgit jgit/org.eclipse.jgit.ant slf4j/slf4j-api slf4j/slf4j-simple httpcomponents/httpcore httpcomponents/httpclient commons-logging commons-codec
e5f1aa6
EOF
e5f1aa6
a86260e
%if %{without bootstrap}
d8f31e7
%files -f org.eclipse.jgit.packaging/.mfiles
a86260e
%else
a86260e
%files
a86260e
%endif
d8f31e7
%license LICENSE
d8f31e7
%doc README.md
d04931f
97ed2d3
%files -n jgit -f .mfiles
be531b4
%license LICENSE
be531b4
%doc README.md
Andrew Robinson d5491ad
%{_bindir}/jgit
e5f1aa6
%config(noreplace) %{_sysconfdir}/ant.d/jgit
Andrew Robinson d5491ad
97ed2d3
%files -n jgit-javadoc -f .mfiles-javadoc
be531b4
%license LICENSE
Andrew Robinson d5491ad
d04931f
%changelog
7568d07
* Wed Mar 21 2018 Alexander Kurtakov <akurtako@redhat.com> 4.11.0-2
7568d07
- Full build.
7568d07
5240563
* Tue Mar 20 2018 nickboldt <nboldt@redhat.com> - 4.11.0-1
5240563
- Update to latest upstream release 4.11.0
5240563
cb5b272
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.10.0-3
cb5b272
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
cb5b272
f0ade34
* Fri Jan 05 2018 Mat Booth <mat.booth@redhat.com> - 4.10.0-2
f0ade34
- Rebuild to generate Eclipse features
f0ade34
67fcb96
* Fri Jan 05 2018 Mat Booth <mat.booth@redhat.com> - 4.10.0-1
67fcb96
- Update to latest upstream release
67fcb96
42ddd78
* Fri Dec 15 2017 Mat Booth <mat.booth@redhat.com> - 4.9.1-2
42ddd78
- Rebuild to generate Eclipse features
42ddd78
fff1063
* Fri Dec 15 2017 Mat Booth <mat.booth@redhat.com> - 4.9.1-1
fff1063
- Update to latest release
fff1063
- Bootstrap mode
fff1063
f2fb19f
* Tue Nov 21 2017 Mat Booth <mat.booth@redhat.com> - 4.9.0-2
f2fb19f
- Rebuild to generate Eclipse features
f2fb19f
a86260e
* Tue Nov 21 2017 Mat Booth <mat.booth@redhat.com> - 4.9.0-1
a86260e
- Update to latest upstream version
a86260e
- Allow bootstrap build to work without tycho/eclipse
a86260e
01f94be
* Mon Jul 31 2017 Mat Booth <mat.booth@redhat.com> - 4.8.0-4
01f94be
- Add requires on eclipse-platform to the subpackage that contains the Eclipse
01f94be
  features
01f94be
4a651f1
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-3
4a651f1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
4a651f1
077dfe6
* Thu Jun 15 2017 Mat Booth <mat.booth@redhat.com> - 4.8.0-2
077dfe6
- Rebuild to regenerate symlinks
077dfe6
- Add missing BR on jetty-continuation
077dfe6
8e30c35
* Thu Jun 15 2017 Mat Booth <mat.booth@redhat.com> - 4.8.0-1
8e30c35
- Update to Oxygen release
8e30c35
bca6a34
* Tue May 30 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-8
bca6a34
- Add missing build-requires on maven-install-plugin
bca6a34
71c119c
* Tue May 23 2017 Mat Booth <mat.booth@redhat.com> - 4.7.0-7
71c119c
- Fix NCDFE when doing jgit clone over http, resolves: rhbz#1454585
71c119c
e5f1aa6
* Fri May 12 2017 Mat Booth <mat.booth@redhat.com> - 4.7.0-6
e5f1aa6
- Allow using jgit from ant tasks
e5f1aa6
d8f31e7
* Wed May 10 2017 Mat Booth <mat.booth@redhat.com> - 4.7.0-5
d8f31e7
- Full build once again
d8f31e7
- Don't package tests with main artifacts
d8f31e7
- Enable test suite at build-time
d8f31e7
be531b4
* Wed May 10 2017 Mat Booth <mat.booth@redhat.com> - 4.7.0-4
be531b4
- Rebuild for new javaewah
be531b4
- Temporarily disable features
be531b4
8e96524
* Thu May 04 2017 Mat Booth <mat.booth@redhat.com> - 4.7.0-3
8e96524
- Re-enable jetty-using features
8e96524
00ca559
* Wed May 03 2017 Mat Booth <mat.booth@redhat.com> - 4.7.0-2
00ca559
- Temporarily disable features that use jetty
00ca559
aece615
* Mon Apr 10 2017 nboldt <nickboldt+redhat@gmail.com> - 4.7.0-1
aece615
- Update to jgit 4.7
aece615
2a9142b
* Mon Mar 27 2017 Nick Boldt <nboldt@redhat.com> - 4.6.1-1
2a9142b
- Update to Neon.3 release version; remove jetty 9.4.0 patch
2a9142b
103b0f7
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.0-3
103b0f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
103b0f7
a3e6219
* Thu Jan 05 2017 Mat Booth <mat.booth@redhat.com> - 4.6.0-2
a3e6219
- Bump to rebuild symlinks
a3e6219
bb74d2d
* Wed Jan 04 2017 Mat Booth <mat.booth@redhat.com> - 4.6.0-1
bb74d2d
- Update to latest release
bb74d2d
472b3f5
* Tue Oct 4 2016 Alexander Kurtakov <akurtako@redhat.com> 4.5.0-2
472b3f5
- Remove no longer needed patch.
472b3f5
e09d4ad
* Tue Oct 4 2016 Alexander Kurtakov <akurtako@redhat.com> 4.5.0-1
e09d4ad
- Update to upstream 4.5.0 release.
e09d4ad
eab9c91
* Wed Aug 03 2016 Sopot Cela <scela@redhat.com> - 4.4.1-1
eab9c91
- Upgrade to 4.4.1
eab9c91
5aa7aff
* Fri Jul 01 2016 Mat Booth <mat.booth@redhat.com> - 4.4.0-4
5aa7aff
- Fix IllegalStateException when starting git daemon from the command line
5aa7aff
56f7e28
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.0-3
56f7e28
- Add missing build-requires
56f7e28
3502731
* Mon Jun 13 2016 Mat Booth <mat.booth@redhat.com> - 4.4.0-2
3502731
- Rebuild to regenerate symlinks
3502731
d4c1b32
* Mon Jun 13 2016 Mat Booth <mat.booth@redhat.com> - 4.4.0-1
d4c1b32
- Update to latest release
d4c1b32
b1c8e10
* Mon May 02 2016 Mat Booth <mat.booth@redhat.com> - 4.3.0-2
b1c8e10
- Avoid embedding versions of external deps in features. This avoids the need to
b1c8e10
  rebuild when a dependency changes version.
b1c8e10
dea59c3
* Fri Apr 15 2016 Sopot Cela <scela@redhat.com> - 4.3.0-1
dea59c3
- Upgrade to 4.3.0
dea59c3
82d37bb
* Wed Apr  6 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-9
82d37bb
- Rebuild for slf4j 1.7.21
82d37bb
08fe313
* Wed Mar 30 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-8
08fe313
- Rebuild for slf4j 1.7.20
08fe313
82c8a7d
* Thu Mar 24 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-7
82c8a7d
- Rebuild for slf4j 1.7.19
82c8a7d
869121d
* Mon Feb 29 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-6
869121d
- Rebuild for slf4j 1.7.18
869121d
5ede4ae
* Mon Feb 22 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-5
5ede4ae
- Rebuild for slf4j 1.7.17
5ede4ae
812cd48
* Wed Feb 17 2016 Alexander Kurtakov <akurtako@redhat.com> 4.2.0-4
812cd48
- Rebuild for latest slf4j.
812cd48
15d9a72
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.0-3
15d9a72
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
15d9a72
0dbcf5e
* Mon Jan 25 2016 Mat Booth <mat.booth@redhat.com> - 4.2.0-2
0dbcf5e
- Rebuilt to generate symlinks
0dbcf5e
fd0bd28
* Fri Jan 22 2016 Mat Booth <mat.booth@redhat.com> - 4.2.0-1
fd0bd28
- Update to latest upstream release
fd0bd28
- Add patch for latest version of jetty
fd0bd28
6c0c805
* Tue Dec 08 2015 Mat Booth <mat.booth@redhat.com> - 4.1.1-2
6c0c805
- Rebuild to re-generate symlinks
6c0c805
65d2e33
* Tue Dec 08 2015 Mat Booth <mat.booth@redhat.com> - 4.1.1-1
65d2e33
- Update to latest upstream release
65d2e33
8e8361b
* Sun Nov 29 2015 Mat Booth <mat.booth@redhat.com> - 4.1.0-6
8e8361b
- Fix a problem with command line "jgit daemon" invocation
8e8361b
- This should also fix rhbz#1228138
8e8361b
5c324c0
* Mon Nov 16 2015 Alexander Kurtakov <akurtako@redhat.com> 4.1.0-5
5c324c0
- Rebuild for latest slf4j.
5c324c0
13a67b1
* Mon Oct 12 2015 Mat Booth <mat.booth@redhat.com> - 4.1.0-4
13a67b1
- Drop R on slf4j.
13a67b1
47de08f
* Thu Oct 08 2015 Roland Grunberg <rgrunber@redhat.com> - 4.1.0-3
47de08f
- Use slf4j.simple instead of slf4j.log4j12.
47de08f
7c57ce1
* Wed Sep 30 2015 Mat Booth <mat.booth@redhat.com> - 4.1.0-2
7c57ce1
- Regenerate symlinks
7c57ce1
68cada1
* Tue Sep 29 2015 Mat Booth <mat.booth@redhat.com> - 4.1.0-1
68cada1
- Update to 4.1.0
68cada1
9b290a3
* Mon Sep 14 2015 Roland Grunberg <rgrunber@redhat.com> - 4.0.1-5
9b290a3
- Rebuild as an Eclipse p2 Droplet.
9b290a3
9568a4c
* Tue Jul  7 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.0.1-4
9568a4c
- Relax version restriction for args4j
9568a4c
7e56336
* Tue Jun 30 2015 Mat Booth <mat.booth@redhat.com> - 4.0.1-3
7e56336
- Does not require eclipse-platform, only eclipse-filesystem
7e56336
- Drop incomplete SCL macros
7e56336
8e29ed1
* Wed Jun 24 2015 Alexander Kurtakov <akurtako@redhat.com> 4.0.1-2
8e29ed1
- Rebuild to fix symlinks.
8e29ed1
ffbd9c2
* Wed Jun 24 2015 Alexander Kurtakov <akurtako@redhat.com> 4.0.1-1
ffbd9c2
- Update to 4.0.1.
ffbd9c2
c53b22f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-3
c53b22f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c53b22f
e08353a
* Wed Jun 10 2015 Alexander Kurtakov <akurtako@redhat.com> 4.0.0-2
e08353a
- Rebuild to fix symlinks.
e08353a
045fae2
* Tue Jun 9 2015 Alexander Kurtakov <akurtako@redhat.com> 4.0.0-1
045fae2
- Update to 4.0 final.
045fae2
29393f0
* Mon Jun 1 2015 Alexander Kurtakov <akurtako@redhat.com> 4.0.0-0.2.rc2
29393f0
- Switch to xz tarball.
29393f0
ea4f0d7
* Wed May 27 2015 Alexander Kurtakov <akurtako@redhat.com> 4.0.0-0.1.rc2
ea4f0d7
- Update to 4.0 rc2.
1916171
cbee206
* Thu May 14 2015 Alexander Kurtakov <akurtako@redhat.com> 3.7.1-1
cbee206
- Update to 3.7.1 release.
cbee206
963b189
* Mon Mar 02 2015 Roland Grunberg <rgrunber@redhat.com> - 3.7.0-2
963b189
- Manually add slf4j-log4j12 requires.
963b189
b852dfe
* Mon Mar 02 2015 Roland Grunberg <rgrunber@redhat.com> - 3.7.0-1
b852dfe
- Update to upstream 3.7.0.
b852dfe
52829ae
* Fri Jan 23 2015 Roland Grunberg <rgrunber@redhat.com> - 3.6.2-2
52829ae
- Use Equinox's OSGi runtime instead of Felix's.
52829ae
14ebb7e
* Fri Jan 23 2015 Alexander Kurtakov <akurtako@redhat.com> 3.6.2-1
14ebb7e
- Update to upstream 3.6.2.
14ebb7e
053ca76
* Mon Jan 5 2015 Alexander Kurtakov <akurtako@redhat.com> 3.6.1-1
053ca76
- Update to upstream 3.6.1.
053ca76
d72c4eb
* Fri Dec 19 2014 Alexander Kurtakov <akurtako@redhat.com> 3.5.3-1
d72c4eb
- Update to upstream 3.5.3 release.
d72c4eb
731d437
* Thu Dec 18 2014 Alexander Kurtakov <akurtako@redhat.com> 3.5.2-1
731d437
- Update to upstream 3.5.2 release.
731d437
c15d0db
* Tue Nov 11 2014 Mat Booth <mat.booth@redhat.com> - 3.5.0-3
c15d0db
- Rebuild to generate correct symlinks
c15d0db
- Drop unnecessary requires (now autogenerated by xmvn)
c15d0db
97ed2d3
* Fri Nov 07 2014 Mat Booth <mat.booth@redhat.com> - 3.5.0-2
97ed2d3
- Build/install eclipse plugin with mvn_build/mvn_install
97ed2d3
c9a46b5
* Fri Oct 03 2014 Mat Booth <mat.booth@redhat.com> - 3.5.0-1
c9a46b5
- Update to latest upstream release 3.5.0
c9a46b5
854bd88
* Thu Jun 26 2014 Mat Booth <mat.booth@redhat.com> - 3.4.1-1
854bd88
- Update to latest upstream release 3.4.1
854bd88
- Drop unnecessary BRs
854bd88
dad1713
* Fri Jun 13 2014 Alexander Kurtakov <akurtako@redhat.com> 3.4.0-1
dad1713
- Update to upstream 3.4.0.
dad1713
df2045b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-6
df2045b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
df2045b
9cb915f
* Fri May 30 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.3.2-5
9cb915f
- Use .mfiles geterated during build
9cb915f
d16dec6
* Fri May 30 2014 Alexander Kurtakov <akurtako@redhat.com> 3.3.2-4
d16dec6
- Add missing Rs ( rhbz #1079706 ).
d16dec6
a3de32f
* Wed May 28 2014 Alexander Kurtakov <akurtako@redhat.com> 3.3.2-3
a3de32f
- Rebuild for latest commons-compress.
a3de32f
996f039
* Wed May 21 2014 Alexander Kurtakov <akurtako@redhat.com> 3.3.2-2
996f039
- Fix compile against latest args4j.
996f039
dc726d9
* Fri Apr 25 2014 Alexander Kurtakov <akurtako@redhat.com> 3.3.2-1
dc726d9
- Update to 3.3.2.
dc726d9
87d0066
* Mon Mar 31 2014 Alexander Kurtakov <akurtako@redhat.com> 3.3.1-2
87d0066
- Remove bundled commons-compress.
87d0066
57b6684
* Fri Mar 28 2014 Alexander Kurtakov <akurtako@redhat.com> 3.3.1-1
57b6684
- Update to 3.3.1.
57b6684
fda449b
* Tue Mar 11 2014 Alexander Kurtakov <akurtako@redhat.com> 3.3.0-1
fda449b
- Update to 3.3.0.
fda449b
6193697
* Sun Dec 29 2013 Alexander Kurtakov <akurtako@redhat.com> 3.2.0-1
6193697
- Update to 3.2.0.
6193697
Krzysztof Daniel a8b81d9
* Thu Oct 3 2013 Krzysztof Daniel <kdaniel@redhat.com> 3.1.0-1
Krzysztof Daniel a8b81d9
- Update to Kepler SR1.
Krzysztof Daniel a8b81d9
Krzysztof Daniel 367c907
* Mon Aug 5 2013 Krzysztof Daniel <kdaniel@redhat.com> 3.0.0-7
Krzysztof Daniel 367c907
- Add missing jgit plugin back.
Krzysztof Daniel 367c907
Krzysztof Daniel 4b2dc80
* Tue Jul 16 2013 Krzysztof Daniel <kdaniel@redhat.com> 3.0.0-6
Krzysztof Daniel 4b2dc80
- Change the build system to mvn-rpmbuild.
Krzysztof Daniel 4b2dc80
- Use feclipse-maven-plugin to install things.
Krzysztof Daniel 4b2dc80
- Bug 413163 - Incompatible change in latest args4j: multiValued removed from @Option
Krzysztof Daniel 4b2dc80
nguzman 5ac7cd0
* Fri Jul 5 2013 Neil Brian Guzman <nguzman@redhat.com> 3.0.0-5
nguzman 5ac7cd0
- Bump release
nguzman 5ac7cd0
Neil Guzman d7bed61
* Tue Jun 25 2013 Neil Brian Guzman <nguzman@redhat.com> 3.0.0-4
Neil Guzman d7bed61
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
Neil Guzman d7bed61
Krzysztof Daniel b989e08
* Tue Jun 25 2013 Krzysztof Daniel <kdaniel@redhat.com> 3.0.0-3
Krzysztof Daniel b989e08
- Add missing R: javaewah to eclipse-jgit.
Krzysztof Daniel b989e08
Krzysztof Daniel 10a5046
* Tue Jun 25 2013 Krzysztof Daniel <kdaniel@redhat.com> 3.0.0-2
Krzysztof Daniel 10a5046
- Move symlinks to eclipse-jgit.
Krzysztof Daniel 10a5046
- Fix jgit classpath.
Krzysztof Daniel 10a5046
Neil Guzman cdda44b
* Thu Jun 20 2013 Neil Brian Guzman <nguzman@redhat.com> 3.0.0-1
Neil Guzman cdda44b
- Update to 3.0.0 release
Neil Guzman cdda44b
Krzysztof Daniel e456616
* Tue May 14 2013 Krzysztof Daniel <kdaniel@redhat.com> 2.3.1-2
Krzysztof Daniel e456616
- Rebuild with latest icu4j.
Krzysztof Daniel e456616
eadb0de
* Thu Feb 21 2013 Roland Grunberg <rgrunber@redhat.com> - 2.3.1-1
658dcfb
- SCL-ize package.
658dcfb
658dcfb
* Thu Feb 21 2013 Roland Grunberg <rgrunber@redhat.com> - 2.3.1-1
eadb0de
- Update to 2.3.1 release.
eadb0de
d2ac91f
* Thu Feb 14 2013 Roland Grunberg <rgrunber@redhat.com> - 2.2.0-3
d2ac91f
- jgit subpackage should own its symlinked dependencies.
d2ac91f
123d874
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-2
123d874
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
123d874
Krzysztof Daniel 50ebfcb
* Thu Jan 3 2013 Krzysztof Daniel <kdaniel@redhat.com> 2.2.0-1
Krzysztof Daniel 50ebfcb
- Update to 2.2.0 release.
Krzysztof Daniel 50ebfcb
0923026
* Mon Oct 1 2012 Alexander Kurtakov <akurtako@redhat.com> 2.1.0-1
0923026
- Update to 2.1.0 release.
0923026
ae2d21a
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-2
ae2d21a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ae2d21a
1f0de88
* Mon Jul 2 2012 Alexander Kurtakov <akurtako@redhat.com> 2.0.0-1
1f0de88
- Update to 2.0.0 upstream release.
1f0de88
Severin Gehwolf d3cbd39
* Fri Apr 27 2012 Severin Gehwolf <sgehwolf@redhat.com> 1.3.0-3
Severin Gehwolf d3cbd39
- Use eclipse-pdebuild over old pdebuild script.
Severin Gehwolf d3cbd39
Severin Gehwolf 29e6e7a
* Thu Apr 26 2012 Severin Gehwolf <sgehwolf@redhat.com> 1.3.0-2
Severin Gehwolf 29e6e7a
- Tweak .spec so as to avoid modifying to much of the .spec file
Severin Gehwolf 29e6e7a
- Fix upstream 1.3 release sources.
Severin Gehwolf 29e6e7a
Andrew Robinson 334f684
* Fri Feb 17 2012 Andrew Robinson <arobinso@redhat.com> 1.3.0-1
Andrew Robinson 334f684
- Update to 1.3.0 upstream release.
Andrew Robinson 334f684
2001b72
* Thu Jan 5 2012 Alexander Kurtakov <akurtako@redhat.com> 1.2.0-2
2001b72
- Build eclipse plugin first to not interfere with maven artifacts.
2001b72
08323f8
* Thu Jan 5 2012 Alexander Kurtakov <akurtako@redhat.com> 1.2.0-1
08323f8
- Update to 1.2.0 release.
Andrew Robinson 1278e4c
Andrew Robinson 1278e4c
* Fri Oct 28 2011 Andrew Robinson <arobinso@redhat.com> 1.1.0-4
Andrew Robinson 1278e4c
- Add jsch jar to the classpath.
Andrew Robinson 1278e4c
32b3dee
* Fri Oct 28 2011 Alexander Kurtakov <akurtako@redhat.com> 1.1.0-3
32b3dee
- Drop libs subpackage and use the sh script directly instead of the shaded executable.
32b3dee
- Install jars in _javadir subdir as per guidelines.
32b3dee
Andrew Robinson d5491ad
* Thu Oct 27 2011 Andrew Robinson <arobinso@redhat.com> 1.1.0-2
Andrew Robinson d5491ad
- Added Java libraries, javadocs and console binary subpackages.
Andrew Robinson d5491ad
Andrew Robinson b490a87
* Fri Sep 23 2011 Andrew Robinson <arobinso@redhat.com> 1.1.0-1
Andrew Robinson b490a87
- Update to upstream release 1.1.0.
Andrew Robinson b490a87
Chris Aniszczyk 090ccc2
* Tue Jun 14 2011 Chris Aniszczyk <zx@redhat.com> 1.0.0-2
Chris Aniszczyk 090ccc2
- Update to upstream release 1.0.0.201106090707-r.
Chris Aniszczyk 090ccc2
Chris Aniszczyk da7a3cb
* Tue Jun 07 2011 Chris Aniszczyk <zx@redhat.com> 1.0.0-1
Chris Aniszczyk da7a3cb
- Update to upstream release 1.0.0.
Chris Aniszczyk da7a3cb
Chris Aniszczyk ba7d779
* Tue May 03 2011 Chris Aniszczyk <zx@redhat.com> 0.12.1-1
Chris Aniszczyk ba7d779
- Update to upstream release 0.12.1.
Chris Aniszczyk ba7d779
Chris Aniszczyk 18550e2
* Tue Feb 22 2011 Chris Aniszczyk <zx@redhat.com> 0.11.3-1
Chris Aniszczyk 18550e2
- Update to upstream release 0.11.3.
Chris Aniszczyk 18550e2
0d73676
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.1-2
0d73676
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0d73676
Chris Aniszczyk 6a9d8f6
* Wed Dec 22 2010 Chris Aniszczyk <zx@redhat.com> 0.10.1-1
Chris Aniszczyk 6a9d8f6
- Update to upstream release 0.10.1.
Chris Aniszczyk 6a9d8f6
Chris Aniszczyk 1f9409b
* Thu Oct 7 2010 Chris Aniszczyk <zx@redhat.com> 0.9.3-1
Chris Aniszczyk 1f9409b
- Update to upstream release 0.9.3.
Chris Aniszczyk 1f9409b
Severin Gehwolf 41e74be
* Wed Sep 15 2010 Severin Gehwolf <sgehwolf@redhat.com> 0.9.1-1
Severin Gehwolf 41e74be
- Update to upstream release 0.9.1.
Severin Gehwolf 41e74be
Severin Gehwolf 2f3fad0
* Thu Aug 26 2010 Severin Gehwolf <sgehwolf at, redhat.com> 0.9.0-0.1.20100825git
Severin Gehwolf 2f3fad0
- Make release tag more readable (separate "0.1" and pre-release tag by ".").
Severin Gehwolf 2f3fad0
Severin Gehwolf 6d5cb7e
* Wed Aug 25 2010 Severin Gehwolf <sgehwolf at, redhat.com> 0.9.0-0.120100825git
Severin Gehwolf 6d5cb7e
- Pre-release version of JGit 0.9.0
Severin Gehwolf 6d5cb7e
85505c2
* Fri Jun 25 2010 Severin Gehwolf <sgehwolf at, redhat.com> 0.8.4-2
85505c2
- Increase release number to make tagging work.
85505c2
da01204
* Wed Jun 23 2010 Severin Gehwolf <sgehwolf at, redhat.com> 0.8.4-1
da01204
- Rebase to 0.8.4 release.
da01204
a1e68e4
* Mon Apr 12 2010 Jeff Johnston <jjohnstn@redhat.com> 0.7.1-1
a1e68e4
- Rebase to 0.7.1 release.
13bc250
f0f3b5a
* Tue Feb 9 2010 Alexander Kurtakov <akurtako@redhat.com> 0.6.0-0.1.git20100208
f0f3b5a
- New git snapshot.
f0f3b5a
d04931f
* Thu Nov 5 2009 Alexander Kurtakov <akurtako@redhat.com> 0.6.0-0.1.git20091029
d04931f
- Correct release.
d04931f
d04931f
* Thu Oct 29 2009 Alexander Kurtakov <akurtako@redhat.com> 0.6.0-0.git20091029.1
d04931f
- Initial package