dea59c3
%global version_suffix 201604071810-r
d04931f
7e56336
Name:           eclipse-jgit
dea59c3
Version:        4.3.0
dea59c3
Release:        1%{?dist}
d04931f
Summary:        Eclipse JGit
d04931f
d04931f
License:        BSD
d04931f
URL:            http://www.eclipse.org/egit/
29393f0
Source0:        http://git.eclipse.org/c/jgit/jgit.git/snapshot/jgit-%{version}.%{version_suffix}.tar.xz
32b3dee
Patch0:         fix_jgit_sh.patch
fd0bd28
# Patch for latest versions of args4j
57b6684
Patch1:         eclipse-jgit-413163.patch
fd0bd28
# Have to patch for latest vesions of jetty
fd0bd28
Patch2:         eclipse-jgit-jetty-9.3.7.patch
d04931f
d04931f
BuildArch: noarch
d04931f
7e56336
BuildRequires:  eclipse-filesystem
d2ac91f
BuildRequires:  maven-local
e528872
BuildRequires:  maven-shade-plugin
Krzysztof Daniel 4b2dc80
BuildRequires:  tycho
68cada1
BuildRequires:  args4j
658dcfb
BuildRequires:  apache-commons-compress
658dcfb
BuildRequires:  xz-java >= 1.1-2
Neil Guzman cdda44b
BuildRequires:  javaewah
8e8361b
BuildRequires:  slf4j
fd0bd28
BuildRequires:  jgit
7115305
BuildRequires:  google-gson
7e56336
Requires:       eclipse-filesystem
7e56336
Requires:       jgit = %{version}-%{release}
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
Andrew Robinson d5491ad
7e56336
%description -n jgit
Andrew Robinson ec9841f
Command line Git tool built entirely in Java.
Andrew Robinson d5491ad
d04931f
%prep
Severin Gehwolf 29e6e7a
%setup -n jgit-%{version}.%{version_suffix} -q
32b3dee
32b3dee
%patch0
Krzysztof Daniel 4b2dc80
%patch1 -p1
fd0bd28
%if 0%{?fedora} >= 24
fd0bd28
%patch2 -p1
fd0bd28
%endif
d04931f
6193697
#javaewah change
97ed2d3
sed -i -e "s/javaewah/com.googlecode.javaewah.JavaEWAH/g" org.eclipse.jgit.packaging/org.eclipse.jgit{,.pgm}.feature/feature.xml
Neil Guzman cdda44b
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
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
52829ae
# Use Equinox OSGi instead of Felix
52829ae
%pom_change_dep -r org.osgi:org.osgi.core org.eclipse.osgi:org.eclipse.osgi
52829ae
97ed2d3
# Relax version restriction for javaewah
b329162
sed -i -e 's/0.7.9,0.8.0/0.7.9,0.9.0/g' org.eclipse.jgit/META-INF/MANIFEST.MF
b329162
sed -i -e 's/0.7.9,0.8.0/0.7.9,0.9.0/g' org.eclipse.jgit.test/META-INF/MANIFEST.MF
fd0bd28
fd0bd28
# Remove unnecessary jacoco and javadoc usage
fd0bd28
%pom_remove_plugin org.jacoco:jacoco-maven-plugin
fd0bd28
%pom_remove_plugin :maven-javadoc-plugin
fd0bd28
9568a4c
# Relax version restriction for args4j
9568a4c
sed -i /org.kohsuke.args4j/s/2\\.1\\.0/3/ $(find -name MANIFEST.MF)
b329162
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
68cada1
# Does not build due to missing OSGi metadata in httpcomponents-client-cache
fd0bd28
sed -i -e '/client\.cache/d' org.eclipse.jgit.http.apache/META-INF/MANIFEST.MF
68cada1
47de08f
# Remove org.apache.log4j
47de08f
%pom_xpath_remove "plugin[@id='org.apache.log4j']" org.eclipse.jgit.packaging/org.eclipse.jgit.feature/feature.xml
65d2e33
%pom_remove_dep log4j:log4j . 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
65d2e33
%pom_change_dep org.slf4j:slf4j-log4j12 org.slf4j:slf4j-simple . org.eclipse.jgit.pgm
b852dfe
68cada1
pushd org.eclipse.jgit.packaging
68cada1
%mvn_package "::pom::" __noinstall
68cada1
popd
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
97ed2d3
%mvn_build -f --post install:install \
97ed2d3
  -- -Dmaven.repo.local=$(pwd)/org.eclipse.jgit.packaging/.m2
97ed2d3
29fb5a2
# Second invocation builds the eclipse features
97ed2d3
pushd org.eclipse.jgit.packaging
29fb5a2
%mvn_build -j -f -- -Dfedora.p2.repos=$(pwd)/.m2
97ed2d3
popd
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
97ed2d3
pushd org.eclipse.jgit.packaging
97ed2d3
%mvn_install
Krzysztof Daniel 50ebfcb
popd
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
97ed2d3
%files -f org.eclipse.jgit.packaging/.mfiles
97ed2d3
%doc LICENSE README.md
d04931f
97ed2d3
%files -n jgit -f .mfiles
Andrew Robinson d5491ad
%{_bindir}/jgit
97ed2d3
%dir %{_javadir}/jgit
97ed2d3
%dir %{_mavenpomdir}/jgit
97ed2d3
%doc LICENSE README.md
Andrew Robinson d5491ad
97ed2d3
%files -n jgit-javadoc -f .mfiles-javadoc
97ed2d3
%doc LICENSE README.md
Andrew Robinson d5491ad
d04931f
%changelog
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