Bug#634707: xserver-xorg-input-joystick: debian/control uses hardcoded list of kFreeBSD architectures

2011-07-19 Thread Robert Millan
Package: xserver-xorg-input-joystick
Severity: wishlist
User: debian-de...@lists.debian.org
Usertags: kfreebsd-any

The debian/control file in xserver-xorg-input-joystick uses a hardcoded list of 
kfreebsd-*
architectures (e.g "kfreebsd-i386 kfreebsd-amd64") to specify a package
relationship (most likely Build-Depends) that isn't specific to i386
or amd64 hardware.  I.e. something like:

  Build-Depends: libfoo-dev [kfreebsd-i386 kfreebsd-amd64]

Since this relationship would apply all the same for kfreebsd-* architectures
other than kfreebsd-i386 or kfreebsd-amd64 (like the upcoming kfreebsd-mipsel
port), please consider using dpkg wildcards instead.  For example:

  Build-Depends: libfoo-dev [kfreebsd-any]

Thanks!



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qioyp-000a5v...@aybabtu.com



Incomplete upload found in Debian upload queue

2011-07-19 Thread Debian FTP Masters
Probably you are the uploader of the following file(s) in
the Debian upload queue directory:
  libpciaccess_0.12.1-1.1.dsc
  libpciaccess_0.12.1.orig.tar.gz
This looks like an upload, but a .changes file is missing, so the job
cannot be processed.

If no .changes file arrives within 23:28:37, the files will be deleted.

If you didn't upload those files, please just ignore this message.

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qje5d-0002gj...@franck.debian.org



xorg: Changes to 'ubuntu'

2011-07-19 Thread Christopher Halse Rogers
 debian/changelog |9 +
 debian/rules |   26 --
 2 files changed, 21 insertions(+), 14 deletions(-)

New commits:
commit 78abf4acc8963b2c055b3780f6a3a1ea0b8a2181
Author: Christopher James Halse Rogers 
Date:   Tue Jul 19 17:37:01 2011 +1000

Drop manual doc directory symlinking.

It's a bit dangerous, and it's caused LP #812665.  We can let
pkgbinarymangler handle this for us now.

