Bug#723764: mock: Redhat PAM config doesn't work with Debian

2013-09-19 Thread Tyler Trafford
Package: mock
Version: 1.1.33-1
Severity: normal

The PAM config installed to /etc/pam.d/mock produces lots of log
messages (errors) because it is intended for a Redhat system.

The attached file when added to the quilt patches fixes the issue.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 3.10-2-686-pae (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 
Tyler Trafford
--- a/etc/pam/mock
+++ b/etc/pam/mock
@@ -5,9 +5,9 @@
 #auth  sufficient  pam_wheel.so trust use_uid
 # Uncomment the following line to require a user to be in the "wheel" group.
 #auth  requiredpam_wheel.so use_uid
-auth   include system-auth
+auth   include common-auth
 accountsufficient  pam_succeed_if.so user ingroup mock 
use_uid quiet
-accountinclude system-auth
-password   include system-auth
-sessioninclude system-auth
+accountinclude common-account
+password   include common-password
+sessioninclude common-session
 sessionoptionalpam_xauth.so


Bug#723673: mock: Incorrect directory permissions

2013-09-19 Thread Tyler Trafford
Here is the debian/postinst from the old version of the Debian mock
package:

#!/bin/sh
# postinst script for mock

set -e

case "$1" in
configure)
groupadd --system mock || {
# groupadd failed. Why?
if ! getent group mock >/dev/null ; then
echo "Could not create system group mock." >&2
exit 1
fi
# well, the group is there, so just ignore the error
}

if ! dpkg-statoverride --list /var/cache/mock >/dev/null; then
dpkg-statoverride --update --add root mock 02775
/var/cache/mock
fi

if ! dpkg-statoverride --list /var/lib/mock >/dev/null; then
dpkg-statoverride --update --add root mock 02775
/var/lib/mock
fi
    ;;
esac

#DEBHELPER#

exit 0

-- 
Tyler Trafford


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#547171: debhelper version and compat

2013-04-18 Thread Tyler Trafford
I've been testing this (with mock) and it seems great.

I can see no ill effects when the debhelper version requirements (in
control and compat) are lowered to 8.  This makes it so the package can
be rebuilt for squeeze when necessary.
-- 
Tyler Trafford


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#506739: jasper: fails to manipulate some '.jp2' (JPEG-2000) files

2009-09-01 Thread Tyler Trafford
This bug seems to be caused by a Debian applied patch.

The following change is made to src/libjasper/base/jas_stream.c:

/* Choose a file name. */
-   tmpnam(obj->pathname);
+   snprintf(obj->pathname, L_tmpnam, "%stmp.XX", P_tmpdir);


Since the temp directory used is "/tmp", and $TEMPDIR is ignored, this
tries to create files as "/tmptmp.*" which won't work most of the time.

Changing it to instead use:


/* Choose a file name. */
-   tmpnam(obj->pathname);
+   snprintf(obj->pathname, L_tmpnam, "%s/tmp.XX", P_tmpdir);


resolves the issue. (note '/' after '%s)
-- 
Tyler Trafford



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#518028: getlive: fails to retrieve mail

2009-03-03 Thread Tyler Trafford
Package: getlive
Version: 0.58~cvs20081219-1
Severity: grave
Justification: renders package unusable

A change in Hotmail now causes getlive to die with this message:

GetLive died with message: 'No folders detected. Likely the page
structure has changed.
at /usr/bin/getlive line 1303.
'.

The problem is fixed in CVS.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages getlive depends on:
ii  curl 7.18.2-8Get a file from an HTTP, HTTPS or 
ii  liburi-perl  1.37+dfsg-1 Manipulates and accesses URI strin
ii  perl 5.10.0-19   Larry Wall's Practical Extraction 

Versions of packages getlive recommends:
ii  exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon

getlive suggests no packages.

-- no debconf information

-- 
Tyler Trafford

A sect or party is an elegant incognito devised to save a man from
the vexation of thinking.
-- Ralph Waldo Emerson, Journals, 1831



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#489910: getlive unable to download messages- fixed upstream

2008-07-08 Thread Tyler Trafford
Package: getlive
Version: 0.56-1
Severity: grave
Justification: renders package unusable

This version of getlive can no longer download messages because of
server-side changes.  A new version, 0.57, has been released by upstream
which fixes this.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages getlive depends on:
ii  curl   7.18.2-5  Get a file from an HTTP, HTTPS or 
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  perl   5.10.0-11 Larry Wall's Practical Extraction 

Versions of packages getlive recommends:
ii  exim4-daemon-light [mail-tran 4.69-5+b1  lightweight Exim MTA (v4) daemon

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#433414: packaging for 'getlive'

2008-05-22 Thread Tyler Trafford
I have refreshed my personal packaging[1] of this software[2].  It contains
some patches to make the app behave better in a Unixish environment.  It
also has a manpage.

[1] http://none.cs.umass.edu/~trafford/getlive/
[2] http://sourceforge.net/projects/getlive/
-- 
Tyler Trafford


signature.asc
Description: Digital signature


Bug#433414: getlive package

2007-10-28 Thread Tyler Trafford
Package for 'getlive' at:
http://none.cs.umass.edu/~trafford/getlive
-- 
Tyler Trafford

A sect or party is an elegant incognito devised to save a man from
the vexation of thinking.
-- Ralph Waldo Emerson, Journals, 1831


signature.asc
Description: Digital signature


Bug#408548: further info

2007-03-07 Thread Tyler Trafford
I should have mentioned before:

To reproduce this you need to delete your currently existing
~/.evolution directory.  So this is a large problem for people running
evolution for the first time, in that no SMIME certs can be verified.
-- 
Tyler Trafford


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#408548: new location for libnssckbi.so effects evolution

2007-01-26 Thread Tyler Trafford
Package: evolution
Version: 2.6.3-3

Evolution needs to be able to open the file 'libnssckbi.so' to read the
list of default root CAs at profile creation time, and when populating
the 'Authorities' list in the gui.

The file is looked for in directories mentioned in:

smime/lib/e-cert-db.c

-in the source tree.

Since the file was recently moved to /usr/lib/xulrunner, it won't be
found.  The simplest solution would probably be to set
MOZILLA_NSS_LIB_DIR=/usr/lib/xulrunner at build-time.


libnss3-0d 1.8.0.9-1


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]