debian/0000755000000000000000000000000012130556723007172 5ustar debian/source/0000755000000000000000000000000012130556723010472 5ustar debian/source/format0000644000000000000000000000001412130556723011700 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212130556723010370 0ustar 8 debian/changelog0000644000000000000000000000110012130556723011034 0ustar emacs-window-layout (1.2-1) unstable; urgency=low * New upstream release. * fix startup script (Closes: #663399) * drop DMUA filed. * fix emacs dependency to fit wheezy. -- KURASHIKI Satoru Tue, 09 Apr 2013 00:00:52 +0900 emacs-window-layout (1.1-2) unstable; urgency=low * get rid of xemacs and emacs. -- KURASHIKI Satoru Fri, 18 Nov 2011 20:54:48 +0900 emacs-window-layout (1.1-1) unstable; urgency=low * Initial release (Closes: #645341) -- KURASHIKI Satoru Sun, 16 Oct 2011 00:21:49 +0900 debian/emacsen-startup0000644000000000000000000000207612130556723012235 0ustar ;; -*-emacs-lisp-*- ;; ;; Emacs startup file, e.g. /etc/emacs/site-start.d/50emacs-window-layout.el ;; for the Debian emacs-window-layout package ;; ;; Originally contributed by Nils Naumann ;; Modified by Dirk Eddelbuettel ;; Adapted for dh-make by Jim Van Zandt ;; The emacs-window-layout package follows the Debian/GNU Linux 'emacsen' policy and ;; byte-compiles its elisp files for each 'emacs flavor' (emacs19, ;; xemacs19, emacs20, xemacs20...). The compiled code is then ;; installed in a subdirectory of the respective site-lisp directory. ;; We have to add this to the load-path: (let ((package-dir (concat "/usr/share/" (symbol-name debian-emacs-flavor) "/site-lisp/emacs-window-layout"))) ;; If package-dir does not exist, the emacs-window-layout package must have ;; removed but not purged, and we should skip the setup. (when (file-directory-p package-dir) (if (fboundp 'debian-pkg-add-load-path-item) (debian-pkg-add-load-path-item package-dir)))) debian/install0000644000000000000000000000010012130556723010552 0ustar window-layout.el usr/share/emacs/site-lisp/emacs-window-layout/ debian/emacsen-install0000644000000000000000000000256312130556723012202 0ustar #! /bin/sh -e # /usr/lib/emacsen-common/packages/install/emacs-window-layout # Written by Jim Van Zandt , borrowing heavily # from the install scripts for gettext by Santiago Vila # and octave by Dirk Eddelbuettel . FLAVOR=$1 PACKAGE=emacs-window-layout if [ ${FLAVOR} = emacs ]; then exit 0; fi if [ ${FLAVOR} = emacs20 -o ${FLAVOR} = emacs21 ]; then exit 0; fi if [ ${FLAVOR} = xemacs20 -o ${FLAVOR} = xemacs21 ]; then exit 0; fi echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR} #FLAVORTEST=`echo $FLAVOR | cut -c-6` #if [ ${FLAVORTEST} = xemacs ] ; then # SITEFLAG="-no-site-file" #else # SITEFLAG="--no-site-file" #fi FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile" ELDIR=/usr/share/emacs/site-lisp/${PACKAGE} ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} # Install-info-altdir does not actually exist. # Maybe somebody will write it. if test -x /usr/sbin/install-info-altdir; then echo install/${PACKAGE}: install Info links for ${FLAVOR} install-info-altdir --quiet --section "" "" --dirname=${FLAVOR} /usr/share/info/${PACKAGE}.info.gz fi install -m 755 -d ${ELCDIR} cd ${ELDIR} FILES=`echo *.el` cp ${FILES} ${ELCDIR} cd ${ELCDIR} cat << EOF > path.el (setq load-path (cons "." load-path) byte-compile-warnings nil) EOF ${FLAVOR} ${FLAGS} ${FILES} rm -f *.el path.el exit 0 debian/watch0000644000000000000000000000020712130556723010222 0ustar # Compulsory line, this is a version 3 file version=3 http://githubredir.debian.net/github/kiwanami/emacs-window-layout /v(.*).tar.gz debian/copyright0000644000000000000000000000216212130556723011126 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: emacs-window-layout Source: https://github.com/kiwanami/emacs-window-layout Files: * Copyright: 2010-2013 SAKURAI, Masashi License: GPL-3.0+ Files: debian/* Copyright: 2011-2013 KURASHIKI Satoru 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". debian/control0000644000000000000000000000121612130556723010575 0ustar Source: emacs-window-layout Section: lisp Priority: extra Maintainer: KURASHIKI Satoru Build-Depends: debhelper (>= 8.0.0), emacs24 | emacs23 Standards-Version: 3.9.3 Homepage: https://github.com/kiwanami/emacs-window-layout Vcs-Git: git://anonscm.debian.org/collab-maint/emacs-window-layout.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/emacs-window-layout.git Package: emacs-window-layout Architecture: all Depends: ${misc:Depends}, emacs24 | emacs23 Description: window layout manager for emacs This elisp library provides functions to split a frame or window into some windows according to a layout recipe. debian/rules0000755000000000000000000000067212130556723010257 0ustar #!/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 %: dh $@ debian/emacsen-remove0000644000000000000000000000120312130556723012017 0ustar #!/bin/sh -e # /usr/lib/emacsen-common/packages/remove/emacs-window-layout FLAVOR=$1 PACKAGE=emacs-window-layout if [ ${FLAVOR} = emacs20 -o ${FLAVOR} = emacs21 ]; then exit 0; fi if [ ${FLAVOR} = xemacs20 -o ${FLAVOR} = xemacs21 ]; then exit 0; fi if [ ${FLAVOR} != emacs ]; then if test -x /usr/sbin/install-info-altdir; then echo remove/${PACKAGE}: removing Info links for ${FLAVOR} install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/share/info/emacs-window-layout.info.gz fi echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR} rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE} fi debian/dirs0000644000000000000000000000005712130556723010060 0ustar usr/share/emacs/site-lisp/emacs-window-layout/