diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..f7f761e --- /dev/null +++ b/ChangeLog @@ -0,0 +1,2 @@ +2013-08-29: Mugshot 0.1 + + Initial Release \ No newline at end of file diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 0000000..fc98b3d --- /dev/null +++ b/debian/README.source @@ -0,0 +1,38 @@ +This package uses dpatch to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +To get the fully patched source after unpacking the source package, cd +to the root level of the source package and run: + + debian/rules patch + +Removing a patch is as simple as removing its entry from the +debian/patches/00list file, and please also remove the patch file +itself. + +Creating a new patch is done with "dpatch-edit-patch patch XX_patchname" +where you should replace XX with a new number and patchname with a +descriptive shortname of the patch. You can then simply edit all the +files your patch wants to edit, and then simply "exit 0" from the shell +to actually create the patch file. + +To tweak an already existing patch, call "dpatch-edit-patch XX_patchname" +and replace XX_patchname with the actual filename from debian/patches +you want to use. + +To clean up afterwards again, "debian/rules unpatch" will do the +work for you - or you can of course choose to call +"fakeroot debian/rules clean" all together. + + +--- + +this documentation is part of dpatch package, and may be used by +packages using dpatch to comply with policy on README.source. This +documentation is meant to be useful to users who are not proficient in +dpatch in doing work with dpatch-based packages. Please send any +improvements to the BTS of dpatch package. + +original text by Gerfried Fuchs, edited by Junichi Uekawa +10 Aug 2008. diff --git a/debian/changelog b/debian/changelog index 069b5da..aab391a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,5 @@ -mugshot (0.1) raring; urgency=low +mugshot (0.1-6) unstable; urgency=low - * Initial release. + * Initial release (closes: #721006) - -- Sean Davis Sun, 14 Jul 2013 12:01:53 -0400 + -- Sean Davis Mon, 26 Aug 2013 21:46:32 -0400 diff --git a/debian/compat b/debian/compat index 45a4fb7..ec63514 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -8 +9 diff --git a/debian/control b/debian/control index e710495..57daeb8 100644 --- a/debian/control +++ b/debian/control @@ -1,34 +1,32 @@ Source: mugshot Section: python Priority: extra -Build-Depends: debhelper (>= 8), +Maintainer: Sean Davis +Build-Depends: debhelper (>= 9.0.0), python (>= 2.6.6-3~), python-distutils-extra (>= 2.10) -Maintainer: Sean Davis Standards-Version: 3.9.4 -X-Python-Version: >= 2.6 +Homepage: https://launchpad.net/mugshot +#Vcs-Git: git://git.debian.org/collab-maint/mugshot.git +#Vcs-Browser: http://git.debian.org/?p=collab-maint/mugshot.git;a=summary Package: mugshot Architecture: all -Depends: ${misc:Depends}, +Depends: ${shlibs:Depends}, + ${misc:Depends}, ${python:Depends}, - python-pexpect, + gir1.2-glib-2.0, gir1.2-gtk-3.0, python-dbus, - gir1.2-glib-2.0, - python-cairo, - gir1.2-gstreamer-1.0, + python-pexpect, gir1.2-gdkpixbuf-2.0, - gir1.2-gst-plugins-base-1.0, yelp -Suggests: - gstreamer1.0-plugins-good -Description: a lightweight user-configuration application +Description: lightweight user-configuration application Mugshot allows you to easily update personal user details. This includes: . - Linux profile image: ~/.face + Linux Profile image: ~/.face . - User details stored in /etc/passwd (used by finger) + User details stored in /etc/passwd . Pidgin buddy icon . diff --git a/debian/copyright b/debian/copyright index 5db95f2..df7152f 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,10 +1,28 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: mugshot -Upstream-Contact: Sean Davis -Source: https://launchpad.net/mugshot +Source: https://launchpad.net/mugshot/+download Files: * -Copyright: (C) 2013 Sean Davis -License: GPL-3 - The full text of the GPL is distributed in - /usr/share/common-licenses/GPL-3 on Debian systems. +Copyright: 2013 Sean Davis +License: GPL-3.0+ + +Files: debian/* +Copyright: 2013 Sean Davis +License: GPL-3.0+ + +License: GPL-3.0+ + 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 3 of the License, or + (at your option) any later version. + . + This package 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, see . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/menu b/debian/menu new file mode 100644 index 0000000..61ff9bb --- /dev/null +++ b/debian/menu @@ -0,0 +1,2 @@ +?package(mugshot):needs="X11" section="Applications/System/Administration"\ + title="mugshot" command="/usr/bin/mugshot" diff --git a/debian/mugshot.1 b/debian/mugshot.1 new file mode 100644 index 0000000..44b61b4 --- /dev/null +++ b/debian/mugshot.1 @@ -0,0 +1,15 @@ +.TH "mugshot" "1" +.SH "NAME" +mugshot \- A lightweight user-configuration application +.SH "SYNOPSIS" +\fB +.SH "DESCRIPTION" +.B mugshot +allows you to easily update personal user details, including finger +information, Pidgin buddy icon, and LibreOffice user details. +.SH "AUTHOR" +.PP +This manual page was written by Sean Davis +for the \fBDebian GNU/Linux\fP system. + + diff --git a/debian/mugshot.manpages b/debian/mugshot.manpages new file mode 100644 index 0000000..713487f --- /dev/null +++ b/debian/mugshot.manpages @@ -0,0 +1 @@ +debian/mugshot.1 \ No newline at end of file diff --git a/debian/rules b/debian/rules index 2c0fe5e..c096cc0 100755 --- a/debian/rules +++ b/debian/rules @@ -5,5 +5,4 @@ ifneq ($(shell dh -l | grep -xF translations),) else dh $@ --with python2 endif - - + find . -type d -empty -delete 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..9da209a --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://launchpad.net/mugshot/+download https://launchpad.net/mugshot/.*/mugshot-(.*)\.tar\.bz2 diff --git a/mugshot.desktop.in b/mugshot.desktop.in index 0a32e3d..c616ce5 100644 --- a/mugshot.desktop.in +++ b/mugshot.desktop.in @@ -1,7 +1,8 @@ [Desktop Entry] _Name=About Me _Comment=Configure your profile image and contact details -Categories=XFCE;GNOME;GTK;Settings;X-GNOME-Settings-Panel;X-GNOME-PersonalSettings;DesktopSettings;X-XFCE; +Categories=GNOME;GTK;Settings;X-GNOME-Settings-Panel;X-GNOME-PersonalSettings;DesktopSettings;X-XFCE; +Keywords=Configuration;Profile;User; Exec=mugshot Icon=mugshot Terminal=false diff --git a/po/mugshot.pot b/po/mugshot.pot index 6d03e8f..dd7a007 100644 --- a/po/mugshot.pot +++ b/po/mugshot.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-17 23:02-0400\n" +"POT-Creation-Date: 2013-08-27 21:43-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -119,47 +119,47 @@ msgstr "" msgid "Show debug messages (-vv debugs mugshot_lib also)" msgstr "" -#: ../mugshot/CameraMugshotDialog.py:96 +#: ../mugshot/CameraMugshotDialog.py:98 #, python-format msgid "Camera failed to load. Devices: %s" msgstr "" #. Translators: Please include newlines, as required to fit the message. -#: ../mugshot/CameraMugshotDialog.py:112 +#: ../mugshot/CameraMugshotDialog.py:114 msgid "" "Sorry, but your camera\n" "failed to initialize." msgstr "" #. Translators: Please include newlines, as required to fit the message. -#: ../mugshot/CameraMugshotDialog.py:119 +#: ../mugshot/CameraMugshotDialog.py:121 msgid "" "Please wait while your\n" "camera is initialized." msgstr "" -#: ../mugshot/CameraMugshotDialog.py:136 +#: ../mugshot/CameraMugshotDialog.py:138 msgid "Cannot display camera output. Ignoring play command" msgstr "" #. Set the record button to retry, and disable it until the capture #. finishes. -#: ../mugshot/CameraMugshotDialog.py:263 +#: ../mugshot/CameraMugshotDialog.py:265 msgid "Retry" msgstr "" -#: ../mugshot/MugshotWindow.py:350 +#: ../mugshot/MugshotWindow.py:351 msgid "Update Pidgin buddy icon?" msgstr "" -#: ../mugshot/MugshotWindow.py:351 +#: ../mugshot/MugshotWindow.py:352 msgid "Would you also like to update your Pidgin buddy icon?" msgstr "" -#: ../mugshot/MugshotWindow.py:554 +#: ../mugshot/MugshotWindow.py:555 msgid "Update LibreOffice user details?" msgstr "" -#: ../mugshot/MugshotWindow.py:555 +#: ../mugshot/MugshotWindow.py:556 msgid "Would you also like to update your user details in LibreOffice?" msgstr ""