[hamradio-commits] [nec2c] 06/08: Man page and watch file added.

Dave Hibberd hibby-guest at moszumanska.debian.org
Sun Feb 15 00:35:21 UTC 2015


This is an automated email from the git hooks/post-receive script.

hibby-guest pushed a commit to branch master
in repository nec2c.

commit 469e63bb947bc457cec20cc3f4f8f8b6063ea413
Author: Dave Hibberd <d at vehibberd.com>
Date:   Sun Feb 15 00:25:34 2015 +0000

    Man page and watch file added.
---
 debian/changelog     |  7 ++--
 debian/control       |  4 +--
 debian/copyright     |  1 +
 debian/nec2c.1       | 68 ++++++++++++++++++++++++++++++++++++
 debian/rules         | 98 ++--------------------------------------------------
 debian/source/format |  1 +
 debian/watch         |  3 ++
 7 files changed, 82 insertions(+), 100 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4a66ef5..cf42e0f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,12 @@
-nec2c (0.8-4) UNRELEASED; urgency=medium
+nec2c (1.3-1) UNRELEASED; urgency=medium
 
   * Bringing under control of Debian Hamradio Maintainers
   * Adding categories for Hamradio-Menu
+  * Updated to Upstream Version 1.3
+  * Added Watchfile
+  * Added Manpage
 
- -- Dave Hibberd <d at vehibberd.com>  Sat, 14 Feb 2015 22:57:45 +0000
+ -- Dave Hibberd <d at vehibberd.com>  Sat, 14 Feb 2015 23:43:30 +0000
 
 nec2c (0.8-3) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index 5e1ca02..a44a809 100644
--- a/debian/control
+++ b/debian/control
@@ -3,8 +3,8 @@ Section: hamradio
 Priority: extra
 Maintainer: Debian Hamradio Maintainers <debian-hams at lists.debian.org>
 Uploaders: Dave Hibberd <d at vehibberd.com>
-Build-Depends: debhelper (>= 5)
-Standards-Version: 3.8.0
+Build-Depends: debhelper (>= 5), dh-autoreconf
+Standards-Version: 3.9.6
 
 Package: nec2c
 Architecture: any
diff --git a/debian/copyright b/debian/copyright
index a148223..ef5449f 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -8,6 +8,7 @@ Copyright:
 License: Permissive
 
 Files: debian/*
+Copyright:
 	(C) 2015 Dave Hibberd <d at vehibberd.com>
 	(C) 2006 Joop Stakenborg <pa3aba at debian.org> 
 License: GPL-2+
diff --git a/debian/nec2c.1 b/debian/nec2c.1
new file mode 100644
index 0000000..65bfe05
--- /dev/null
+++ b/debian/nec2c.1
@@ -0,0 +1,68 @@
+.TH nec2c 1 "February 2015" "nec2c(1)" "Ham Radio Applications"
+
+.SH NAME
+\fBnec2c\fR \- Translation of the NEC2 FORTRAN source code to the C language
+
+.SH SYNOPSIS
+
+\fBnec2c\fR -i<input-file-name> [-o<output-file-name>][-hv]
+
+.SH DESCRIPTION
+
+The translation was performed mostly "by hand" and a lot of
+modifications to the original program were introduced in order to
+modernize the NEC2 and to remove as many built-in limitations as
+possible. The attendant SOMNEC program was also translated to C and
+incorporated in nec2c as a function so that Sommerfeld ground solutions
+are a part of the program.
+
+.SH OPTIONS
+
+The -i option is always needed and it specifies the name of the input
+file. The -o switch is optional and it specifies the output file name.
+If not used, a name for the output file is made by stripping any
+extensions from the input file name and adding a ".out" extension, e.g.
+nec2c -i yagi.nec will cause nec2c to read yagi.nec as the input file
+and produce yagi.out as the output file.
+
+.PP
+\fB\-i \fR\fB\fIinput filename\fR\fR
+.RS 4
+Input File Name
+.RE
+.PP
+\fB\-o \fR\fB\fIoutput filename\fR\fR
+.RS 4
+Output File Name
+.RE
+.PP
+\fB\-h \fR
+.RS 4
+Print usage information and exit
+.RE
+.PP
+\fB\-v \fR
+.RS 4
+Print nec2c version number and exit
+.RE
+
+.SH "AUTHORS"
+
+nec2c is Copyright \(co Neoklis Kyriazis 5B4AZ\&.
+
+.SH "COPYRIGHT"
+.br
+This manual page is Copyright \(co 2015 Dave Hibberd\&.
+.br
+.PP
+This manual page was written for the Debian system (but may be used by others)\&.
+.PP
+Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or (at your option) any later version published by the Free Software Foundation\&.
+.PP
+On Debian systems, the complete text of the GNU General Public License can be found in
+/usr/share/common\-licenses/GPL-2\&.
+
+.SH "SEE ALSO"
+
+xnec2c(1)
+
diff --git a/debian/rules b/debian/rules
index 81c43dc..dd9063b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,98 +1,4 @@
 #!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-
-
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -O0
-else
-	CFLAGS += -O2
-endif
-
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	# Add here commands to configure the package.
-
-	touch configure-stamp
-
-
-build: build-stamp
-
-build-stamp: configure-stamp 
-	dh_testdir
-
-	# Add here commands to compile the package.
-	$(MAKE)
-	#docbook-to-man debian/nec2c.sgml > nec2c.1
-
-	touch $@
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp *.o nec2c
-
-	# Add here commands to clean up after the build process.
-	[ ! -f Makefile ] || $(MAKE) distclean
-
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
-
-	# Add here commands to install the package into debian/nec2c.
-	$(MAKE) DESTDIR=$(CURDIR)/debian/nec2c install
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs 
-	dh_installdocs
-	dh_installexamples
-#	dh_install
-#	dh_installmenu
-#	dh_installdebconf	
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_python
-#	dh_installinit
-#	dh_installcron
-#	dh_installinfo
-	dh_installman
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-#	dh_perl
-#	dh_makeshlibs
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+%:
+	dh $@ --with autoreconf
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..d27ae45
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+
+http://www.qsl.net/5/5b4az/pkg/nec2/nec2c/ nec2c-(.+)\.tar\.bz2

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/nec2c.git



More information about the pkg-hamradio-commits mailing list