[hamradio-commits] [extra-xdg-menus] 02/03: Imported Debian patch 1.0-4

Dave Hibberd hibby-guest at moszumanska.debian.org
Tue Feb 10 22:44:23 UTC 2015


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

hibby-guest pushed a commit to branch master
in repository extra-xdg-menus.

commit d01ff37c4c35dc491078738f60be6f3180e2999e
Author: Hamish Moffatt <hamish at debian.org>
Date:   Sun Jul 20 00:13:22 2008 +1000

    Imported Debian patch 1.0-4
---
 debian/changelog          | 25 +++++++++++++++++++++
 debian/compat             |  1 +
 debian/control            | 18 ++++++++++++++++
 debian/copyright          | 33 ++++++++++++++++++++++++++++
 debian/rules              | 55 +++++++++++++++++++++++++++++++++++++++++++++++
 exmen-scripts/exmendis.in |  6 ++++--
 exmen-scripts/exmenen.in  |  6 ++++--
 7 files changed, 140 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7a5fae1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,25 @@
+extra-xdg-menus (1.0-4) unstable; urgency=low
+
+  * Fixed bashisms in exmenen/exmendis commands (closes: #480596) 
+
+ -- Hamish Moffatt <hamish at debian.org>  Sun, 20 Jul 2008 00:13:22 +1000
+
+extra-xdg-menus (1.0-3) unstable; urgency=low
+
+  * Fix installation failure if upgrading from hamradiomenus package (closes:
+    #466484) by changing conflicts/replaces
+
+ -- Hamish Moffatt <hamish at debian.org>  Sun, 30 Mar 2008 16:15:16 +1100
+
+extra-xdg-menus (1.0-2) unstable; urgency=low
+
+  * Conflict/replace hamradiomenus << 1.1. The newer version is a dummy
+    package which will transition to this package.
+
+ -- Hamish Moffatt <hamish at debian.org>  Sun, 10 Feb 2008 12:41:34 +1100
+
+extra-xdg-menus (1.0-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Peter Clifton <pcjc2 at cam.ac.uk>  Sun, 13 Jan 2008 10:24:21 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..d350270
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,18 @@
+Source: extra-xdg-menus
+Section: misc
+Priority: optional
+Maintainer: Peter Clifton <pcjc2 at cam.ac.uk>
+Uploaders: Peter Clifton <pcjc2 at cam.ac.uk>, Hamish Moffatt <hamish at debian.org>
+Build-Depends: debhelper (>= 5.0.51), icon-naming-utils, libxml-parser-perl, pkg-config
+Standards-Version: 3.7.3
+
+Package: extra-xdg-menus
+Architecture: all
+Conflicts: hamradiomenus (<< 1.2)
+Replaces: hamradiomenus
+Description: Extra menu categories for applications under GNOME and KDE
+ This package installs various optional extra desktop menus for grouping
+ applications on GNOME, KDE and other XDG menu-spec compliant desktop
+ environments.
+ The extra menus may be enabled or disbled on a system or per-user basis
+ with the supplied scripts, exmenen and exmendis.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..63d2a19
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+This package was debianized by Peter Clifton <pcjc2 at cam.ac.uk> on
+Sun, 13 Jan 2008 09:36:00 +0000. GPL version 2 or later applies for the
+Debian work.
+
+This package is a combination of works:
+
+electronics-menu, Copyright (C) Peter Clifton, GPL version 2 or later.
+hamradio-menus,   Copyright (C) Joop Stakenborg, GPL version 2 or later.
+
+Scripts and manpages derived from the debian apache2 package's a2enmod and
+a2dismod are included in the exmen-scripts directory.
+
+Portions of build infrastructure have been copied from gEDA, and is made
+available under the GPL version 2 or later.
+
+--------------------------------------------------------------------------
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+--------------------------------------------------------------------------
+
+The GPL License which applies to this package can be found on your Debian
+system at /usr/share/common-licenses/GPL.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..86b045e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,55 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+config.status: configure
+	dh_testdir
+	./configure --prefix=/usr
+
+build: build-stamp
+
+build-stamp: config.status
+	dh_testdir
+	$(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	[ ! -f Makefile ] || $(MAKE) distclean
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/extra-xdg-menus
+	# Remove un-needed translation files (translations are merged into the .directory files)
+	rm -rf $(CURDIR)/debian/extra-xdg-menus/usr/share/locale/
+
+binary-arch: build install
+# We have nothing to do
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installman
+	dh_compress
+	dh_fixperms
+	dh_icons
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep
+
+.PHONY: build clean binary-indep binary-arch binary install
diff --git a/exmen-scripts/exmendis.in b/exmen-scripts/exmendis.in
index fec88f9..bd2ad8b 100755
--- a/exmen-scripts/exmendis.in
+++ b/exmen-scripts/exmendis.in
@@ -11,11 +11,13 @@ HOMEMENUDIR="${XDG_CONFIG_HOME}/menus/applications-merged"
 
 case $1 in
     --system)
-        echo "Configuring extra menus: system wide\n"
+        echo "Configuring extra menus: system wide"
+	echo
         MENUDIR=${SYSTEMMENUDIR}
         ;;
     --local)
-        echo "Configuring extra menus: local user\n"
+        echo "Configuring extra menus: local user"
+	echo
         MENUDIR=${HOMEMENUDIR}
         ;;
     *)
diff --git a/exmen-scripts/exmenen.in b/exmen-scripts/exmenen.in
index aac8a3a..9693540 100755
--- a/exmen-scripts/exmenen.in
+++ b/exmen-scripts/exmenen.in
@@ -11,11 +11,13 @@ HOMEMENUDIR="${XDG_CONFIG_HOME}/menus/applications-merged"
 
 case $1 in
     --system)
-        echo "Configuring extra menus: system wide\n"
+        echo "Configuring extra menus: system wide"
+	echo
         MENUDIR=${SYSTEMMENUDIR}
         ;;
     --local)
-        echo "Configuring extra menus: local user\n"
+        echo "Configuring extra menus: local user"
+	echo
         MENUDIR=${HOMEMENUDIR}
         ;;
     *)

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



More information about the pkg-hamradio-commits mailing list