debian/0000775000000000000000000000000012250232052007161 5ustar debian/repack.stub0000664000000000000000000000325112250226561011336 0ustar #!/bin/sh : <<=cut =pod =head1 NAME repack.stub - script to repack upstream tarballs from uscan =head1 INSTRUCTIONS put this in debian/repack.stub and add "debian sh debian/repack.stub" to the end of the line in debian/watch. you will also need to add a version mangle to debian/watch. then create a debian/repack.local. this is a shell script that is sources under "set -e", so be careful to check returns codes. =head1 FUNCTIONS =over 4 =item rm rm is replaced by a function that does some magic ("rm -rv" by default), but also changes MANIFEST if $MANIFEST is 1 =item mv mv is replaced by a function that just does mv (by default), but also changes MANIFEST if $MANIFEST is 1 =item requires_version requires_version is there for future usage for requiring certain versions of the script =back =head1 VARIABLES =over 4 =item SUFFIX defaults to +dfsg what to append to the upstream version =item RM_OPTS defaults to -vrf options to pass to rm =item MANIFEST defaults to 0, set to 1 to turn on. this will manipulate MANIFEST files in CPAN tarballs. =item UP_BASE this is the directory where the upstream source is. =back =cut if [ -z "$REPACK_SH" ]; then if [ -f ../../scripts/repack.sh ]; then REPACK_SH=../../scripts/repack.sh fi if [ -z "$REPACK_SH" ] && which repack.sh > /dev/null; then REPACK_SH=$(which repack.sh) fi fi if [ ! -f "$REPACK_SH" ]; then echo "Couldn't find a repack.sh. please put it in your PATH, put it at ../../scripts/repack.sh, or put it somewhere else and set the REPACK_SH variable" echo "You can get it from http://svn.debian.org/viewsvn/pkg-perl/scripts/repack.sh" exit 1 fi exec "$REPACK_SH" "$@" debian/patches/0000775000000000000000000000000012264001151010607 5ustar debian/patches/0001-Try-to-use-logind-first-to-power-the-system-off.patch0000664000000000000000000000300512264001151023215 0ustar From 53c1be368c131cd69d5cbe228bc62bfbbe01bf0c Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Tue, 30 Apr 2013 01:20:42 +0100 Subject: [PATCH] Try to use logind first to power the system off Then fall back to ConsoleKit and HAL. https://github.com/rastersoft/Devede/pull/22 --- devede_convert.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) Index: b/devede_convert.py =================================================================== --- a/devede_convert.py +++ b/devede_convert.py @@ -585,16 +585,26 @@ print "\n\nApago el ordenador\n\n" failure=False - # First, try with ConsoleKit + # First, try with logind try: bus = dbus.SystemBus() - bus_object = bus.get_object("org.freedesktop.ConsoleKit", "/org/freedesktop/ConsoleKit/Manager") - bus_object.Stop(dbus_interface="org.freedesktop.ConsoleKit.Manager") + bus_object = bus.get_object("org.freedesktop.login1", "/org/freedesktop/login1") + bus_object.PowerOff(False, dbus_interface="org.freedesktop.login1.Manager") except: failure=True if (failure): failure=False + # If it fails, try with ConsoleKit + try: + bus = dbus.SystemBus() + bus_object = bus.get_object("org.freedesktop.ConsoleKit", "/org/freedesktop/ConsoleKit/Manager") + bus_object.Stop(dbus_interface="org.freedesktop.ConsoleKit.Manager") + except: + failure=True + if (failure): + failure=False + # If it fails, try with HAL try: bus = dbus.SystemBus() debian/patches/series0000664000000000000000000000015512264001156012032 0ustar 01-fix_building.patch 02-fix_avconv_bitrate.patch 0001-Try-to-use-logind-first-to-power-the-system-off.patch debian/patches/01-fix_building.patch0000664000000000000000000000147212250226561014526 0ustar Author: Alessio Treglia Description: Install only locales, the other stuff will be installed by setup.py. --- install.sh | 11 ----------- 1 file changed, 11 deletions(-) --- devede.orig/install.sh +++ devede/install.sh @@ -130,12 +130,6 @@ then # paths (relative to DESTDIR). install_locales "/usr/share" # Locales are common. - - install_others "/usr/local/bin" \ - "/usr/local/share" \ - "/usr/local/lib/devede" \ - "/usr/local/share/devede" \ - "/usr/local/share/doc/devede" else # Be sure all paths are defined. @@ -152,9 +146,4 @@ else # And now, install everything according to paths above. install_locales "${datadir}" - install_others "${bindir}" \ - "${datadir}" \ - "${pkglibdir}" \ - "${pkgdatadir}" \ - "${pkgdocdir}" fi debian/patches/02-fix_avconv_bitrate.patch0000664000000000000000000000150212250226561015732 0ustar Description: Correctly pass bitrate to avconv Use -b which overrides default values comming from -target option, rather than -b:v which does not. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714075 Author: Petr Gajdůšek Last-Update: 2013-08-18 Reviewed-by: Alessio Treglia Forwarded: https://github.com/rastersoft/Devede/issues/24 --- devede_avconv_convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- devede.orig/devede_avconv_convert.py +++ devede/devede_avconv_convert.py @@ -473,7 +473,7 @@ class video_converter_ffmpeg(devede_exec command_var.append("2") if (vcd==False): - command_var.append("-b:v") + command_var.append("-b") command_var.append(str(videorate)+"k") #if disctype!="divx": debian/devede.links0000664000000000000000000000011712250226561011466 0ustar usr/share/fonts/truetype/freefont/FreeSans.ttf usr/share/devede/devedesans.ttf debian/devede.manpages0000664000000000000000000000002012250226561012132 0ustar debian/devede.1 debian/source/0000775000000000000000000000000012250226561010471 5ustar debian/source/format0000664000000000000000000000001412250226561011677 0ustar 3.0 (quilt) debian/control0000664000000000000000000000233612264066042010601 0ustar Source: devede Section: video Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Multimedia Maintainers Uploaders: Alessio Treglia , Reinhard Tartler X-Python-Version: >= 2.6 Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3), python-scour Standards-Version: 3.9.4 Homepage: http://www.rastersoft.com/programas/devede.html Vcs-Git: git://anonscm.debian.org/pkg-multimedia/devede.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/devede.git Package: devede Architecture: all Depends: dvdauthor, genisoimage, imagemagick, libav-tools, libavcodec-extra-54, libvorbis0a, libvorbisfile3, mplayer2 | mpv, python-cairo, python-dbus, python-gobject, python-gtk2 (>= 2.16.0), ttf-freefont, vcdimager, ${misc:Depends}, ${python:Depends} Recommends: libmp3lame0 Suggests: mencoder Description: simple application to create Video DVDs DeVeDe is a program to create video DVDs, suitables for home players, from any number of video files, in any of the formats supported by Mplayer. . It allows user to create subtitles and even menus. debian/gbp.conf0000664000000000000000000000006212250226561010606 0ustar [DEFAULT] pristine-tar = True compression = bzip2 debian/changelog0000664000000000000000000000615612264001251011043 0ustar devede (3.23.0~ds1-5ubuntu1) trusty; urgency=low * Merge from Debian unstable. Remaining changes: - 0001-Try-to-use-logind-first-to-power-the-system-off.patch: Add new patch to use logind to power the system off in preference to ConsoleKit and HAL. -- Ubuntu Merge-o-Matic Fri, 06 Dec 2013 10:25:52 +0000 devede (3.23.0~ds1-5) unstable; urgency=low * Demote mencoder to suggests (Closes: #731454) -- Reinhard Tartler Fri, 06 Dec 2013 02:18:32 +0000 devede (3.23.0~ds1-4) unstable; urgency=low * Replace mplayer with mpv in the Depends field. -- Alessio Treglia Wed, 09 Oct 2013 20:47:33 +0100 devede (3.23.0~ds1-3) unstable; urgency=low * Fix incorrect result size. Thanks to Petr Gajdůšek for the patch. (Closes: #714075) * Update dependency on libavcodec-extra-54 -- Alessio Treglia Sun, 18 Aug 2013 18:36:47 +0100 devede (3.23.0~ds1-2) unstable; urgency=low * add myself to uploaders * Bugfix: Avoid dependency on outdated libav libraries, Closes: #709430 * Bump standards version -- Reinhard Tartler Thu, 23 May 2013 20:15:20 +0200 devede (3.23.0~ds1-1ubuntu2) saucy; urgency=low * Fix logind object path -- Iain Lane Thu, 02 May 2013 00:27:17 +0100 devede (3.23.0~ds1-1ubuntu1) saucy; urgency=low * debian/patches/0001-Try-to-use-logind-first-to-power-the-system-off.patch: Add new patch to use logind to power the system off in preference to ConsoleKit and HAL. -- Iain Lane Tue, 30 Apr 2013 01:39:55 +0100 devede (3.23.0~ds1-1) unstable; urgency=low * New upstream release: - Fix a bug while doing preview from the "menu options" window. - Port to avconv. (Closes: #690374) (LP: #969830) - Add support for AC3_FIX for FFMpeg and AVConv. - Add fallback when the destination folder doesn't exists. * Replace ffmpeg with libav-tools in Depends. * Set alternative dependency on mplayer2. Thanks to Chris Bannister for pointing out this. (Closes: #690480) -- Alessio Treglia Wed, 24 Oct 2012 09:37:37 +0100 devede (3.22.0-1) unstable; urgency=low [ Fabian Greffrath ] * No need to chmod in /usr/share, dh_fixperms takes care of that. * Simplify override_dh_clean and override_dh_install. * Remove build/ directory in clean rule. * devedesans.ttf is FreeSans, so use the one packaged in Debian instead. * Back to the manual removal of menu.html~. [ Alessio Treglia ] * New upstream release. * Remove 02-setup_py.patch, applied upstream. * Remove 03-try_setlocale.patch, applied upstream. * debian/rules: - Do not rename devede.py to devede, it is no longer needed. - Do not run install.sh on install, the setup.py scripts properly handles translations. - Remove locale/ dir on clean. * Depends on python-dbus. -- Alessio Treglia Fri, 08 Jun 2012 10:11:29 +0200 devede (3.21.0-1) unstable; urgency=low * Initial release. (Closes: #447276) -- Alessio Treglia Mon, 16 Apr 2012 09:19:03 +0200 debian/repack.sh0000775000000000000000000000703412250226561011001 0ustar #!/bin/sh # see the repack.stub for how to use # TODO: provide example watch files and repack.locals # TODO: test suite. problems fixed that need to be tested: # * globbing # * whitespace and then comments in the MANIFEST # TODO: does / in weird places work? test suite too. # TODO: I actually broke stuff with the MANIFEST change not thinking.. # TODO: allow for a sepearate (and multiple) MANIFEST files, then # de-uglify libsyntax-highlight-engine-kate-perl. # TODO: have each mv and rm check that something actually changed, and # if not, die set -e set -u usage() { echo "Usage: repack.sh --upstream-version " exit 1 } if [ "$#" != "3" ]; then usage fi if [ "$1" != "--upstream-version" ]; then usage fi if [ ! -f "$3" ]; then if [ -n "$3" ]; then echo "$3 doesn't exist" fi usage fi VER="$2" FILE="$3" PKG=`dpkg-parsechangelog|grep ^Source:|sed 's/^Source: //'` SUFFIX="+dfsg" echo echo "Repackaging $FILE" echo DIR=`mktemp -d ./tmpRepackXXXXXX` DIR=$(readlink -f "$DIR") trap "/bin/rm -rf \"$DIR\"" QUIT INT EXIT # Create an extra directory to cope with rootless tarballs UP_BASE="$DIR/unpack" mkdir "$UP_BASE" tar xf "$FILE" -C "$UP_BASE" || unzip "$FILE" -d "$UP_BASE" if [ `ls -1 "$UP_BASE" | wc -l` -eq 1 ]; then # Tarball does contain a root directory UP_BASE="$UP_BASE/`ls -1 "$UP_BASE"`" fi RM_OPTS="-vrf" real_rm(){ /bin/rm "$@" } real_mv(){ /bin/mv "$@" } rm(){ set +f MYOLDPWD=$(pwd) cd "$UP_BASE" if [ "$MANIFEST" = "1" ]; then PERM=$(stat --format=%a "MANIFEST") chmod u+w "MANIFEST" fi for i in $@; do if [ "$MANIFEST" = "1" ]; then PATTERN="^$i" if [ -d "$i" ]; then if ! { echo "$PATTERN" | grep -q "/$" ; }; then PATTERN="${PATTERN}/" fi else PATTERN="${PATTERN}\s?" fi grep -Ev "$PATTERN" "MANIFEST" > "$DIR/MANIFEST" real_mv "$DIR/MANIFEST" "MANIFEST" fi real_rm "$RM_OPTS" "$i" done if [ "$MANIFEST" = "1" ]; then chmod $PERM "MANIFEST" fi cd $MYOLDPWD set -f } mv(){ set +f OLD=$(pwd) cd $UP_BASE real_mv "$@" cd $OLD if [ "$MANIFEST" = "1" ]; then echo "MANIFEST cannot be manipulated with mv yet, patches welcome" exit 1 fi set -f } # bump with incompatible changes REPACK_VERSION=3 requires_version(){ if [ $REPACK_VERSION -lt $1 ]; then echo "repack.sh is not up to date enough for this package. you need at least version $1, while this script is only version $REPACK_VERSION" exit 1 fi } MANIFEST=0 ## Remove stuff set -f MYORIGPWD=$(pwd) cd "$UP_BASE" . "$MYORIGPWD/debian/repack.local" cd $MYORIGPWD set +f ## End REPACK_DIR="$PKG-${VER}${SUFFIX}.orig" # DevRef § 6.7.8.2 DFSG_TAR="$(dirname $FILE)/${PKG}_${VER}${SUFFIX}.orig.tar" real_mv "$UP_BASE" "$DIR/$REPACK_DIR" # .gz or .bz2? FILETYPE=$(file --brief --mime-type --dereference "$FILE") case "$FILETYPE" in application/x-gzip|application/zip) C_PROGRAM="gzip" C_SUFFIX="gz" ;; application/x-bzip2) C_PROGRAM="bzip2" C_SUFFIX="bz2" ;; *) echo "E: Unknown filetye $FILETYPE" exit 1 ;; esac # Using a pipe hides tar errors! tar cfC "$DIR/repacked.tar" "$DIR" "$REPACK_DIR" $C_PROGRAM -9 < "$DIR/repacked.tar" > "$DIR/repacked.tar.$C_SUFFIX" real_mv "$DIR/repacked.tar.$C_SUFFIX" "$DFSG_TAR.$C_SUFFIX" echo "*** $DFSG_TAR.$C_SUFFIX ready" debian/menu0000664000000000000000000000022112250226561010053 0ustar ?package(devede): needs="X11"\ section="Applications/Video"\ title="DeVeDe"\ icon="/usr/share/pixmaps/devede.xpm"\ command="/usr/bin/devede" debian/devede.xpm0000664000000000000000000002312612250226561011157 0ustar /* XPM */ static char * devede_xpm[] = { "32 32 474 2", " c None", ". c #9EA6A2", "+ c #C6CFC6", "@ c #D7E0D5", "# c #E1E9E0", "$ c #E9EEE7", "% c #EAECE9", "& c #E1E4E0", "* c #CBCFCB", "= c #939C9A", "- c #B8C7C0", "; c #D4E7DC", "> c #D5E6DB", ", c #DBEADB", "' c #E4EFE1", ") c #EBF3E9", "! c #F3F7F1", "~ c #FAFCF9", "{ c #FFFFFF", "] c #FEFEFE", "^ c #EEF1ED", "/ c #C1C4C1", "( c #B9CBC5", "_ c #CDE4DB", ": c #CDE3D9", "< c #D1E5D9", "[ c #D5E7DA", "} c #DAEADB", "| c #E3EEDF", "1 c #EAF2E7", "2 c #F1F6EF", "3 c #F8FBF7", "4 c #F0F1EF", "5 c #9AA8A5", "6 c #C5DCD6", "7 c #C7E0D9", "8 c #CBE2D9", "9 c #CEE4D9", "0 c #D2E6D9", "a c #D6E7DA", "b c #D9EADA", "c c #E0EDDC", "d c #E7F1E4", "e c #EEF5EC", "f c #F4F8F3", "g c #FAFCFA", "h c #F4F8F4", "i c #C3C8C0", "j c #9DABA9", "k c #C4DEDA", "l c #C4DFD8", "m c #C8E1D9", "n c #CCE3D9", "o c #CFE4D9", "p c #D3E6DA", "q c #D6E8DA", "r c #DAE9DA", "s c #DEECDA", "t c #E4EFE0", "u c #EFF5ED", "v c #F8FAF7", "w c #F5F9F3", "x c #F0F6EE", "y c #EBF4E9", "z c #CACFC4", "A c #9AAAA8", "B c #C1DDD9", "C c #C2DED8", "D c #C5E0D8", "E c #C9E1D9", "F c #D0E5D9", "G c #D4E6DA", "H c #D7E8DA", "I c #DBEADA", "J c #DFECDB", "K c #E5EFE2", "L c #F2F7F1", "M c #EAF2E8", "N c #E5F0E2", "O c #E1EDDE", "P c #BFC6BA", "Q c #A1ACAC", "R c #D2E3E4", "S c #C0DCD8", "T c #C6E0D8", "U c #CAE2D9", "V c #D8E9DA", "W c #DCEADA", "X c #E4EEE0", "Y c #E0ECDC", "Z c #E2EEDD", "` c #A1A398", " . c #D9E7E8", ".. c #DCE8EB", "+. c #D7E6E8", "@. c #C7E1DB", "#. c #D9E9DA", "$. c #DDEBDA", "%. c #E1EDDD", "&. c #DFEBDA", "*. c #E0E8D3", "=. c #CDCFBE", "-. c #B8C6C7", ";. c #DDE9EC", ">. c #DBE7EA", ",. c #CEE3DF", "'. c #DEEBDA", "). c #DBE9D8", "!. c #D7E5D6", "~. c #DFECDA", "{. c #DFEBD9", "]. c #E0EAD6", "^. c #E0E7D1", "/. c #E0E6CF", "(. c #E2E6CE", "_. c #A2A499", ":. c #DAE6E8", "<. c #D5E6E4", "[. c #CFDFD0", "}. c #A9BAB0", "|. c #91A29D", "1. c #889796", "2. c #899697", "3. c #949FA0", "4. c #ACB6B2", "5. c #D4DFD3", "6. c #DFEAD7", "7. c #DFE9D5", "8. c #E0E7D2", "9. c #E0E6D0", "0. c #E1E5CE", "a. c #E1E4CC", "b. c #D1D3BF", "c. c #95A0A5", "d. c #C3D6DE", "e. c #CCDFE2", "f. c #DAE7EB", "g. c #DAE7E8", "h. c #D6E7DC", "i. c #BFD1C4", "j. c #8DA19A", "k. c #889896", "l. c #8A9598", "m. c #8A9398", "n. c #8B9299", "o. c #92989F", "p. c #C5CFC6", "q. c #DFEAD8", "r. c #DFE9D6", "s. c #E0E8D4", "t. c #E2E4CB", "u. c #83857E", "v. c #B3C3C8", "w. c #BACBD8", "x. c #BACDD8", "y. c #C1D4DB", "z. c #CEDEE1", "A. c #CAD8D9", "B. c #8FA29C", "C. c #8A9498", "D. c #8B9399", "E. c #8C909A", "F. c #8D8F9B", "G. c #92949F", "H. c #CFD8CD", "I. c #E1E5CD", "J. c #E1E4CB", "K. c #E1E3C9", "L. c #ABAC9F", "M. c #BCC9D4", "N. c #BBCCD8", "O. c #C3D3DA", "P. c #CCDCDE", "Q. c #A2B2AF", "R. c #91A09E", "S. c #8F9C9C", "T. c #899597", "U. c #939EA2", "V. c #939AA0", "W. c #8D8E9B", "X. c #8F8D9A", "Y. c #A6A7AB", "Z. c #DEE8D6", "`. c #E2E3C9", " + c #C6C7B4", ".+ c #DEE2EA", "++ c #D4DBE7", "@+ c #CED7E2", "#+ c #C8D2DE", "$+ c #C0CDD9", "%+ c #BACAD6", "&+ c #BBCBD8", "*+ c #B3C5CF", "=+ c #889997", "-+ c #8B9899", ";+ c #8F9A9C", ">+ c #909B9F", ",+ c #9BA8A7", "'+ c #9DA2A3", ")+ c #8E8D9B", "!+ c #908D99", "~+ c #938D99", "{+ c #D5DECF", "]+ c #E1E4CD", "^+ c #E4E5CE", "/+ c #E6E6D0", "(+ c #E1E1CF", "_+ c #E7EAF1", ":+ c #E6E9F0", "<+ c #E2E6ED", "[+ c #C1CACE", "}+ c #8F9B9C", "|+ c #8F999C", "1+ c #8D979B", "2+ c #9BA5AB", "3+ c #A09DA5", "4+ c #928E9A", "5+ c #958F9A", "6+ c #96909A", "7+ c #CECCC7", "8+ c #EAECDD", "9+ c #EBECDE", "0+ c #EEEDE0", "a+ c #EFEDE2", "b+ c #F0EEE3", "c+ c #F0EFE4", "d+ c #E8EBF1", "e+ c #C4CBD0", "f+ c #929C9F", "g+ c #90999D", "h+ c #90969D", "i+ c #A2A7AE", "j+ c #A9A4A9", "k+ c #98929D", "l+ c #9B939D", "m+ c #9D949D", "n+ c #D0CAC7", "o+ c #F0EEE5", "p+ c #E5E9EF", "q+ c #E4E8EF", "r+ c #E3E5EF", "s+ c #E3E5EE", "t+ c #E6E6EF", "u+ c #E7E6F0", "v+ c #CFD2D9", "w+ c #9597A3", "x+ c #7B7D7F", "y+ c #888486", "z+ c #9E979F", "A+ c #958D97", "B+ c #958B95", "C+ c #968B94", "D+ c #CBC1B5", "E+ c #E2DCCB", "F+ c #E7E4D4", "G+ c #EAE9DB", "H+ c #EEEDE2", "I+ c #D0D2DD", "J+ c #D5D8E7", "K+ c #D2D5E5", "L+ c #D5D7E7", "M+ c #DBDCEA", "N+ c #E2E1ED", "O+ c #E2E2EC", "P+ c #959AA2", "Q+ c #9C99A5", "R+ c #A09EA5", "S+ c #A29CA2", "T+ c #A096A0", "U+ c #978F99", "V+ c #9D929A", "W+ c #A19499", "X+ c #D5C5B3", "Y+ c #D7C8B4", "Z+ c #D9CBB9", "`+ c #DFD6C3", " @ c #E4DECC", ".@ c #E2DECE", "+@ c #ACADBA", "@@ c #CED1E3", "#@ c #D1D4E4", "$@ c #D7D9E8", "%@ c #DEDEEB", "&@ c #E4E3EE", "*@ c #BCBDC8", "=@ c #928C98", "-@ c #938C97", ";@ c #948B96", ">@ c #968B95", ",@ c #998D95", "'@ c #9F929A", ")@ c #C7B9BA", "!@ c #E9DFDA", "~@ c #E1D2C9", "{@ c #DAC8B9", "]@ c #D7C8B5", "^@ c #CCC4B2", "/@ c #8E9096", "(@ c #D3D5E5", "_@ c #D9DBE9", ":@ c #E0E0EC", "<@ c #E6E5EF", "[@ c #E5E4ED", "}@ c #A8A8B4", "|@ c #918D99", "1@ c #978B93", "2@ c #998A92", "3@ c #AF9EA4", "4@ c #E5D6D3", "5@ c #EBDFDA", "6@ c #EBDDD6", "7@ c #E0CFC5", "8@ c #B3A79B", "9@ c #CFD2E1", "0@ c #DCDCEA", "a@ c #E4E3ED", "b@ c #B7B3C0", "c@ c #958F9B", "d@ c #948C96", "e@ c #988A93", "f@ c #9C8D95", "g@ c #B8A8AE", "h@ c #DBC6CB", "i@ c #DCC0C4", "j@ c #E3D0CD", "k@ c #E9DCD6", "l@ c #DFCEC3", "m@ c #A9ABB5", "n@ c #DCDAE3", "o@ c #C2BDC7", "p@ c #B6B0B8", "q@ c #B6ACB5", "r@ c #C1B6BD", "s@ c #D6C7CF", "t@ c #DDCAD0", "u@ c #DCC4C9", "v@ c #DABFC2", "w@ c #D9BEBC", "x@ c #DFC9C2", "y@ c #EADDD8", "z@ c #D3C4C0", "A@ c #D7D8E6", "B@ c #E5E2EC", "C@ c #E3DCE4", "D@ c #E1D5DD", "E@ c #DFCFD5", "F@ c #DDC9CE", "G@ c #DBC2C7", "H@ c #DABFC0", "I@ c #D8BDBA", "J@ c #D8BDB6", "K@ c #DBC3BC", "L@ c #E9DAD5", "M@ c #898381", "N@ c #A9A9B1", "O@ c #EAE9F2", "P@ c #EBEAF2", "Q@ c #E7E7F1", "R@ c #E5E0E9", "S@ c #E3DAE2", "T@ c #E1D3DA", "U@ c #DFCDD3", "V@ c #DDC6CC", "W@ c #DBC0C4", "X@ c #D9BEBE", "Y@ c #D8BDB8", "Z@ c #DAC0B8", "`@ c #E6D5CF", " # c #C6B7B5", ".# c #006764", "+# c #006864", "@# c #0B6564", "## c #D6DAE1", "$# c #EEEDF4", "%# c #EFEEF5", "&# c #EFEFF5", "*# c #ECEBF3", "=# c #E9E8F1", "-# c #358485", ";# c #549598", "># c #E5E3ED", ",# c #1F7776", "'# c #699B9D", ")# c #E0D1D8", "!# c #DECBD0", "~# c #94A29C", "{# c #026764", "]# c #126F6B", "^# c #538884", "/# c #C3B8B2", "(# c #1A6967", "_# c #ECEBF2", ":# c #D3E1E4", "<# c #378785", "[# c #2A7F7E", "}# c #2F8280", "|# c #BBCFD5", "1# c #93B9BD", "2# c #086B68", "3# c #D9DEE7", "4# c #AAC3C9", "5# c #016865", "6# c #C3C7CD", "7# c #C1C1C6", "8# c #327E7C", "9# c #267675", "0# c #2B7876", "a# c #ABABA8", "b# c #C2B5AD", "c# c #A9AAA4", "d# c #0E6B69", "e# c #136362", "f# c #006765", "g# c #5B9A99", "h# c #127170", "i# c #3D8B89", "j# c #287E7D", "k# c #66A1A1", "l# c #E3E5ED", "m# c #0F6F6D", "n# c #86B0B5", "o# c #509192", "p# c #3E8787", "q# c #578F8F", "r# c #106E6C", "s# c #367D7B", "t# c #247573", "u# c #5C8C88", "v# c #C7B6B0", "w# c #BFA8A2", "x# c #0D6562", "y# c #0E6564", "z# c #257B78", "A# c #F5F6F8", "B# c #EBEEF3", "C# c #C6D8DC", "D# c #659FA1", "E# c #237A79", "F# c #076B68", "G# c #99B3B7", "H# c #558D8E", "I# c #277875", "J# c #D7BEC1", "K# c #D1BBB9", "L# c #B3AEA8", "M# c #8D8B86", "N# c #006665", "O# c #016563", "P# c #0B6A68", "Q# c #1D7775", "R# c #96BCBF", "S# c #C3D2DA", "T# c #167370", "U# c #DDD4DC", "V# c #BEBBBF", "W# c #2E7A79", "X# c #1A716F", "Y# c #1C726F", "Z# c #879C97", "`# c #7A8E88", " $ c #8D8D91", ".$ c #C7C6CE", "+$ c #DCDCE6", "@$ c #E4DFE8", "#$ c #E3D9E2", "$$ c #DDC6CB", "%$ c #DAC0C4", "&$ c #BEA8A8", "*$ c #9E8C8A", "=$ c #696260", "-$ c #706D70", ";$ c #777273", ">$ c #756E70", ",$ c #635D5F", " . + @ # $ % & * ", " = - ; > , ' ) ! ~ { { ] ^ / ", " ( _ : < [ } | 1 2 3 ] { { { { 4 ", " 5 6 7 8 9 0 a b c d e f ~ ] { { { g h i ", " j k l m n o p q r s t 1 u f v ~ ~ 3 w x y z ", " A B C D E n F G H I J J K 1 e 2 L ! 2 e M N O P ", " Q R S C T U : < [ V W J J J X d 1 ) ) 1 d ' Y J Z ` ", " ...+.@.7 8 9 0 a #.$.J J J J c | t t | %.J J &.*.=. ", " -.;.....>.,.n o p q r '.).!.!.).J J J J ~.&.{.].^./.(._. ", " :...........<.F G H [.}.|.1.2.3.4.5.J J {.6.7.8.9.0.a.b. ", " c.d.e.f.........g.h.i.j.k.1.2.l.m.n.o.p.&.q.r.s.8.9.0.a.t.u. ", " v.w.w.x.y.z.f.....A.B.k.1.2.C.D.n.E.F.G.H.q.r.s.^./.I.J.K.L. ", " M.w.w.w.w.w.N.O.P.Q.R.S.T.C.U.V.E.F.W.X.Y.Z.7.*.^./.I.J.`. + ", " .+++@+#+$+%+&+w.*+=+-+;+>+,+ '+)+X.!+~+{+7.8.9.0.]+^+/+(+ ", " _+:+:+:+:+:+:+<+[+}+|+1+2+ 3+4+5+6+7+8+9+0+a+b+b+b+c+ ", " d+:+:+:+:+:+:+:+e+f+g+h+i+ j+k+l+m+n+b+b+b+b+b+b+b+o+ ", " p+:+:+q+r+s+t+u+v+D.n.E.w+x+ y+z+A+B+C+D+E+F+G+0+b+b+b+H+ ", " I+J+K+L+M+N+u+u+O+P+E.F.W.Q+R+S+T+U+m+V+W+X+Y+Y+Y+Y+Z+`+ @.@ ", " +@@@#@$@%@&@u+u+u+*@F.)+X.!+=@-@;@>@,@'@)@!@~@{@]@Y+Y+Y+Y+^@ ", " /@@@(@_@:@<@u+u+u+[@}@X.|@=@-@B+C+1@2@3@4@5@5@5@6@7@{@Y+Y+8@ ", " 9@L+0@N+u+u+u+u+u+a@b@c@d@B+C+e@f@g@h@i@j@5@5@5@5@5@k@l@ ", " m@$@%@&@u+u+u+u+u+u+u+n@o@p@q@r@s@t@u@v@w@x@y@5@5@5@5@z@ ", " A@:@<@u+u+u+u+u+u+u+u+u+B@C@D@E@F@G@H@I@J@K@L@5@5@5@M@ ", " N@<@O@P@P@O@Q@u+u+u+u+u+R@S@T@U@V@W@X@Y@J@J@Z@`@5@ # ", ".#.#+#@###$#%#&#$#*#=#-#;#u+>#,#'#)#!#u@v@w@~#.#{#]#^#/# ", ".# .#(#_#:#<#[#}#|#1#2#3#4#5#6#7#8#9#0#a#~#.#b#c#d#e# +#.#.#", ".# f#.# g#h#i#j#k#l#m#n#o#p#T@q#r#s#t#u#~#.#v#w#x#.#.#.#+#f#", ".# .#.# y#z#A#B#C#P@D#E#F#G#)#H#I#J#K#L#~#.#M# .#.#N#.# ", ".#.#.#N# O#P#Q#R#P@S#.#T#U#E@V#W#X#Y#Z#`#.#.#.#N# .#.#.#", " $.$+$@$#$T@U@$$%$&$*$=$ ", " -$;$>$,$ ", " "}; debian/rules0000775000000000000000000000066312250226561010256 0ustar #!/usr/bin/make -f export REPACK_SH=$(CURDIR)/debian/repack.sh %: dh $@ --with python2,scour override_dh_auto_install: dh_auto_install -- \ --install-lib=/usr/lib/devede \ --root=$(CURDIR)/debian/devede/ override_dh_clean: dh_clean -Xhtml/menu.html~ rm -rf build/ locale/ override_dh_install: dh_install -Xdevedesans.ttf rm -f debian/devede/usr/share/doc/devede/html/menu.html~ get-orig-source: uscan --force-download debian/devede.10000664000000000000000000000173712250226561010517 0ustar .IX Title "devede 1" .TH devede 1 "2009-08-25" "" "" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" \&\fBdevede\fR \- A simple application to create Video DVDs .SH "SYNOPSIS" .IX Header "SYNOPSIS" .B devede .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\fBDeVeDe\fR allows users to create Video DVDs, suitable for home players, \ from any number of video files, in any of the formats supported by Mplayer. .PP It also allows user to create subtitles and even animated menus. .PP \&\fBDeVeDe\fR has been written in Python and GTK+ and after the \ installation the application is available from the Applications menu. .SH "AUTHOR" .IX Header "AUTHOR" \fBDeVeDe\fR was written by Sergio Costas \ and Peter Gill . .PP This manual was provided by Alessio Treglia \ for the Ubuntu project (and may be used by others). debian/devede.doc-base0000664000000000000000000000036712250226561012032 0ustar Document: devede Title: DeVeDe documentation Author: Sergio Costas Abstract: Documentation reference for DeVeDe. Section: Video Format: HTML Index: /usr/share/doc/devede/html/index.html Files: /usr/share/doc/devede/html/* debian/devede.install0000664000000000000000000000004412250226561012013 0ustar debian/devede.xpm usr/share/pixmaps debian/devede.changelogs0000664000000000000000000000003012250226561012452 0ustar docs/html/versions.html debian/repack.local0000664000000000000000000000007712250226561011456 0ustar SUFFIX=~ds1 rm debian/ \ build/ \ locale/ \ html/menu.html~ debian/compat0000664000000000000000000000000212250226561010367 0ustar 7 debian/watch0000664000000000000000000000027412250226561010225 0ustar version=3 opts="uversionmangle=s/-/./,dversionmangle=s/~ds.*//" \ http://www.rastersoft.com/programas/devede.html \ ../descargas/devede-(.*).tar.bz2 \ debian sh debian/repack.stub debian/copyright0000664000000000000000000000236412250226561011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: DeVeDe Upstream-Contact: Sergio Costas Source: http://www.rastersoft.com/programas/devede.html Files: * Copyright: 2006-2011, Raster Software Vigo (Sergio Costas) 2006-2009, Peter Gill License: GPL-3+ Files: debian/* Copyright: 2009-2012, Alessio Treglia 2006-2009, Christian Marillat License: GPL-3+ License: GPL-3+ 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 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. Comment: On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. . You should have received a copy of the GNU General Public License along with this program. If not, see .