diff --git a/.devtoolset-4-eclipse-ecf.metadata b/.devtoolset-4-eclipse-ecf.metadata new file mode 100644 index 0000000..fe3688a --- /dev/null +++ b/.devtoolset-4-eclipse-ecf.metadata @@ -0,0 +1 @@ +00f902567ed40aa32a387c7d7e15a4883b4c2c22 SOURCES/org.eclipse.ecf-R-Release_HEAD-sdk_feature-152_2015-05-12_17-22-37.tar.bz2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ce59d87 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/org.eclipse.ecf-R-Release_HEAD-sdk_feature-152_2015-05-12_17-22-37.tar.bz2 diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/eclipse-ecf.spec b/SPECS/eclipse-ecf.spec new file mode 100644 index 0000000..f159528 --- /dev/null +++ b/SPECS/eclipse-ecf.spec @@ -0,0 +1,266 @@ +%{?scl:%scl_package eclipse-ecf} +%{!?scl:%global pkg_name %{name}} +%{?java_common_find_provides_and_requires} + +# The core sub-package must be archful because it is required to be in +# libdir by the platform, but we have no natives, so suppress debuginfo +%global debug_package %{nil} + +# This exclude breaks the cyclic dependency on the platform to aide in +# bootstrapping +%global __requires_exclude .*org\.eclipse\.equinox.* + +%global git_tag R-Release_HEAD-sdk_feature-152_2015-05-12_17-22-37 + +Name: %{?scl_prefix}eclipse-ecf +Version: 3.10.0 +Release: 4.2%{?dist} +Summary: Eclipse Communication Framework (ECF) Eclipse plug-in + +License: EPL +URL: http://www.eclipse.org/ecf/ +Source0: http://git.eclipse.org/c/ecf/org.eclipse.ecf.git/snapshot/org.eclipse.ecf-%{git_tag}.tar.bz2 + + +BuildRequires: %{?scl_prefix}eclipse-pde +BuildRequires: %{?scl_prefix_java_common}httpcomponents-client +BuildRequires: %{?scl_prefix_java_common}httpcomponents-core +BuildRequires: %{?scl_prefix_java_common}apache-commons-codec +BuildRequires: %{?scl_prefix_java_common}apache-commons-logging + +%description +ECF is a set of frameworks for building communications into applications and +services. It provides a lightweight, modular, transport-independent, fully +compliant implementation of the OSGi Remote Services standard. + +%package core +Summary: Eclipse ECF Core + +Requires: %{?scl_prefix}eclipse-filesystem + +%description core +ECF bundles required by eclipse-platform. + +%prep +%{?scl:scl enable %{scl_maven} %{scl} - << "EOF"} +%setup -q -n org.eclipse.ecf-%{git_tag} + +find . -type f -name "*.jar" -exec rm {} \; +find . -type f -name "*.class" -exec rm {} \; + +#get just the bits we need +mkdir -p ecf/plugins +mkdir -p ecf/features + +cp -r releng/features/org.eclipse.ecf.core.{,ssl.}feature \ + ecf/features +cp -r releng/features/org.eclipse.ecf.filetransfer.httpclient4.{,ssl.}feature \ + ecf/features +cp -r releng/features/org.eclipse.ecf.filetransfer.{,ssl.}feature \ + ecf/features + +cp -r framework/bundles/org.eclipse.ecf ecf/plugins +cp -r framework/bundles/org.eclipse.ecf.identity ecf/plugins +cp -r framework/bundles/org.eclipse.ecf.ssl ecf/plugins +cp -r framework/bundles/org.eclipse.ecf.filetransfer ecf/plugins +cp -r providers/bundles/org.eclipse.ecf.provider.filetransfer{,.ssl} ecf/plugins +cp -r providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4{,.ssl} ecf/plugins + +rm -rf `ls | grep -v "ecf"` + +# Orbit deps for PDE build +mkdir -p deps +build-jar-repository -s -p deps \ + httpcomponents/httpclient httpcomponents/httpcore commons-codec commons-logging + +# Allow building on java > 1.4 +sed -i -e 's#(Object) ((URIID) o)#((URIID) o)#g' ecf/plugins/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/URIID.java + +# Compatibility with httpcomponents >= 4.4.0 +sed -i '/httpcomponents/s/,4.4)/,5)/' $(find -name *.MF) +%{?scl:EOF} + + +%build +%{?scl:scl enable %{scl_maven} %{scl} - << "EOF"} +OPTIONS="-DforceContextQualifier=$(date +v%Y%m%d-%H00)" + +eclipse-pdebuild -f org.eclipse.ecf.core.feature -j "$OPTIONS" -o `pwd`/deps +eclipse-pdebuild -f org.eclipse.ecf.core.ssl.feature -j "$OPTIONS" -o `pwd`/deps +eclipse-pdebuild -f org.eclipse.ecf.filetransfer.feature -j "$OPTIONS" -o `pwd`/deps +eclipse-pdebuild -f org.eclipse.ecf.filetransfer.ssl.feature -j "$OPTIONS" -o `pwd`/deps +eclipse-pdebuild -f org.eclipse.ecf.filetransfer.httpclient4.feature -j "$OPTIONS" -o `pwd`/deps +eclipse-pdebuild -f org.eclipse.ecf.filetransfer.httpclient4.ssl.feature -j "$OPTIONS" -o `pwd`/deps +%{?scl:EOF} + + +%install +%{?scl:scl enable %{scl_maven} %{scl} - << "EOF"} +install -d -m 755 %{buildroot}%{_libdir}/eclipse/{features,plugins} + +unzip -q -n -d %{buildroot}%{_libdir} build/rpmBuild/org.eclipse.ecf.core.feature.zip +unzip -q -n -d %{buildroot}%{_libdir} build/rpmBuild/org.eclipse.ecf.core.ssl.feature.zip +unzip -q -n -d %{buildroot}%{_libdir} build/rpmBuild/org.eclipse.ecf.filetransfer.feature.zip +unzip -q -n -d %{buildroot}%{_libdir} build/rpmBuild/org.eclipse.ecf.filetransfer.ssl.feature.zip +unzip -q -n -d %{buildroot}%{_libdir} build/rpmBuild/org.eclipse.ecf.filetransfer.httpclient4.feature.zip +unzip -q -n -d %{buildroot}%{_libdir} build/rpmBuild/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature.zip + +mkdir -p %{buildroot}%{_javadir}/eclipse + +# Symlink jars into javadir +pushd %{buildroot}%{_javadir}/eclipse +for J in ecf{,.identity,.ssl,.filetransfer,.provider.filetransfer{,.ssl,.httpclient4{,.ssl}}} ; do + DIR=../../../..%{_root_libdir}/eclipse + [ -e "`ls $DIR/plugins/org.eclipse.${J}_*.jar`" ] && ln -s $DIR/plugins/org.eclipse.${J}_*.jar ${J}.jar +done +popd + +# Remove stuff that will be symlinked by the platform +rm %{buildroot}%{_libdir}/eclipse/plugins/org.apache* +%{?scl:EOF} + + +%files core +%{_libdir}/eclipse/features/* +%{_libdir}/eclipse/plugins/* +%{_javadir}/eclipse/* +%doc ecf/features/org.eclipse.ecf.core.feature/*.html + +%changelog +* Wed Jul 29 2015 Mat Booth - 3.10.0-4.2 +- Fix failure to build from source + +* Mon Jun 29 2015 Mat Booth - 3.10.0-4.1 +- Import latest from Fedora + +* Mon Jun 29 2015 Mat Booth - 3.10.0-4 +- Drop incomplete and forbidden SCL macros + +* Wed Jun 17 2015 Fedora Release Engineering - 3.10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Thu Jun 04 2015 Michael Simacek - 3.10.0-2 +- Rebuild against httpcomponents-client-4.5 + +* Wed May 13 2015 Mat Booth - 3.10.0-1 +- Update to 3.10.0 release + +* Tue Mar 31 2015 Mat Booth - 3.9.3-2 +- Add requires on httpcompnents-* >= 4.4.1 + +* Tue Mar 31 2015 Mat Booth - 3.9.3-1 +- Update to latest upstream release + +* Tue Mar 31 2015 Mikolaj Izdebski - 3.9.2-4 +- Rebuild for httpcomponents-client-4.4.1 update + +* Thu Mar 19 2015 Mikolaj Izdebski - 3.9.2-3 +- Rebuild for httpcomponents-core-4.4.1 update + +* Thu Feb 19 2015 Mat Booth - 3.9.2-2 +- Rebuild for latest httpcomponents + +* Mon Jan 19 2015 Mat Booth - 3.9.2-1 +- Update to latest upstream release + +* Mon Jan 19 2015 Mikolaj Izdebski - 3.9.1-3 +- Rebuild for httpcomponents 4.4 update + +* Tue Dec 09 2014 Roland Grunberg - 3.9.1-2 +- Symlink ECF bundles into javadir. + +* Thu Nov 27 2014 Mat Booth - 3.9.1-1 +- Update to latest upstream release + +* Thu Nov 27 2014 Mat Booth - 3.9.0-3 +- Make core package archful so it can be installed into libdir + where eclipse-platform expects it to be + +* Tue Nov 18 2014 Mat Booth - 3.9.0-2 +- Rebuild for new commons-codec + +* Tue Aug 19 2014 Mat Booth - 3.9.0-1 +- Update to latest upstream release +- Drop unneeded patch + +* Wed Aug 6 2014 Alexander Kurtakov 3.8.1-3 +- Rebuild against latest httpcomponents. + +* Mon Jul 21 2014 Alexander Kurtakov 3.8.1-2 +- Rebuild for apache-commons-logging 1.2. + +* Wed Jun 25 2014 Mat Booth - 3.8.1-1 +- Update to latest upstream release + +* Wed Jun 11 2014 Roland Grunberg - 3.8.0-4 +- Remove problematic manifest alterations from specfile. + +* Fri Jun 06 2014 Mat Booth - 3.8.0-3 +- Rebuild against latest httpcomponents. + +* Mon May 12 2014 Alexander Kurtakov 3.8.0-2 +- Rebuild against latest httpcomponents. + +* Wed Mar 19 2014 Mat Booth - 3.8.0-1 +- Update to latest upstream. +- Now necessary to explicitly build more fine-grained features. +- Drop unneeded dep on jakarta-commons-httpclient. +- Fixed mixed use of tabs and spaces. +- Switch core package to R: java-headless, rhbz #1068037 + +* Tue Sep 3 2013 Krzysztof Daniel 3.6.1-1 +- Update to latest upstream. + +* Sat Aug 03 2013 Fedora Release Engineering - 3.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Jun 21 2013 Krzysztof Daniel 3.6.0-2 +- 974112: Remove versions and timestamps from ECF. + +* Wed May 1 2013 Krzysztof Daniel 3.6.0-1 +- Update to latest upstream. + +* Mon Apr 8 2013 Krzysztof Daniel 3.5.7-0.6 +- Rebuild with old commons logging. + +* Mon Apr 8 2013 Krzysztof Daniel 3.5.7-0.5 +- Drop v3 httpclient. +- Make dependency to commons loggigng less strict. + +* Wed Mar 20 2013 Krzysztof Daniel 3.5.7-0.4 +- Add direct dependency to jakarta-commons-httpclient. + +* Wed Mar 20 2013 Krzysztof Daniel 3.5.7-0.3 +- Symlink deps against /usr/share/java/. + +* Fri Mar 15 2013 Krzysztof Daniel 3.5.7-0.2 +- Explicitly build httpclient4 feature. + +* Thu Mar 14 2013 Krzysztof Daniel 3.5.7-0.1 +- Update to latest upstream. +- Initial SCLization. + +* Wed Feb 13 2013 Fedora Release Engineering - 3.5.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Oct 8 2012 Krzysztof Daniel 3.5.6-7 +- Use __requires_exclude instead of __provides_exclude. + +* Mon Oct 8 2012 Krzysztof Daniel 3.5.6-6 +- Try out __provides_exclude + +* Mon Oct 8 2012 Krzysztof Daniel 3.5.6-5 +- Use new way of changing auto required dependencies. + +* Fri Oct 5 2012 Krzysztof Daniel 3.5.6-4 +- Don't generate autorreuquire. + +* Mon Aug 27 2012 Krzysztof Daniel 3.5.6-3 +- Don't duplicate org.apache* plugins +- Use context qualifier to avoid constant feature version changes. + +* Wed Aug 8 2012 Krzysztof Daniel 3.5.6-2 +- Review issues fixed. + +* Wed Aug 8 2012 Krzysztof Daniel 3.5.6-1 +- Initial packaging.