Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf45a1de84 | ||
|
|
70b2092cc1 |
8 changed files with 651 additions and 0 deletions
22
.gitignore
vendored
Normal file
22
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/catalog_gcvs.tgz
|
||||
/catalog_idx.tgz
|
||||
/catalog_tycho2.tgz
|
||||
/catalog_wds.tgz
|
||||
/catalog_pgc.tgz
|
||||
/catalog_ngc.tgz
|
||||
/catalog_gcm.tgz
|
||||
/catalog_gpn.tgz
|
||||
/catalog_lbn.tgz
|
||||
/catalog_ocl.tgz
|
||||
/skychart-3.11-3141-src-nopatents.tar.xz
|
||||
/skychart-3.11-3157-src-nopatents.tar.xz
|
||||
/skychart-3.11-3238-src-nopatents.tar.xz
|
||||
/skychart-3.11-3287-src-nopatents.tar.xz
|
||||
/catalog_barnard.tgz
|
||||
/catalog_leda.tgz
|
||||
/catalog_sh2.tgz
|
||||
/skychart-3.11-3549-src-nopatents.tar.xz
|
||||
/skychart-4.0-3575-src-nopatents.tar.xz
|
||||
/skychart-4.1-3730-src-nopatents.tar.xz
|
||||
/skychart-4.1.1-3792-src-nopatents.tar.xz
|
||||
/skychart-4.1.1-3925-src-nopatents.tar.xz
|
||||
29
generate-tarball.sh
Executable file
29
generate-tarball.sh
Executable file
|
|
@ -0,0 +1,29 @@
|
|||
#!/bin/sh
|
||||
|
||||
VERSION=$1
|
||||
|
||||
tar -xJvf skychart-$VERSION-src.tar.xz
|
||||
|
||||
#Remove pre-built software
|
||||
rm -rf skychart-$VERSION-src/tools/data/iridflar
|
||||
rm -rf skychart-$VERSION-src/tools/data/quicksat
|
||||
rm -rf skychart-$VERSION-src/skychart/sample_client/astrolabe/*.dll
|
||||
rm -rf skychart-$VERSION-src/skychart/sample_client/ds2cdc/*.dll.zip
|
||||
|
||||
#Remove Mac and Windows unneeded stuff
|
||||
rm -rf skychart-$VERSION-src/system_integration/Windows
|
||||
rm -rf skychart-$VERSION-src/system_integration/MacOSX
|
||||
|
||||
#Remove libraries provided by separate package libpasastro
|
||||
#they are here only for building the Win version
|
||||
rm -rf skychart-$VERSION-src/skychart/library/getdss
|
||||
rm -rf skychart-$VERSION-src/skychart/library/plan404
|
||||
rm -rf skychart-$VERSION-src/skychart/library/wcs
|
||||
|
||||
#Remove NGC2000 catalog with license problem and no more used
|
||||
rm -rf skychart-$VERSION-src/tools/cat/ngc2000
|
||||
|
||||
tar -cJvf skychart-$VERSION-src-nopatents.tar.xz skychart-$VERSION-src
|
||||
|
||||
#Remove temporary directory
|
||||
rm -rf skychart-$VERSION-src
|
||||
11
skychart-3.11-noupdate.patch
Normal file
11
skychart-3.11-noupdate.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- a/skychart/Makefile.in 2016-02-14 11:58:11.000000000 +0100
|
||||
+++ b/skychart/Makefile.in 2016-02-15 18:59:17.956482359 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
[compiler]
|
||||
unittargetdir=units/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)
|
||||
includedir=./
|
||||
-options= $(opt_target) $(fpcopts) -CF64 -dWithUpdateMenu -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l
|
||||
+options= $(opt_target) $(fpcopts) -CF64 -dUseCThreads -dLCL -dLCL$(LCL_PLATFORM) -MObjFPC -Sgi -vewni -l
|
||||
unitdir=library/catalog/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/uniqueinstance/lib/$(CPU_TARGET)-$(OS_TARGET)/ component/jdcalendar/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/downloaddialog/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/bgrabitmap/lib/$(CPU_TARGET)-$(OS_TARGET) component/enhedits/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/libsql/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/mrecsort/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/multiframe/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/radec/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/zoomimage/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/indiclient/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vo/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/vosamp/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/synapse/source/lib/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ component/xmlparser/lib/$(CPU_TARGET)-$(OS_TARGET)-$(LCL_PLATFORM)/ $(LAZDIR)/components/turbopower_ipro/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/printers/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/cairocanvas/lib/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/lcl/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/packager/units/$(CPU_TARGET)-$(OS_TARGET)/ $(LAZDIR)/components/synedit/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM)/ $(LAZDIR)/components/PascalScript/Source/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/components/lazutils/lib/$(CPU_TARGET)-$(OS_TARGET) $(LAZDIR)/ideintf/units/$(CPU_TARGET)-$(OS_TARGET)/$(LCL_PLATFORM) ./
|
||||
|
||||
[clean]
|
||||
18
skychart-4.1-nostrip.patch
Normal file
18
skychart-4.1-nostrip.patch
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
diff -U 3 -dHrN -- a/install.sh b/install.sh
|
||||
--- a/install.sh 2017-10-03 11:01:35.000000000 +0200
|
||||
+++ b/install.sh 2017-10-10 17:54:25.410030788 +0200
|
||||
@@ -25,10 +25,10 @@
|
||||
install -m 755 -d $destdir/share/icons/hicolor/scalable
|
||||
install -m 755 -d $destdir/share/icons/hicolor/scalable/apps
|
||||
|
||||
-install -v -m 755 -s skychart/cdc $destdir/bin/skychart
|
||||
-install -v -m 755 -s skychart/cdcicon $destdir/bin/cdcicon
|
||||
-install -v -m 755 -s varobs/varobs $destdir/bin/varobs
|
||||
-install -v -m 755 -s varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin
|
||||
+install -v -m 755 skychart/cdc $destdir/bin/skychart
|
||||
+install -v -m 755 skychart/cdcicon $destdir/bin/cdcicon
|
||||
+install -v -m 755 varobs/varobs $destdir/bin/varobs
|
||||
+install -v -m 755 varobs/varobs_lpv_bulletin $destdir/bin/varobs_lpv_bulletin
|
||||
install -v -m 644 system_integration/Linux/share/applications/skychart.desktop $destdir/share/applications/skychart.desktop
|
||||
install -v -m 644 system_integration/Linux/share/metainfo/skychart.appdata.xml $destdir/share/metainfo/skychart.appdata.xml
|
||||
install -v -m 644 system_integration/Linux/share/doc/skychart/changelog $destdir/share/doc/skychart/changelog
|
||||
41
skychart-4.1-satmessage.patch
Normal file
41
skychart-4.1-satmessage.patch
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
diff -U 3 -dHrN -- a/skychart/u_satellite.pas b/skychart/u_satellite.pas
|
||||
--- a/skychart/u_satellite.pas 2017-07-21 15:35:21.000000000 +0200
|
||||
+++ b/skychart/u_satellite.pas 2017-10-02 19:18:40.648161937 +0200
|
||||
@@ -110,36 +110,8 @@
|
||||
end;
|
||||
|
||||
function CheckWine: boolean;
|
||||
-var
|
||||
- cmd, buf, msg: string;
|
||||
- i, j: integer;
|
||||
- r: TStringList;
|
||||
begin
|
||||
- r := TStringList.Create;
|
||||
- cmd := 'wine --version';
|
||||
- i := execprocess(cmd, r);
|
||||
- Result := (i = 0);
|
||||
-
|
||||
- if not Result then
|
||||
- begin
|
||||
-
|
||||
- if r.Count > 0 then
|
||||
- begin
|
||||
- buf := '';
|
||||
- for j := 0 to r.Count - 1 do
|
||||
- buf := buf + r[j];
|
||||
- end
|
||||
- else
|
||||
- buf := '';
|
||||
-
|
||||
- msg := rsPleaseInstWine;
|
||||
- {$ifdef linux}
|
||||
- msg := msg + crlf + rsIfItIsNotIns + crlf + 'apt-get install wine' +
|
||||
- crlf + 'yum install wine';
|
||||
- {$endif}
|
||||
- ShowMessage(msg + crlf + 'wine return: ' + buf);
|
||||
- end;
|
||||
- r.Free;
|
||||
+ShowMessage('Artificial satellites calculation has been removed due to Fedora policies.'+crlf+'If you need it, please uninstall Skychart provided by Fedora repositories and download Skychart rpms from the author site.');
|
||||
end;
|
||||
|
||||
function CheckDosbox: boolean;
|
||||
44
skychart-4.1-wgetdata.patch
Normal file
44
skychart-4.1-wgetdata.patch
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
--- a/tools/install_data.orig.sh 2012-03-05 19:56:30.000000000 +0100
|
||||
+++ b/tools/install_data.sh 2012-10-06 13:37:24.214119567 +0200
|
||||
@@ -4,9 +4,9 @@
|
||||
pkg=$1.tgz
|
||||
ddir=$2
|
||||
pkgz=../BaseData/$pkg
|
||||
- if [ ! -e $pkgz ]; then
|
||||
- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz
|
||||
- fi
|
||||
+# if [ ! -e $pkgz ]; then
|
||||
+# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz
|
||||
+# fi
|
||||
tar xvzf $pkgz -C $ddir
|
||||
}
|
||||
|
||||
--- a/install_cat1.orig.sh 2012-03-05 19:56:30.000000000 +0100
|
||||
+++ b/install_cat1.sh 2013-03-17 19:47:02.024214677 +0100
|
||||
@@ -6,9 +6,9 @@
|
||||
pkg=$1.tgz
|
||||
ddir=$2
|
||||
pkgz=BaseData/$pkg
|
||||
- if [ ! -e $pkgz ]; then
|
||||
- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz
|
||||
- fi
|
||||
+# if [ ! -e $pkgz ]; then
|
||||
+# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz
|
||||
+# fi
|
||||
tar xvzf $pkgz -C $ddir
|
||||
}
|
||||
|
||||
--- a/install_cat2.orig.sh 2012-03-05 19:56:30.000000000 +0100
|
||||
+++ b/install_cat2.sh 2013-03-17 19:47:02.024214677 +0100
|
||||
@@ -6,9 +6,9 @@
|
||||
pkg=$1.tgz
|
||||
ddir=$2
|
||||
pkgz=BaseData/$pkg
|
||||
- if [ ! -e $pkgz ]; then
|
||||
- wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz
|
||||
- fi
|
||||
+# if [ ! -e $pkgz ]; then
|
||||
+# wget http://sourceforge.net/projects/skychart/files/4-source_data/$pkg -O $pkgz
|
||||
+# fi
|
||||
tar xvzf $pkgz -C $ddir
|
||||
}
|
||||
474
skychart.spec
Normal file
474
skychart.spec
Normal file
|
|
@ -0,0 +1,474 @@
|
|||
%global svnversion 3925
|
||||
|
||||
Name: skychart
|
||||
Version: 4.1.1
|
||||
Release: 3.%{svnversion}svn%{?dist}
|
||||
Summary: Planetarium software for the advanced amateur astronomer
|
||||
License: GPLv2+
|
||||
URL: http://www.ap-i.net/skychart/
|
||||
# Upstream sources are modified to:
|
||||
# - Remove pre-built software (iridflare.exe, quicksat.exe, dll files)
|
||||
# - Remove unneeded Windows and MacOS stuff
|
||||
# - Remove libraries provided by libpasastro package
|
||||
# (they still are in sources only for compiling the Windows version)
|
||||
# To do this we use the generate-tarball.sh script
|
||||
# Download upstream tarball in the same directory of the script
|
||||
# and run:
|
||||
# ./generate-tarball.sh 4.1.1-3925
|
||||
Source0: %{name}-%{version}-%{svnversion}-src-nopatents.tar.xz
|
||||
Source1: generate-tarball.sh
|
||||
# Source data for skychart-data-stars
|
||||
Source2: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcvs.tgz
|
||||
Source3: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_tycho2.tgz
|
||||
Source4: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_wds.tgz
|
||||
Source5: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_idx.tgz
|
||||
# Source data for skychart-data-dso
|
||||
Source6: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_leda.tgz
|
||||
Source7: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_barnard.tgz
|
||||
Source8: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gcm.tgz
|
||||
Source9: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_gpn.tgz
|
||||
Source10: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_lbn.tgz
|
||||
Source11: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_ocl.tgz
|
||||
Source12: http://sourceforge.net/projects/skychart/files/4-source_data/catalog_sh2.tgz
|
||||
|
||||
|
||||
# Avoid stripping debuginfo from executables
|
||||
# This is Fedora specific and not reported upstream
|
||||
Patch1: skychart-4.1-nostrip.patch
|
||||
|
||||
# Disable wget in install script
|
||||
# This is Fedora specific and not reported upstream
|
||||
Patch2: skychart-4.1-wgetdata.patch
|
||||
|
||||
# Notify the user that artificial satellites calculation
|
||||
# has been disabled in Fedora RPMs due to Fedora policies
|
||||
# This is Fedora specific and not reported upstream
|
||||
Patch3: skychart-4.1-satmessage.patch
|
||||
|
||||
# Disable software update menu item
|
||||
# This feature was asked upstream specifically for Fedora
|
||||
Patch4: skychart-3.11-noupdate.patch
|
||||
|
||||
|
||||
ExclusiveArch: %{fpc_arches}
|
||||
|
||||
|
||||
BuildRequires: fpc
|
||||
BuildRequires: lazarus
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: dos2unix
|
||||
BuildRequires: gtk2-devel
|
||||
BuildRequires: ImageMagick
|
||||
BuildRequires: libappstream-glib
|
||||
|
||||
Requires: libpasastro
|
||||
Requires: tzdata
|
||||
Requires: xdg-utils
|
||||
Requires: xplanet
|
||||
|
||||
Recommends: openssl-libs
|
||||
|
||||
%description
|
||||
This program enables you to draw sky charts, making use of the data in 16
|
||||
catalogs of stars and nebulae. In addition the position of planets,
|
||||
asteroids and comets are shown.
|
||||
|
||||
The purpose of this program is to prepare different sky maps for a
|
||||
particular observation. A large number of parameters help you to choose
|
||||
specifically or automatically which catalogs to use, the colour and the
|
||||
dimension of stars and nebulae, the representation of planets, the display
|
||||
of labels and coordinate grids, the superposition of pictures, the
|
||||
condition of visibility and more. All these features make this celestial
|
||||
atlas more complete than a conventional planetarium.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation files for Skychart
|
||||
License: CC-BY-SA or GFDL
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
Documentation files from the official Skychart wiki provided
|
||||
within the program as an offline copy.
|
||||
|
||||
%package data-stars
|
||||
Summary: Additional star catalogs for Skychart
|
||||
License: Public Domain
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description data-stars
|
||||
Additional star catalogs for Skychart. This package install all the standard
|
||||
stars catalog down to magnitude 12, variable and double stars:
|
||||
Tycho 2; General Catalogue of Variable Stars; Washington Double Stars.
|
||||
|
||||
%package data-dso
|
||||
Summary: Additional Deep Sky Object catalogs for Skychart
|
||||
License: Public Domain
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description data-dso
|
||||
Additional DSO catalogs for Skychart. This package install all the standard
|
||||
nebulae catalogs: LEDA Catalogue; Lynds Bright Nebulae; Open Cluster Data;
|
||||
Globular Clusters in the Milky Way; Galactic Planetary Nebulae;
|
||||
Barnard Catalogue of Dark Nebulae; Sharpless Catalog.
|
||||
|
||||
%prep
|
||||
%setup0 -q -n %{name}-%{version}-%{svnversion}-src
|
||||
|
||||
%patch1 -p1
|
||||
|
||||
%patch2 -p1
|
||||
|
||||
%patch3 -p1
|
||||
|
||||
%patch4 -p1
|
||||
|
||||
# Fix executable bit set on sources
|
||||
find skychart -type f -print0 | xargs -0 chmod -x
|
||||
|
||||
# Put additional catalogs files where where required for installation
|
||||
%{__cp} -p %SOURCE2 ./BaseData
|
||||
%{__cp} -p %SOURCE3 ./BaseData
|
||||
%{__cp} -p %SOURCE4 ./BaseData
|
||||
%{__cp} -p %SOURCE5 ./BaseData
|
||||
%{__cp} -p %SOURCE6 ./BaseData
|
||||
%{__cp} -p %SOURCE7 ./BaseData
|
||||
%{__cp} -p %SOURCE8 ./BaseData
|
||||
%{__cp} -p %SOURCE9 ./BaseData
|
||||
%{__cp} -p %SOURCE10 ./BaseData
|
||||
%{__cp} -p %SOURCE11 ./BaseData
|
||||
%{__cp} -p %SOURCE12 ./BaseData
|
||||
|
||||
# Add directories to fix builds on arm and ppc architectures
|
||||
declare -a arches=("arm-linux-gtk2" "powerpc-linux-gtk2" "powerpc64-linux-gtk2")
|
||||
for arch in "${arches[@]}"
|
||||
do
|
||||
%{__mkdir_p} ./skychart/component/lib/$arch
|
||||
%{__mkdir_p} ./skychart/units/$arch
|
||||
%{__mkdir_p} ./varobs/units/$arch
|
||||
done
|
||||
|
||||
|
||||
|
||||
%build
|
||||
./configure lazarus=%{_libdir}/lazarus prefix=%{_prefix}
|
||||
|
||||
# Skychart doesn't like parallel building so we don't use macro.
|
||||
# We pass options to fpc compiler for generate debug info.
|
||||
make fpcopts="-O1 -gw3 -fPIC"
|
||||
|
||||
%install
|
||||
# Install main program
|
||||
make install PREFIX=%{buildroot}%{_prefix}
|
||||
|
||||
# Install catalogs, translations and data files
|
||||
make install install_data PREFIX=%{buildroot}%{_prefix}
|
||||
|
||||
# Install wiki documentation
|
||||
make install install_doc PREFIX=%{buildroot}%{_prefix}
|
||||
|
||||
# Install additional catalogs
|
||||
make install install_cat1 PREFIX=%{buildroot}%{_prefix}
|
||||
make install install_cat2 PREFIX=%{buildroot}%{_prefix}
|
||||
|
||||
|
||||
%check
|
||||
# Menu entry
|
||||
desktop-file-validate %{buildroot}%{_datadir}/applications/skychart.desktop
|
||||
|
||||
# Appdata file check
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata.xml
|
||||
|
||||
|
||||
%files
|
||||
%license skychart/gpl.txt
|
||||
%doc %{_datadir}/doc/skychart/changelog
|
||||
%doc %{_datadir}/doc/skychart/copyright
|
||||
%{_bindir}/*
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%{_datadir}/metainfo/%{name}.appdata.xml
|
||||
%{_datadir}/pixmaps/%{name}.png
|
||||
%{_datadir}/icons/*/*/*/%{name}.png
|
||||
%{_datadir}/icons/*/*/*/%{name}.svg
|
||||
%dir %{_datadir}/skychart
|
||||
%{_datadir}/skychart/data
|
||||
%{_datadir}/skychart/cat/DSoutlines
|
||||
%{_datadir}/skychart/cat/milkyway
|
||||
%{_datadir}/skychart/cat/openngc
|
||||
%{_datadir}/skychart/cat/RealSky
|
||||
%{_datadir}/skychart/cat/sac
|
||||
%{_datadir}/skychart/cat/xhip
|
||||
%{_datadir}/skychart/doc/html_doc
|
||||
%{_datadir}/skychart/doc/releasenotes*.txt
|
||||
%{_datadir}/skychart/doc/varobs
|
||||
|
||||
|
||||
%files doc
|
||||
%doc %{_datadir}/skychart/doc/wiki_doc
|
||||
|
||||
%files data-stars
|
||||
%{_datadir}/skychart/cat/gcvs
|
||||
%{_datadir}/skychart/cat/tycho2
|
||||
%{_datadir}/skychart/cat/wds
|
||||
%{_datadir}/skychart/cat/bsc5
|
||||
%{_datadir}/metainfo/%{name}-data-stars.metainfo.xml
|
||||
|
||||
%files data-dso
|
||||
%{_datadir}/skychart/cat/leda
|
||||
%{_datadir}/skychart/cat/lbn
|
||||
%{_datadir}/skychart/cat/ocl
|
||||
%{_datadir}/skychart/cat/gcm
|
||||
%{_datadir}/skychart/cat/gpn
|
||||
%{_datadir}/skychart/cat/barnard
|
||||
%{_datadir}/skychart/cat/sh2
|
||||
%{_datadir}/metainfo/%{name}-data-dso.metainfo.xml
|
||||
|
||||
%changelog
|
||||
* Sat Apr 27 2019 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-3.3925svn
|
||||
- Update svn version
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.1-2.3792svn
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Nov 03 2018 Mattia Verga <mattia.verga@protonmail.com> - 4.1.1-1.3792svn
|
||||
- Update svn version
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1-2.3730svn
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.1-1.3730svn
|
||||
- Upgrade to development version to fix build failures
|
||||
|
||||
* Sun Feb 25 2018 Mattia Verga <mattia.verga@email.it> - 4.0-8
|
||||
- Rebuild for fpc 3.0.4 and lazarus 1.8
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0-6
|
||||
- Remove obsolete scriptlets
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Sat Jul 29 2017 Mattia Verga <mattia.verga@email.it> - 4.0-4
|
||||
- Change FPC compiler options to fix debuginfo package build
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Apr 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-2
|
||||
- Fix for OpenSSL 1.1
|
||||
|
||||
* Sun Mar 19 2017 Mattia Verga <mattia.verga@tiscali.it> - 4.0-1
|
||||
- Release ver 4.0
|
||||
|
||||
* Sun Mar 05 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-17.3549svn
|
||||
- Patch to fix libssl and libcrypto links
|
||||
|
||||
* Mon Feb 27 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-16.3549svn
|
||||
- Update svn version
|
||||
|
||||
* Sun Feb 12 2017 Mattia Verga <mattia.verga@tiscali.it> - 3.11-15.3287svn
|
||||
- Set ExcludeArch ppc64 due to lazarus limitations
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-14.3287svn
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sat Sep 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-13.3287svn
|
||||
- Update svn version
|
||||
|
||||
* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-12.3238svn
|
||||
- Use new fpc_arches macro as ExclusiveArch
|
||||
|
||||
* Sun Apr 17 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-11.3238svn
|
||||
- Remove additional NGC catalog due to incompatible license
|
||||
|
||||
* Mon Feb 15 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-10.3238svn
|
||||
- Update svn version
|
||||
- Remove remnants of pre built .dll files in sources
|
||||
- Remove libraries from sources that are now provided externally
|
||||
- Patch to inform user about artificial satellites calculation removal
|
||||
- Patch to set option to disable software update menu item
|
||||
|
||||
* Fri Feb 12 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-9.3229svn
|
||||
- Update svn version
|
||||
- FSF address in sources is now fixed upstream
|
||||
- Appdata file is now fixed upstream
|
||||
- Updated catalog_wds source file from upstream
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.11-8.3157svn
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jan 15 2016 Richard Hughes <richard@hughsie.com> - 3.11-7.3157svn
|
||||
- Fix the metainfo files by removing zero-width space chars
|
||||
|
||||
* Mon Jan 11 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-6.3157svn
|
||||
- Add .metainfo.xml files to subpackages
|
||||
|
||||
* Sun Jan 10 2016 Mattia Verga <mattia.verga@tiscali.it> - 3.11-5.3157svn
|
||||
- Update svn version
|
||||
- Libraries are now in separate package libpasastro
|
||||
- Fix wrong FSF address in source headers
|
||||
- Fix appdata file validation
|
||||
|
||||
* Sun Dec 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-4.3141svn
|
||||
- Properly set ExcludeArch
|
||||
|
||||
* Fri Dec 11 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-3.3141svn
|
||||
- Revert back to ExcludeArch
|
||||
|
||||
* Fri Nov 27 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-2.3141svn
|
||||
- Set ExclusiveArch to prevent build on arm and s390x
|
||||
|
||||
* Sat Nov 14 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.11-1.3141svn
|
||||
- Update to 3.11svn to fix incompatibility with lazarus 1.4.2
|
||||
|
||||
* Sun Jun 21 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-7
|
||||
- Validate appdata file
|
||||
- Change license file location
|
||||
|
||||
* Sat Jun 20 2015 Mattia Verga <mattia.verga@tiscali.it> - 3.10-6
|
||||
- Added patch to fix build with lazarus 1.4
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.10-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-2
|
||||
- Fix patch1
|
||||
|
||||
* Thu Apr 03 2014 Mattia Verga <mattia.verga@tiscali.it> - 3.10-1
|
||||
- Update to 3.10
|
||||
|
||||
* Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-7
|
||||
- Manually create needed directories to fix arm and ppc builds
|
||||
|
||||
* Mon Aug 12 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-6
|
||||
- Enable arm build
|
||||
- Enable ppc and ppc64 build
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Aug 02 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-4
|
||||
- Use xz to compress source file instead of bzip
|
||||
|
||||
* Thu May 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-3
|
||||
- Make available additional dso catalogs as subpackage
|
||||
- Modify patch to disable wget in catalog installation scripts
|
||||
|
||||
* Sun May 05 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-2
|
||||
- Make doc package platform independent
|
||||
- Remove unneeded buildroot and files declarations
|
||||
- Remove Group tag
|
||||
- Make available additional star catalogs as subpackage
|
||||
|
||||
* Sat Mar 16 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.8-1
|
||||
- Update to 3.8
|
||||
- Requires Lazarus >= 1.0.4
|
||||
|
||||
* Sun Mar 10 2013 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.3.2268svn
|
||||
- Exclude armv7hl architecture
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7-0.2.2268svn
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sat Oct 06 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.7-0.1.2268svn
|
||||
- Update to 3.7 testing version
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Fri Apr 20 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-3
|
||||
- Rebuild with lazarus 0.9.30.4 fix bug #799711
|
||||
- Correct patch
|
||||
|
||||
* Sat Mar 17 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.6-1
|
||||
- Update to 3.6 version
|
||||
- Modify sources to remove iridflar.exe
|
||||
- Remove patches merged upstream
|
||||
- Make sure fpc >= 2.4.4 to avoid execstack errors
|
||||
- Add scriptlets for icon cache
|
||||
- Make sure lazarus >= 0.9.30.4 to work with F17 and higher
|
||||
|
||||
* Sun Jan 22 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-4
|
||||
- Added wiki documentation as subpackage
|
||||
- Fix old FSF address in license file
|
||||
- Remove binary software quicksat.exe and IRIDFLAR.EXE
|
||||
- Excluded ppc architecture, since lazarus < 0.9.30
|
||||
|
||||
* Sat Jan 21 2012 Mattia Verga <mattia.verga@tiscali.it> - 3.4-3
|
||||
- Patch to make it compile with gcc 4.7
|
||||
|
||||
* Fri Jan 20 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-2
|
||||
- Added missing source tarball
|
||||
- Renamed patches
|
||||
|
||||
* Thu Jan 19 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.4-1
|
||||
- New upstream source
|
||||
- New source with ephemeris
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue May 03 2011 Dan Horák <dan[at]danny.cz> - 3.2-5
|
||||
- no lazarus on s390(x)
|
||||
|
||||
* Thu Apr 28 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-4
|
||||
- Rebuilding with lazarus 0.9.30
|
||||
|
||||
* Wed Mar 09 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-3
|
||||
- Patch from upstream to make skychart work with lazarus 0.9.28
|
||||
|
||||
* Wed Feb 16 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-2
|
||||
- Missing patch added
|
||||
|
||||
* Sat Feb 12 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.2-1
|
||||
- New upstream source
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.6-5.20100724svn
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Jan 13 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.0.1.6-4.20100724svn
|
||||
- Using d-f-validate instead od d-f-install (Fixes bz #662472)
|
||||
- Changed RPM_BUILD_ROOT macro to lower case form
|
||||
|
||||
* Sat Jul 24 2010 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.6-3.20100724svn
|
||||
- Update to a later snapshot
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.6-2.20090408svn
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.6-1.20090408svn
|
||||
- Update to post latest beta
|
||||
- Drop the unzip patch
|
||||
- Upstream did the datadir and xdg-open chage as well, drop patches
|
||||
|
||||
* Wed Apr 08 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-6.20081026svn
|
||||
- Enable GTK2 UI
|
||||
|
||||
* Fri Mar 27 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-5.20081026svn
|
||||
- Fix desktop entry categories
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1.5-4.20081026svn
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Mon Dec 01 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-3.20081026svn
|
||||
- Own /usr/share/skychart (#474037)
|
||||
|
||||
* Thu Nov 06 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-2.20081026svn
|
||||
- Temporarily disable ppc64 build due to a compiler bug
|
||||
|
||||
* Wed Oct 29 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.5-1.20081026svn
|
||||
- Rebase to later upstream, since we have more recent fpc and lazarus now
|
||||
|
||||
* Sun Oct 26 2008 Lubomir Rintel (Fedora Astronomy) <lkundrak@v3.sk> - 3.0.1.3-1.20071015svn
|
||||
- Initial packaging attempt
|
||||
12
sources
12
sources
|
|
@ -0,0 +1,12 @@
|
|||
SHA512 (catalog_barnard.tgz) = 7b91c80dfc25e006cd0cfad6a64fab78aea9b9ded1e8f75b2c54851be788b6512be96bf8891692d9b52825a90fc27d6ae262d1dd3ccc9ff76318f4d91330bf02
|
||||
SHA512 (catalog_gcm.tgz) = 957e87b81a23b64b5e40a6f3a55908637e86b01bba0fc36c9dd293966a9870faf7de22d548b324bf9a6c15641cd09d10f76a7200b52eab48fa4c7836115518ce
|
||||
SHA512 (catalog_gcvs.tgz) = de2878a4ebe35c864d10354378ff033b0f8d261a818e5f66d6c39be28933501a94a662ed7dc85b40ec38270efe567cbd63a637c778aa386eb68584b32c4844f9
|
||||
SHA512 (catalog_gpn.tgz) = d0e83773f1dd59d45e9465e6bc0bb0110631f7956fa01f37c5de763be0f7048c22abf3dccc4333c126272f270485b37084d8e22cd02db08e7bb8412da9c66bb4
|
||||
SHA512 (catalog_idx.tgz) = 3b144993de14b73edaffd43a35b8404adb166c5b4edc223dd78e8db361ca9a61da2e9c3d29a0af97960c1cdcb94b307ce0824f1fda3b74b518f611666d1e362e
|
||||
SHA512 (catalog_lbn.tgz) = bddc2cf48c2e575440ed114bb447187e2f30c87312a552ff63d40e88a08e05c31da1d45cb96a5bb0216093a07e4d16336a0a664a66d6e586221217ae45d803da
|
||||
SHA512 (catalog_leda.tgz) = d8d1587ab937b1a14b6daa0a32dc1ee2238f13e198940c182abcfa73f27c89fe7657dd0f8c5a23372a847adfc76ce08276b41fbef13995b8713bef3dde0e1397
|
||||
SHA512 (catalog_ocl.tgz) = 7d94a7b9981fef9f02609f10195f181c27ca7b8d6af0b12749b13e0e86cf09e4a2ff3d915e5618940e9d8b2ab4a4198b59cd05302322a5862f53535449f343e7
|
||||
SHA512 (catalog_sh2.tgz) = c6501a6382d21b2508157a0921f3f6628e024f5228e2c87e56a8936fc4f069f33b8b0e8cbd7ef3980e5c1dff8b4ac5427f30e73260e1a24d49b779b0713e1e56
|
||||
SHA512 (catalog_tycho2.tgz) = 722b542f09752353eab621fdd6559a9e28a9558500f550e63ed10111c29b578a49356bd6d548c4b9b4355e3b3bd5d46f311de71946689fcb949e85c3948d7b67
|
||||
SHA512 (catalog_wds.tgz) = 0aa8a17450c499643a23abcfb2397bbf1b0199c39462538439c02d99c031b483f4a10c6f80de436f59cd8804d0079b4b2020cc8e6fd1dacd3823f72dc25d498c
|
||||
SHA512 (skychart-4.1.1-3925-src-nopatents.tar.xz) = c8f1115be50a4259345bb5677093bdc767e0838c243b09e4637cf8c40cc56d236361bbb3d2f2304bf124cf8f7bd1709c5257b4b9bfdc3be4d3e0b58d9fc4f399
|
||||
Loading…
Add table
Add a link
Reference in a new issue