rpms/skyviewer/F-10 skyviewer-license.txt, NONE, 1.1 skyviewer.desktop, NONE, 1.1 skyviewer.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Lubomir Rintel lkundrak at fedoraproject.org
Fri Apr 10 06:39:04 UTC 2009


Author: lkundrak

Update of /cvs/pkgs/rpms/skyviewer/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15235/F-10

Modified Files:
	.cvsignore sources 
Added Files:
	skyviewer-license.txt skyviewer.desktop skyviewer.spec 
Log Message:
Import skyviewer


--- NEW FILE skyviewer-license.txt ---
>From Michael.R.Greason at nasa.gov Wed Apr  8 21:48:48 2009
Message-ID: <49DCFA32.30606 at nasa.gov>
Date: Wed, 08 Apr 2009 15:25:38 -0400
From: "Michael R. Greason" <Michael.R.Greason at nasa.gov>
To: Lubomir Rintel <lkundrak at v3.sk>
CC: Nicholas Phillips <Nicholas.G.Phillips at nasa.gov>
Subject: Re: SkyVIewer license

Hi,

The skyviewer software itself was written under contract to NASA and is
explicitly uncopyrighted.  Thank you for pointing this out; we've gone
ahead and included the following License.txt in our software download
tarballs (right now, version 1.0.0; we will take care of the older
tarballs at a later time).

Copyright (Unpublished--all rights reserved under the copyright laws of
the United States), U.S. Government as represented by the Administrator
of the National Aeronautics and Space Administration.  No copyright is
claimed in the United States under Title 17, U.S. Code.

Permission to freely use, copy, modify, and distribute this software
and its documentation without fee is hereby granted, provided that this
copyright notice and disclaimer of warranty appears in all copies.

DISCLAIMER:

THE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND,
EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO,
ANY WARRANTY THAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, AND FREEDOM FROM INFRINGEMENT, AND ANY WARRANTY THAT THE
DOCUMENTATION WILL CONFORM TO THE SOFTWARE, OR ANY WARRANTY THAT THE
SOFTWARE WILL BE ERROR FREE.  IN NO EVENT SHALL NASA BE LIABLE FOR ANY
DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL OR
CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM, OR IN ANY WAY
CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY,
CONTRACT, TORT , OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY
PERSONS OR PROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED
FROM, OR AROSE OUT OF THE RESULTS OF, OR USE OF, THE SOFTWARE OR
SERVICES PROVIDED HEREUNDER.

Nicholas---would you like to add any comments?

Mike Greason

Lubomir Rintel wrote:
> Hi,
>
> I've used the form on your pages [1], but got no response, therefore I'm
> contacting you directly.
>
> We'd like to include Skyviewer in Fedora operating system as part of
> Fedora Astronomy [2] project, but we were unable to determine the
> licensing. Although it is referred to as distributed under conditions of
> GPL on numerous places (such ash freahmeat [3]), and is shipped linked
> with GPL-ed library (Windows port ships with healpix), none of the
> source files contain licensing information and no license text is
> included in the source distribution.
>
> Would you please add comments about the license to the source files and
> add accompany the source distribution with the license text, so we're
> able to determine whether we can use and distribute skyviewer?
>
> [1] http://lambda.gsfc.nasa.gov/contact/contact.cfm
> [2] http://fedoraproject.org/wiki/SIGs/Astronomy
> [3] http://freshmeat.net/projects/skyviewer/
>
> Thanks!
>   


--- NEW FILE skyviewer.desktop ---
[Desktop Entry]
Type=Application
Name=SkyViewer
Comment=Display FITS files with HEALPix-based skymaps
GenericName=Sky Viewer
Exec=skyviewer
Icon=skyviewer
Categories=Education;Astronomy;
MimeType=image/fits;
Terminal=false


--- NEW FILE skyviewer.spec ---
Name:           skyviewer
Version:        1.0.0
Release:        2%{?dist}
Summary:        Program to display HEALPix-based skymaps in FITS files

Group:          Amusements/Graphics
License:        Public Domain
URL:            http://lambda.gsfc.nasa.gov/toolbox/tb_skyviewer_ov.cfm
Source0:        http://lambda.gsfc.nasa.gov/toolbox/skyviewer/%{name}-%{version}.tar.gz
Source1:        skyviewer.desktop
# Will be included in the next release
Source2:        skyviewer-license.txt
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildRequires:  cfitsio-devel
BuildRequires:  chealpix-devel
BuildRequires:  desktop-file-utils
BuildRequires:  libQGLViewer-devel
BuildRequires:  qt4-devel

%description
SkyViewer is an OpenGL based program to display HEALPix-based skymaps,
saved in FITS format files. The loaded skymaps can be viewed either on a 3D
sphere or as a Mollweide projection. In either case, realtime panning and
zooming are supported, along with rotations for the 3D sphere view,
assuming you have a strong enough graphics card.


%prep
%setup -q
install -pm 0644 %{SOURCE2} LICENSE


%build
%{_qt4_qmake} INCLUDE_DIR=%{_includedir} \
        LIB_DIR=%{_libdir} \
        INCPATH=%{_includedir}/cfitsio
make %{?_smp_mflags}


%install
rm -rf $RPM_BUILD_ROOT

# Binary
install -d $RPM_BUILD_ROOT%{_bindir}
install -pm 0755 skyviewer $RPM_BUILD_ROOT%{_bindir}

# Icon
install -d $RPM_BUILD_ROOT%{_datadir}/pixmaps
install -pm 0644 images/spherical.png \
        $RPM_BUILD_ROOT%{_datadir}/pixmaps/skyviewer.png

# Desktop entry
desktop-file-install --vendor='' %{SOURCE1} \
        --dir=$RPM_BUILD_ROOT%{_datadir}/applications


%clean
rm -rf $RPM_BUILD_ROOT


%pre
/usr/bin/update-desktop-database >/dev/null 2>&1 || :


%post
/usr/bin/update-desktop-database >/dev/null 2>&1 || :


%files
%defattr(-,root,root,-)
%{_bindir}/skyviewer
%{_datadir}/pixmaps/skyviewer.png
%{_datadir}/applications/skyviewer.desktop
%doc test_iqu.fits README.txt LICENSE general.txt notes-ngp.txt


%changelog
* Thu Apr 09 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak at v3.sk> - 1.0.0-2
- Update license
- Fix RBs (Jussi Lehtola)
- Add documentation

* Wed Mar 25 2009 Lubomir Rintel (Fedora Astronomy) <lkundrak at v3.sk> - 1.0.0-1
- Initial packaging


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/skyviewer/F-10/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	9 Apr 2009 23:40:35 -0000	1.1
+++ .cvsignore	10 Apr 2009 06:38:33 -0000	1.2
@@ -0,0 +1 @@
+skyviewer-1.0.0.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/skyviewer/F-10/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	9 Apr 2009 23:40:35 -0000	1.1
+++ sources	10 Apr 2009 06:38:33 -0000	1.2
@@ -0,0 +1 @@
+1fc1a1f45d92fa09699a5869f6f2df4e  skyviewer-1.0.0.tar.gz




More information about the fedora-extras-commits mailing list