From 1d5fc579b5b3aecd86409d6a4475358e9e913629 Mon Sep 17 00:00:00 2001 From: Miro Hrončok Date: May 19 2020 10:43:45 +0000 Subject: Orphaned for 6+ weeks --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 13053eb..0000000 --- a/.gitignore +++ /dev/null @@ -1,27 +0,0 @@ -josm-0.9329svn.tar.gz -/josm-0.9900svn.tar.gz -/josm-0.9963svn.tar.gz -/josm-0.9979svn.tar.gz -/josm-0.10327svn.tar.gz -/josm-0.10526svn.tar.gz -/josm-0.10966svn.tar.gz -/josm-0.11223svn.tar.gz -/josm-0.11427svn.tar.gz -/josm-0.13576svn.tar.gz -/josm-0.13710svn.tar.gz -/josm-0.14026svn.tar.gz -/josm-0.14066svn.tar.gz -/josm-0.14824svn.tar.gz -/josm-0.14945svn.tar.gz -/josm-0.15031svn.tar.gz -/josm-0.15150svn.tar.gz -/josm-0.15155svn.tar.gz -/josm-0.15234svn.tar.gz -/josm-0.15237svn.tar.gz -/josm-0.15238svn.tar.gz -/josm-0.15322svn.tar.gz -/josm-0.15390svn.tar.gz -/josm-0.15492svn.tar.gz -/josm-0.15553svn.tar.gz -/josm-0.15628svn.tar.gz -/josm-0.15806svn.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/josm-0-add_classpath.patch b/josm-0-add_classpath.patch deleted file mode 100644 index 4941cda..0000000 --- a/josm-0-add_classpath.patch +++ /dev/null @@ -1,61 +0,0 @@ ---- build.xml.patch1 2017-01-02 20:31:13.289502203 +0100 -+++ build.xml 2017-01-02 20:46:47.217403900 +0100 -@@ -37,6 +37,11 @@ - - - -+ -+ -+ -+ -+ - - - -@@ -221,7 +226,7 @@ Build-Date: ${build.tstamp} - - - -- - - -@@ -264,7 +269,7 @@ Build-Date: ${build.tstamp} - - - -- - -@@ -287,8 +292,8 @@ Build-Date: ${build.tstamp} - - - -- - - -@@ -325,6 +330,7 @@ Build-Date: ${build.tstamp} - - - -+ -+ -+ - - - diff --git a/josm-0-remove_svn_call.patch b/josm-0-remove_svn_call.patch deleted file mode 100644 index ff43c31..0000000 --- a/josm-0-remove_svn_call.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- b/build.xml 2016-02-29 06:55:24.554053066 +0100 -+++ josm-0/build.xml 2016-02-29 07:03:27.663296571 +0100 -@@ -90,7 +90,7 @@ - -- -+ - - - - -diff -up josm-0/build.xml.revision josm-0/build.xml ---- josm-0/build.xml.revision 2019-07-22 15:02:13.106360170 +0200 -+++ josm-0/build.xml 2019-07-22 15:02:28.710520313 +0200 -@@ -170,7 +170,8 @@ - - # automatically generated by JOSM build.xml - do not edit - Revision: ${version.entry.commit.revision} --Is-Local-Build: true -+Build-Name: Fedora -+Is-Local-Build: false - Build-Date: ${build.tstamp} - - diff --git a/josm-generate-tarball.sh b/josm-generate-tarball.sh deleted file mode 100644 index b5ffd42..0000000 --- a/josm-generate-tarball.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/sh - -# make sure if some of the commands fails, we will know about that -set -e - -if [ $# -ne 1 ] -then - echo Usage : ./josm-generate-tarball.sh JOSM_SVN_TAG - exit 1 -fi - -NAME_VERSION=josm-0 -NAME=josm -JOSM_SVN_TAG=$1 - -# to know svn revision for josm translation, check it in MANIFEST.MF provided by josm svn in trunk/lib/josm-tranlsation.jar - -# removing old sources files if exists -rm -rf ${NAME_VERSION} - -# cheking out josm svn -svn -r ${JOSM_SVN_TAG} export https://josm.openstreetmap.de/svn/trunk/ ${NAME_VERSION} - -# Delete org.apache.tools.bzip2, it can be found in buildrequires ant package -rm -r ${NAME_VERSION}/src/org/apache -# Delete org.glassfish.json, it can be found in buildrequires ant package -rm -r ${NAME_VERSION}/src/org/glassfish -rm -r ${NAME_VERSION}/src/com/drew -rm -r ${NAME_VERSION}/src/com/kitfox -# The signpost-core package was retired from Fedora so leave it bundled for now -#rm -r ${NAME_VERSION}/src/oauth - -# We do not run tests -rm -r ${NAME_VERSION}/test/ - -# We do not need most of the tools -rm -r ${NAME_VERSION}/tools/error_prone_javac.jar - -# We do not need MacOS or Windows things -rm -r ${NAME_VERSION}/macosx -rm -r ${NAME_VERSION}/windows - -# Add REVISION.XML to source files -svn -r ${JOSM_SVN_TAG} co https://josm.openstreetmap.de/svn/trunk/ temporary_dir -svn info --xml temporary_dir > ${NAME_VERSION}/REVISION.XML -rm -rf temporary_dir - -# Optimize the svg images so the svgsalamander does not choke on them and we have (a bit) smaller tarballs -# Using svgcleaner from "cargo install svgcleaner" -PATH="$HOME/.cargo/bin:$PATH" -find ${NAME_VERSION} -regex ".*.svg" -print0 | xargs -0 -I '{}' svgcleaner '{}' '{}' - -# creating source tar -tar zcvf ${NAME_VERSION}.${JOSM_SVN_TAG}svn.tar.gz ${NAME_VERSION} #i18n plugins - -# delete temporary directories -rm -rf ${NAME_VERSION} #i18n plugins - diff --git a/josm.spec b/josm.spec deleted file mode 100644 index 9feb2c5..0000000 --- a/josm.spec +++ /dev/null @@ -1,341 +0,0 @@ -# -# spec file for package josm -%global svn_revision 15806 -%global fqdn org.openstreetmap.josm - - -Name: josm -Version: 0 -Release: 0.108.%{svn_revision}svn%{?dist} -Summary: An editor for OpenStreetMap (OSM) -License: GPLv2+ -URL: https://josm.openstreetmap.de/ -# The source for this package was pulled from upstream's vcs. Use the -# following commands to generate the tarball: -# ./josm-generate-tarball.sh SVN_REVISION -Source0: %{name}-%{version}.%{svn_revision}svn.tar.gz -Source2: %{name}-generate-tarball.sh - -# patch to remove metadata-extractor and signpost-core of final jar -Patch1: %{name}-%{version}-add_classpath.patch - -#remove call to "svn info" and fix in build.xml revision and commit date -Patch2: %{name}-%{version}-remove_svn_call.patch - - -BuildArch: noarch -# OpenJFX is not available anywhere else than on following arches -# it should be possible to build future versions without JFX -ExclusiveArch: %{ix86} x86_64 -BuildRequires: jpackage-utils -BuildRequires: desktop-file-utils -BuildRequires: ant -BuildRequires: java-devel >= 1:1.7.0 -BuildRequires: gettext -BuildRequires: javacc -BuildRequires: metadata-extractor2 >= 2.9.0 -BuildRequires: svgsalamander -BuildRequires: apache-commons-codec -BuildRequires: apache-commons-compress -BuildRequires: apache-commons-logging -BuildRequires: apache-commons-jcs-core -BuildRequires: jsonp -BuildRequires: openjfx-devel -BuildRequires: java-1.8.0-openjdk-openjfx -%if 0%{?fedora} -BuildRequires: libappstream-glib -%endif -Requires: java >= 1:1.7.0 -Requires: jpackage-utils -Requires: hicolor-icon-theme -Requires: metadata-extractor2 >= 2.9.0 -Requires: ant -Requires: svgsalamander -Requires: xmpcore -Requires: apache-commons-compress -Requires: apache-commons-codec -Requires: apache-commons-logging -Requires: apache-commons-jcs-core -Requires: jsonp -Requires: openjfx -Requires: java-1.8.0-openjdk-openjfx - -# We still bundle some libraries -Provides: bundled(gnu-getopt) = 1.0.5 -Provides: bundled(openjdk-javax-json) -Provides: bundled(gdata-java) -Provides: bundled(signpost-core) = 1.2.1.1 - - -%description -JOSM is an editor for OpenStreetMap (OSM) written in Java -Currently it supports loading stand alone GPX track data from the OSM database, -loading and editing existing nodes, ways, metadata tags and relations. - -OpenStreetMap is a project aimed squarely at creating and providing -free geographic data such as street maps to anyone who wants them. -The project was started because most maps you think of as free actually -have legal or technical restrictions on their use, holding back people -from using them in creative, productive or unexpected ways. - -%package javadoc -Summary: Javadocs for %{name} -Requires: %{name} = %{version}-%{release} -Requires: jpackage-utils - -%description javadoc -This package contains the API documentation for %{name}. - -%prep -%setup -q -%patch1 -p0 -%patch2 -p1 - -find . -name '*.jar' -exec rm -f '{}' \; -find . -name '*.class' -exec rm -f '{}' \; - -# The following subdirectories of bundled libraries are already removed -# from the generated tarball: -# * metadata-extractor2 (src/com/drew) -# * svgSalamander (src/com/kitfox) -# * glassfish (src/org/glassfish) -# * apache-commons-{compress,jcs} (src/org/apache/*) -# -# The following is left bundled: -# * gdata (src/com/google/gdata) -# * jsonp (src/javax/jsonp) - -mkdir -p lib -build-jar-repository -s lib \ -metadata-extractor2-2 \ -svgsalamander \ -ant \ -jsonp \ -apache-commons-compress \ -apache-commons-codec \ -apache-commons-logging \ -apache-commons-jcs-core - -ln -s $(build-classpath javacc) tools/javacc.jar - -iconv -f iso8859-15 -t utf-8 CONTRIBUTION > CONTRIBUTION.conv && mv -f CONTRIBUTION.conv CONTRIBUTION - -%build -ant dist -ant javadoc - - -%install -mkdir -p %{buildroot}%{_javadir} - -mkdir -p %{buildroot}%{_javadocdir}/%{name} -cp -rp javadoc \ -%{buildroot}%{_javadocdir}/%{name} - -install -p -m 644 dist/%{name}-custom.jar %{buildroot}%{_javadir}/%{name}.jar - -%jpackage_script %{fqdn}.gui.MainApplication "" "" josm:metadata-extractor2-2:ant:apache-commons-codec:svgsalamander:xmpcore:apache-commons-compress:apache-commons-jcs:apache-commons-logging:jsonp josm true - -install -d %{buildroot}%{_datadir}/icons/hicolor/scalable/apps -install -p -m 644 images/logo.svg %{buildroot}%{_datadir}/icons/hicolor/scalable/apps/%{fqdn}.svg -install -d %{buildroot}%{_datadir}/icons/hicolor/48x48/apps -install -p -m 644 images/logo_48x48x32.png %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/%{fqdn}.png - -install -Dp -m 644 linux/tested/usr/share/man/man1/%{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1 - -%if 0%{?fedora} -install -Dp -m 644 linux/tested/usr/share/metainfo/%{fqdn}.appdata.xml %{buildroot}/%{_datadir}/appdata/%{fqdn}.appdata.xml -%endif - -desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ linux/tested/usr/share/applications/%{fqdn}.desktop - -appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/appdata/%{fqdn}.appdata.xml - -%files -%doc README CONTRIBUTION -%license LICENSE gpl-2.0.txt gpl-3.0.txt -%{_mandir}/man1/%{name}.1.gz -%{_javadir}/%{name}.jar -%{_bindir}/%{name} -%{_datadir}/applications/%{fqdn}.desktop -%{_datadir}/icons/hicolor/48x48/apps/%{fqdn}.png -%{_datadir}/icons/hicolor/scalable/apps/%{fqdn}.svg -%if 0%{?fedora} -%{_datadir}/appdata/%{fqdn}.appdata.xml -%endif - -%files javadoc -%{_javadocdir}/%{name} - - - -%changelog -* Sun Feb 02 2020 Jakub Jelen - 0-0.108.15806svn -- New upstream release (#1797131) - -* Wed Jan 29 2020 Fedora Release Engineering - 0-0.107.15628svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Mon Jan 06 2020 Jakub Jelen - 0-0.106.15628svn -- New upstream release (#1787788) - -* Tue Dec 03 2019 Jakub Jelen - 0-0.105.15553svn -- New upstream release (#1778923) - -* Mon Nov 04 2019 Jakub Jelen - 0-0.104.15492svn -- New upstream release (#1768044) - -* Mon Sep 30 2019 Jakub Jelen - 0-0.103.15390svn -- Fix classpath to avoid errors during startup - -* Mon Sep 30 2019 Jakub Jelen - 0-0.102.15390svn -- New upstream release (#1756995) - -* Wed Sep 18 2019 Jakub Jelen - 0-0.101.15322svn -- Remove bogus signpost-core dependency, which is already bundled (#1753162) - -* Wed Sep 11 2019 Jakub Jelen - 0-0.100.15322svn -- New upstream release (#1747695) -- now bundles signpost-core, which was removed from Fedora - -* Wed Jul 31 2019 Jakub Jelen - 0-0.99.15238svn -- New upstream release -- Optimize SVG images to match upstream releases - -* Thu Jul 25 2019 Fedora Release Engineering - 0-0.98.15237svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Tue Jul 09 2019 Jakub Jelen - 0-0.97.15237svn -- New upstream release (#1728083) - -* Mon Jul 08 2019 Jakub Jelen - 0-0.96.15234svn -- New upstream release (#1727672) - -* Tue Jun 04 2019 Jakub Jelen - 0-0.95.15155svn -- New upstream release (#1716667) - -* Mon Jun 03 2019 Jakub Jelen - 0-0.94.15150svn -- New upstream release (#1716107) - -* Tue Apr 30 2019 Jakub Jelen - 0-0.93.15031svn -- New upstream release (#1704335) - -* Tue Apr 02 2019 Jakub Jelen - 0-0.92.14945svn -- New upstream release (#1694756) - -* Mon Mar 25 2019 Jakub Jelen - 0-0.91.14824svn -- New upstream release (#1672456) - -* Fri Feb 01 2019 Fedora Release Engineering - 0-0.90.14066svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Wed Dec 12 2018 Jakub Jelen - 0-0.89.14066svn -- New upstream release (#1582964, #1604448) - -* Fri Jul 13 2018 Fedora Release Engineering - 0-0.88.13710svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Mon May 14 2018 Jakub Jelen - 0-0.87.13710svn -- New upstream release (#1575437) - -* Wed May 02 2018 Jakub Jelen - 0-0.86.13576svn -- New upstream release (#1569873, #1500778) - -* Wed Feb 07 2018 Fedora Release Engineering - 0-0.85.11427svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 0-0.84.11427svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 0-0.83.11427svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Tue Jan 03 2017 Cédric OLIVIER 0-0.82.11427svn -- Update to 11427 svn revision - -* Sun Nov 13 2016 Cédric OLIVIER 0-0.81.11223svn -- Update to 11223 svn revision - -* Tue Sep 13 2016 Cédric OLIVIER 0-0.80.10966svn -- Update to 10966 svn revision - -* Fri Jul 15 2016 Cédric OLIVIER 0-0.79.10526svn -- Update to 10526 svn revision - -* Sun Jun 19 2016 Cédric OLIVIER 0-0.78.10327svn -- Update to 10327 svn revision - -* Mon Mar 21 2016 Cédric OLIVIER 0-0.77.9979svn -- Update to 9979 svn revision - -* Sat Mar 12 2016 Cédric OLIVIER 0-0.76.9963svn -- Update to 9963 svn revision - -* Mon Feb 29 2016 Cédric OLIVIER 0-0.75.9900svn -- Update to 9900 svn revision - -* Mon Feb 15 2016 Cédric OLIVIER 0-0.74.9329svn -- Update Requirement (#1308516) - -* Wed Feb 10 2016 Cédric OLIVIER 0-0.73.9329svn -- Update classpath in josm launcher - -* Tue Feb 09 2016 Cédric OLIVIER 0-0.72.9329svn -- unset executable bits on appdata file - -* Tue Feb 09 2016 Cédric OLIVIER 0-0.71.9329svn -- Remove jsonp from source - -* Thu Feb 04 2016 Fedora Release Engineering - 0-0.70.9329svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Sat Jan 16 2016 Matěj Cepl - 0-0.69.9329svn -- Update to 9329 svn revision (#1299047) - -* Thu Dec 03 2015 Cédric OLIVIER 0-0.69.9060svn -- Update to 9060 svn revision - -* Sun Oct 25 2015 Cédric OLIVIER 0-0.68.8800svn -- Update to 8800 svn revision - -* Wed Jun 17 2015 Fedora Release Engineering - 0-0.67.8109svn -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Tue Mar 3 2015 Cédric OLIVIER 0-0.66.8109svn -- Update to 8109 svn revision - -* Thu Feb 12 2015 Cédric OLIVIER 0-0.65.7995svn -- Update to 7995 svn revision - -* Sat Jan 24 2015 Cédric OLIVIER 0-0.64.7906svn -- Fix bug in launcher - -* Sat Jan 17 2015 Cédric OLIVIER 0-0.63.7906svn -- Adding dependency apache-commons-compress - -* Sat Jan 17 2015 Cédric OLIVIER 0-0.62.7906svn -- Update to 7906 svn revision - -* Wed Dec 24 2014 Cédric OLIVIER 0-0.61.7777svn -- Update to 7777 svn revision - -* Mon Nov 17 2014 Cédric OLIVIER 0-0.60.7643svn -- Include appdata - -* Mon Oct 27 2014 Cédric OLIVIER 0-0.59.7643svn -- Change commons-codec to apache-commons-codec - -* Sat Oct 25 2014 Cédric OLIVIER 0-0.58.7643svn -- Update to 7643 svn revision - -* Thu Oct 02 2014 Cédric OLIVIER 0-0.57.7588svn -- Fix bug with geolocal picture import - -* Tue Sep 30 2014 Cédric OLIVIER 0-0.56.7588svn -- Update to 7588 svn revision - -* Tue Sep 02 2014 Cédric OLIVIER 0-0.55.7480svn -- Update to 7480 svn revision - -* Fri Aug 01 2014 Cédric OLIVIER 0-0.54.7347svn -- Update to 7347 svn revision diff --git a/sources b/sources deleted file mode 100644 index cdd901a..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (josm-0.15806svn.tar.gz) = c0c71361d281f9c0259e43967bdad063d7afd2098024736c63c63ecf48f740a44690c0d89854e12c876810517fa71fa0077c1730c343266c3becf845acaadbd4