rpms/xgridloc/devel import.log, NONE, 1.1 xgridloc.desktop, NONE, 1.1 xgridloc.png, NONE, 1.1 xgridloc.sh.in, NONE, 1.1 xgridloc.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

dp67 dp67 at fedoraproject.org
Fri Jul 10 07:53:51 UTC 2009


Author: dp67

Update of /cvs/pkgs/rpms/xgridloc/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30387/devel

Modified Files:
	.cvsignore sources 
Added Files:
	import.log xgridloc.desktop xgridloc.png xgridloc.sh.in 
	xgridloc.spec 
Log Message:

cvs import and commit



--- NEW FILE import.log ---
xgridloc-0_9-6_fc11:HEAD:xgridloc-0.9-6.fc11.src.rpm:1247212346


--- NEW FILE xgridloc.desktop ---

[Desktop Entry]
Encoding=UTF-8
Name=xgridloc
GenericName=xgridloc
Comment=GTK+ application for the calculation of Maidenhead QRA Locators
Exec=xgridloc
Icon=xgridloc
Terminal=false
Type=Application
Categories=HamRadio;
Version=1.0
X-Desktop-File-Install-Version=0.15


--- NEW FILE xgridloc.sh.in ---
#!/bin/sh
#Wrapper script for xgridloc to ensure that user configuration is present
xgridlocbin="/usr/libexec/xgridloc-bin"
#check if user configuration is present
if [ ! -e ~/.xgridlocrc ]
then
echo "Creating user configuration file"
cp /usr/share/xgridloc/xgridlocrc ~/.xgridlocrc
fi
#launch xgridloc
echo "Please configure your serial device in the .xgridlocrc file in your users home directory"
$xgridlocbin


--- NEW FILE xgridloc.spec ---
Name:		xgridloc
Version:	0.9
Release:	6%{?dist}
Summary:	A GTK+ application for the calculation of Maidenhead QRA Locators

Group:		Applications/Communications
License:	GPLv3
URL:		http://5b4az.chronos.org.uk/pages/locator.html

Source0:	http://5b4az.chronos.org.uk/pkg/locator/%{name}/%{name}-%{version}.tar.gz
# desktop file
Source1:	%{name}.desktop
# icon file
Source2:	%{name}.png
# default config file wrapper script 
Source3:	xgridloc.sh.in

BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildRequires:	desktop-file-utils
BuildRequires:	autoconf
BuildRequires:	automake
BuildRequires:	libtool
BuildRequires:	glib2-devel
BuildRequires:	gtk2-devel

%description
xgridloc is a GTK+ graphical version of gridloc and performs the same basic 
functions for ham radio operators, but additionally it can use xplanet to 
display the home and DX locations and the great circle path between them.

%prep
%setup -qn %{name}
sh autogen.sh

%build
%configure
make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS"

%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT

# no upstream .desktop or icon yet so we'll use a temporary one.
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/
cp %{SOURCE2} ${RPM_BUILD_ROOT}%{_datadir}/pixmaps/%{name}.png
desktop-file-install  \
	--dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1}
# --vendor="fedora" obsolete per new package guidelines.

# install default user configuration file
install -p -D -m 0644 $RPM_BUILD_DIR/%{name}/default/.xgridlocrc $RPM_BUILD_ROOT%{_datadir}/%{name}/xgridlocrc

# move original binary to libexecdir
mkdir -p $RPM_BUILD_ROOT%{_libexecdir}
mv $RPM_BUILD_ROOT%{_bindir}/%{name} $RPM_BUILD_ROOT%{_libexecdir}/%{name}-bin
mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}

# install wrapper script 
install -p -D -m 0755 %{SOURCE3} $RPM_BUILD_ROOT%{_bindir}/xgridloc

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-,root,root,-)
%doc AUTHORS NEWS README doc/%{name}.html COPYING
%dir %{_datadir}/%{name}
%{_libexecdir}/%{name}-bin
%{_bindir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/%{name}/xgridlocrc
%{_datadir}/pixmaps/%{name}.png

%changelog
* Thu Jul 9 2009 Randall J. Berry 'Dp67' <dp67 at fedoraproject.org> - 0.9-6
- Upstream source added COPYING file
- Fix .desktop file removed ext from icon
- Mock build f11/devel i386
- Test build on Koji all arches

* Fri Feb 6 2009 Randall J. Berry 'Dp67' <dp67 at fedoraproject.org> - 0.9-5
- bump src to f11
- minor spec edits

* Sun Jan 18 2009 Randall J. Berry 'Dp67' <dp67 at fedoraproject.org> - 0.9-4
- Check rpmlint fix lint errors
- 3 packages and 1 specfiles checked; 0 errors, 0 warnings.
- Submit for review
- Mock build f9/10/devel i386
- Test build on Koji all arches

* Sun Jan 18 2009 Randall J. Berry 'Dp67' <dp67 at fedoraproject.org> - 0.9-3
- Add default config file
- Mock build f9/10/devel i386

* Sun Jan 18 2009 Randall J. Berry 'Dp67' <dp67 at fedoraproject.org> - 0.9-2
- Mock build f9/10/devel i386

* Wed Jan 14 2009 Randall J. Berry 'Dp67' <dp67 at fedoraproject.org> - 0.9-1
- Upstream upgrade to 0.9
- rpmbuild F9 i386

* Sat Mar 01 2008 Robert 'Bob' Jensen <bob at bobjensen.com> - 0.7-1
- Initial spec


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/xgridloc/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- .cvsignore	10 Jul 2009 03:55:41 -0000	1.1
+++ .cvsignore	10 Jul 2009 07:53:50 -0000	1.2
@@ -0,0 +1 @@
+xgridloc-0.9.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/xgridloc/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- sources	10 Jul 2009 03:55:41 -0000	1.1
+++ sources	10 Jul 2009 07:53:50 -0000	1.2
@@ -0,0 +1 @@
+dd31139da9668030b92533f24902e4b4  xgridloc-0.9.tar.gz




More information about the fedora-extras-commits mailing list