debian/0000755000000000000000000000000012033516625007171 5ustar debian/copyright0000644000000000000000000000263311364030441011121 0ustar This package was debianized by: Fathi Boudra on Tue, 11 Aug 2009 09:55:23 +0200. It was downloaded from: http://freshmeat.net/projects/libutempter Upstream Author: Dmitry V. Levin Copyright: Copyright (C) 2001-2007 Dmitry V. Levin License: This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU Lesser General Public License can be found in: `/usr/share/common-licenses/LGPL-2.1' `/usr/share/common-licenses/LGPL-3' The Debian packaging is: Copyright (C) 2009-2010 Fathi Boudra and is licensed under the GPL version 2.1 or any later version, see `/usr/share/common-licenses/GPL-3'. debian/libutempter0.postinst0000644000000000000000000000066011530454634013416 0ustar #!/bin/sh # postinst script for libutempter set -e case "$1" in configure) getent group | grep -q "^utempter:" || ( echo "Creating utempter group..." ; addgroup --quiet --system utempter) chown root:utempter /usr/lib/utempter ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/libutempter-dev.docs0000644000000000000000000000000711364030225013141 0ustar README debian/libutempter0.install0000644000000000000000000000006311364030225013165 0ustar usr/lib/libutempter.so.* usr/lib/utempter/utempter debian/source/0000755000000000000000000000000011364031361010464 5ustar debian/source/format0000644000000000000000000000001411364031361011672 0ustar 3.0 (quilt) debian/libutempter0.postrm0000644000000000000000000000067711364030225013056 0ustar #!/bin/sh # postrm script for libutempter set -e case "$1" in purge) if [ -x /usr/sbin/delgroup ]; then echo "Deleting utempter group..." delgroup --quiet --system utempter > /dev/null || true fi ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/changelog0000644000000000000000000000251112033516625011042 0ustar libutempter (1.1.5-4build1) quantal; urgency=low * Rebuild for new armel compiler default of ARMv5t. -- Colin Watson Fri, 05 Oct 2012 09:43:01 +0100 libutempter (1.1.5-4) unstable; urgency=low * Use getent instead of grep /etc/group. (Closes: #614258) -- Fathi Boudra Mon, 21 Feb 2011 14:10:59 +0200 libutempter (1.1.5-3) unstable; urgency=low * Switch to dpkg-source 3.0 (quilt) format. * Update debian/control: - Bump debhelper build dependency version to 7.4.15. - Bump Standards-Version to 3.8.3 (no changes needed). * Update debian/rules: - Enable parallel build (). - List missing files (). - Call chown before chmod. - Change utempter permissions to world-readable (2755). (Closes: #573015) * Update debian/libutempter0.lintian-overrides file. * Add debian/libutempter0.symbols file. -- Fathi Boudra Thu, 22 Apr 2010 14:19:47 +0300 libutempter (1.1.5-2) unstable; urgency=low * Update debian/control: - Add dependency on adduser to libutempter0. - Bump Standards-Version to 3.8.3 (no changes needed). -- Fathi Boudra Sat, 29 Aug 2009 09:52:07 +0200 libutempter (1.1.5-1) unstable; urgency=low * Initial release. (Closes: #541021) -- Fathi Boudra Tue, 11 Aug 2009 09:55:23 +0200 debian/libutempter0.lintian-overrides0000644000000000000000000000020511364034240015154 0ustar # This is intentional, we want utempter with these permissions. libutempter0: setgid-binary usr/lib/utempter/utempter 2755 root/utmp debian/libutempter-dev.install0000644000000000000000000000010411364030225013655 0ustar usr/include/utempter.h usr/lib/libutempter.a usr/lib/libutempter.so debian/libutempter0.symbols0000644000000000000000000000050411364034622013214 0ustar libutempter.so.0 libutempter0 #MINVER# UTEMPTER_1.1@UTEMPTER_1.1 1.1.5 addToUtmp@Base 1.1.5 removeFromUtmp@Base 1.1.5 removeLineFromUtmp@Base 1.1.5 utempter_add_record@UTEMPTER_1.1 1.1.5 utempter_remove_added_record@UTEMPTER_1.1 1.1.5 utempter_remove_record@UTEMPTER_1.1 1.1.5 utempter_set_helper@UTEMPTER_1.1 1.1.5 debian/control0000644000000000000000000000211711530453272010574 0ustar Source: libutempter Priority: optional Maintainer: Debian Krap Maintainers Uploaders: Fathi Boudra Build-Depends: debhelper (>= 7.4.15) Standards-Version: 3.9.1 Section: libs Homepage: http://freshmeat.net/projects/libutempter Package: libutempter-dev Section: libdevel Architecture: any Depends: libutempter0 (= ${binary:Version}), ${misc:Depends} Description: A privileged helper for utmp/wtmp updates (development) The libutempter library provides interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files. . This package contains development files required to build utempter-based software. Package: libutempter0 Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, adduser Description: A privileged helper for utmp/wtmp updates (runtime) The libutempter library provides interface for terminal emulators such as screen and xterm to record user sessions to utmp and wtmp files. . The utempter is a privileged helper used by libutempter library to manipulate utmp and wtmp files. debian/rules0000755000000000000000000000036411364031321010243 0ustar #!/usr/bin/make -f %: dh $@ --parallel --list-missing override_dh_fixperms: dh_fixperms chown root:utmp debian/libutempter0/usr/lib/utempter/utempter chmod 2755 debian/libutempter0/usr/lib/utempter/utempter .PHONY: override_dh_auto_test debian/compat0000644000000000000000000000000211364030225010360 0ustar 7