diff --git a/debian/changelog b/debian/changelog
index e12b0c3..9562104 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+xorg (1:7.6+7ubuntu3) oneiric; urgency=low
+
+  * debian/rules:
+- Reverse the symlinking of /usr/share/doc directories to x11-common.
+  This should now be handled automatically by pkgbinarymangler, and the
+  directory symlink now causes file conflicts.  (LP: #812665)
+  
+ -- Christopher James Halse Rogers   Tue, 19 Jul 2011 
17:32:01 +1000
+
 xorg (1:7.6+7ubuntu2) oneiric; urgency=low
 
   * debian/local/Xsession.d/60x11-common_xdg_path: Add session script to
diff --git a/debian/rules b/debian/rules
index 5304491..44aba1c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -78,14 +78,13 @@ binary-indep: build install
dh_lintian
dh_link
dh_compress
-   t=x11-common; \
-   for p in $$(dh_listpackages -i -N$$t); do \
- rm -rf debian/$$p/usr/share/doc/$$p; \
- ln -s $$t debian/$$p/usr/share/doc/$$p; \
+   set -e ;\
+   for p in $$(dh_listpackages -i); do \
  ( \
-   echo "# doc dir is now a symlink to $$p"; \
-   echo 'if [ "$$1" = upgrade ] && [ ! -L /usr/share/doc/'$$p' ]; 
then'; \
-   echo "rm -rf /usr/share/doc/$$p"; \
+   echo "# Undo doc-dir symlinking.  Leave this to pkgbinarymangler"; \
+   echo "# This can be removed after the next LTS" ; \
+   echo 'if [ "$$1" = upgrade ] && [ -L /usr/share/doc/'$$p' ]; then'; 
\
+   echo "rm -f /usr/share/doc/$$p"; \
echo "fi"; \
  ) >> debian/$$p.preinst.debhelper; \
done
@@ -121,14 +120,13 @@ endif
dh_link
dh_strip
dh_compress
-   t=x11-common; \
-   for p in $$(dh_listpackages -s -N$$t); do \
- rm -rf debian/$$p/usr/share/doc/$$p; \
- ln -s $$t debian/$$p/usr/share/doc/$$p; \
+   set -e ;\
+   for p in $$(dh_listpackages -a); do \
  ( \
-   echo "# doc dir is now a symlink to $$p"; \
-   echo 'if [ "$$1" = upgrade ] && [ ! -L /usr/share/doc/'$$p' ]; 
then'; \
-   echo "rm -rf /usr/share/doc/$$p"; \
+   echo "# Undo doc-dir symlinking.  Leave this to pkgbinarymangler."; 
\
+   echo "# This can be removed after the next LTS" ; \
+   echo 'if [ "$$1" = upgrade ] && [ -L /usr/share/doc/'$$p' ]; then'; 
\
+   echo "rm -f /usr/share/doc/$$p"; \
echo "fi"; \
  ) >> debian/$$p.preinst.debhelper; \
done


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qjlpx-00044c...@vasks.debian.org



xorg: Changes to 'ubuntu'

2011-07-19 Thread Bryce Harrington
 debian/changelog |9 -
 debian/control   |3 +--
 2 files changed, 9 insertions(+), 3 deletions(-)

New commits:
commit 9b17062301023ef65b225f07e245343810e39075
Author: Bryce Harrington 
Date:   Tue Jul 19 18:20:50 2011 -0700

Depends on xdiagnose so it will always be installed

diff --git a/debian/changelog b/debian/changelog
index 9562104..a36f106 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,17 @@
+xorg (1:7.6+7ubuntu4) oneiric; urgency=low
+
+  * debian/control:  Add Depends on xdiagnose, to ensure it always gets
+installed.
+
+ -- Bryce Harrington   Tue, 19 Jul 2011 18:19:24 -0700
+
 xorg (1:7.6+7ubuntu3) oneiric; urgency=low
 
   * debian/rules:
 - Reverse the symlinking of /usr/share/doc directories to x11-common.
   This should now be handled automatically by pkgbinarymangler, and the
   directory symlink now causes file conflicts.  (LP: #812665)
-  
+
  -- Christopher James Halse Rogers   Tue, 19 Jul 2011 
17:32:01 +1000
 
 xorg (1:7.6+7ubuntu2) oneiric; urgency=low
diff --git a/debian/control b/debian/control
index 2e69ccd..9e77e5d 100644
--- a/debian/control
+++ b/debian/control
@@ -16,8 +16,7 @@ Vcs-Browser: http://git.debian.org/?p=pkg-xorg/debian/xorg.git
 Package: x11-common
 Architecture: all
 Multi-Arch: foreign
-Depends: ${misc:Depends}, lsb-base (>= 1.3-9ubuntu2)
-Recommends: xdiagnose
+Depends: ${misc:Depends}, lsb-base (>= 1.3-9ubuntu2), xdiagnose
 Description: X Window System (X.Org) infrastructure
  x11-common contains the filesystem infrastructure required for further
  installation of the X Window System in any configuration; it does not


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qjlyf-0004kf...@vasks.debian.org



Bug#632772: [why not at least try first? ] Re: Bug#632772: Wheezy: KDE hangs on logout

2011-07-19 Thread T Elcor
--- On Mon, 7/18/11, Will Set  wrote:

> Unless an issue is trust of debian non-free repo, why not
> try the 
> firmware-nonfree package seeing if it solves your issue?
> You always have the option to purge the package and remove
> non-free from your 
> sources.list, if you so choose.

I installed firmware-linux-nonfree and it appears it did resolve both of the 
original problems: KDE logout seems to be fine now and KDE does remember the 
resolution settings.

Thanks




-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1311134498.71247.yahoomailclas...@web121906.mail.ne1.yahoo.com