[Bug 2059155] Re: nauty FTBFS on armhf

2024-04-03 Thread Doug Torrance
This is fixed in nauty 2.8.8+ds-5, which I just uploaded to Debian
unstable.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2059155

Title:
  nauty FTBFS on armhf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nauty/+bug/2059155/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1932140] Re: code confuses identity and equality

2024-03-16 Thread Doug Torrance
** Changed in: mpmath (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1932140

Title:
  code confuses identity and equality

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mpmath/+bug/1932140/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1953273] Re: macaulay2 has unmet dependencies

2021-12-09 Thread Doug Torrance
Whatever was causing this bug has been resolved, and Macaulay2 is
building again!  For example:
https://launchpad.net/ubuntu/+source/macaulay2/1.19.1+ds-2/+build/22472620

** Changed in: macaulay2 (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1953273

Title:
  macaulay2 has unmet dependencies

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/macaulay2/+bug/1953273/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1953273] [NEW] macaulay2 has unmet dependencies

2021-12-05 Thread Doug Torrance
Public bug reported:

From https://launchpadlibrarian.net/572401507/buildlog_ubuntu-jammy-
amd64.macaulay2_1.19.1+ds-2_BUILDING.txt.gz:

Install macaulay2 build dependencies (apt-based resolver)
-

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 normaliz-bin : Depends: libnormaliz3 (= 3.8.9+ds-0.1build1) but it is not 
going to be installed
Depends: libeantic0 (>= 0.1.2) but it is not going to be 
installed
Depends: libflint-2.8.2 (>= 2.8.2) but it is not installable
Depends: libflint-arb2 (>= 1:2.21.1) but it is not going to be 
installed
E: Unable to correct problems, you have held broken packages.
apt-get failed.
E: Package installation failed

** Affects: macaulay2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1953273

Title:
  macaulay2 has unmet dependencies

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/macaulay2/+bug/1953273/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1903548] Re: nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

2021-10-29 Thread Doug Torrance
Done!  I've updated the test case example so that it actually acts on a
specific file in graph6 format, and we see what happens both before and
after the patch.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1903548

Title:
  nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nauty/+bug/1903548/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1903548] Re: nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

2021-10-29 Thread Doug Torrance
** Description changed:

  [Impact]
  Running nauty-biplabg in focal always results in an error.  In particular, it 
always complains that a digraph has been input even if this is not the case.
  
  This is due to the following code in nauty:
  
  int
  main(int argc, char *argv[])
  {
- char *infilename,*outfilename;
- FILE *infile,*outfile;
- boolean badargs,quiet;
-   int j,m,n,argnum;
-   int codetype,outcode;
-   graph *g;
-   nauty_counter nin,nout;
- char *arg,sw;
-   double t;
+ char *infilename,*outfilename;
+ FILE *infile,*outfile;
+ boolean badargs,quiet;
+  int j,m,n,argnum;
+  int codetype,outcode;
+  graph *g;
+  nauty_counter nin,nout;
+ char *arg,sw;
+  double t;
  
  [...snip...]
  
- NODIGRAPHSYET(codetype);
+  NODIGRAPHSYET(codetype);
  
-   if (infilename && infilename[0] == '-') infilename = NULL;
-   infile = opengraphfile(infilename,,FALSE,1);
-   if (!infile) exit(1);
-   if (!infilename) infilename = "stdin";
+  if (infilename && infilename[0] == '-') infilename = NULL;
+  infile = opengraphfile(infilename,,FALSE,1);
+  if (!infile) exit(1);
+  if (!infilename) infilename = "stdin";
  
  The NODIGRAPHSYET macro is defined in a header file and is responsible
  for our error message:
  
  #define NODIGRAPHSYET(code) if (((code))) \
-   gt_abort(">E Sorry, this program doesn't support digraphs yet.\n")
+   gt_abort(">E Sorry, this program doesn't support digraphs yet.\n")
  
  The variable codetype is not initialized until the call to
  opengraphfile, so if we're unlucky, it might find that DIGRAPH6 bit in
  whatever piece of memory it's pointing to at the time.
  
  This bug results in build failures when building the computer algebra
  software Macaulay2 in focal, as one of its packages calls nauty-biplabg
  when building examples and running tests.  See
  https://github.com/Macaulay2/M2/issues/1408.
  
  This has been fixed in nauty version 2.7 (which is in groovy and hirsute
  already) by moving the call to NODIGRAPHSYET a few lines lower.  See the
  attached patch.
  
  [Test Case]
- (focal-amd64)root@nimmie:~# nauty-biplabg 
- >A biplabg
+ 
+ * Before:
+ $ echo 'ES\o' > foo
+ $ nauty-biplabg -q foo
  >E Sorry, this program doesn't support digraphs yet.
+ 
+ * After:
+ $ echo 'ES\o' > foo
+ $ nauty-biplabg -q foo
+ EBz_
  
  [Where problems could occur]
  None known.  The attached patch is very small.
  
  Further information:
  (focal-amd64)root@nimmie:~# lsb_release -rd
  Description:  Ubuntu 20.04 LTS
  Release:  20.04
  (focal-amd64)root@nimmie:~# apt-cache policy nauty
  nauty:
-   Installed: 2.6r10+ds-1ubuntu1
-   Candidate: 2.6r10+ds-1ubuntu1
-   Version table:
-  *** 2.6r10+ds-1ubuntu1 500
- 500 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages
- 100 /var/lib/dpkg/status
+   Installed: 2.6r10+ds-1ubuntu1
+   Candidate: 2.6r10+ds-1ubuntu1
+   Version table:
+  *** 2.6r10+ds-1ubuntu1 500
+ 500 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages
+ 100 /var/lib/dpkg/status

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1903548

Title:
  nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nauty/+bug/1903548/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938234] Re: Sync macaulay2 1.18+ds-1~exp2 (universe) from Debian experimental (main)

2021-07-27 Thread Doug Torrance
It would be nice to have the latest version of Macaulay2 in impish, but
with the short window between the projected release of bullseye (Aug.
14) and the Debian import freeze (Aug. 19), there may not be time to
upload 1.18 to sid in time to sync to impish.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938234

Title:
  Sync macaulay2 1.18+ds-1~exp2 (universe) from Debian experimental
  (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/macaulay2/+bug/1938234/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938234] [NEW] Sync macaulay2 1.18+ds-1~exp2 (universe) from Debian experimental (main)

2021-07-27 Thread Doug Torrance
Public bug reported:

Please sync macaulay2 1.18+ds-1~exp2 (universe) from Debian experimental
(main)

Changelog entries since current impish version 1.17.1+ds-2:

macaulay2 (1.18+ds-1~exp2) experimental; urgency=medium

  * debian/gbp.conf
- Set default debian-branch to debian/master.
  * debian/patches/hardening.patch
- New patch; Don't override -fstack-protector-strong from dpkg-buildflags.
  * debian/patches/fix-visualize-firefox.patch
- Switch from Forwarded to Applied-Upstream.
  * debian/patches/reproducible-tvalues.patch
- New patch; sort files in d directory when making tvalues.m2.  Otherwise,
  tvalues.m2 is not reproducible.
  * debian/patches/skip-failing-core-tests.patch
- Skip core-tests.m2.
  * debian/patches/skip-failing-package-tests.patch
- Skip new failing tests:
  + check(8, "DiffAlg")
  + check(7, "MultiprojectiveVarieties")
  + check(3, "NumericalImplicitization")
  + check(8, "NumericalImplicitization")
  + check(0, "Topcom")
- Add missing Bug field.
  * debian/salsa-ci.yml
- Allow reprotest to fail in Salsa pipeline.
  * debian/scripts/generate-examples.m2
- Cache new failing examples:
  + GraphicalModelsMLE::solverMLE(...,RealPrecision=>...)
  + MultiprojectiveVarieties::EmbeddedProjectiveVariety ===>
EmbeddedProjectiveVariety
  + SimplicialDecomposability::isSheddingVertex
  + SpecialFanoFourfolds::toGrass(EmbeddedProjectiveVariety)
  + SRdeformations::complement(Complex)
- Add generated examples to debian/examples.
- Set AuxiliaryFiles and CacheExampleOutput options for affected packages
  in debian/patches/use-cached-examples.patch.
- Don't reload package when generating examples unless necessary.  The
  Macaulay2Doc examples were really slowing down the script -- now we only
  need to wait for the first one.
- Improve error handling; only raise an error if we have extra .out files.

 -- Doug Torrance   Tue, 27 Jul 2021 10:43:17
-0400

macaulay2 (1.18+ds-1~exp1) experimental; urgency=medium

  * debian/control
- Add libmpfi-dev and libtbb-dev to Build-Depends; needed for new
  features added upstream.
- Remove imagemagick from Suggests; no longer required by the
  Graphs package as it now uses xdg-open to open generated images.
  * debian/copyright
- Remove paragraph from Cygwin files that have been removed from
  source.
- Add/update paragraphs for new/modified packages.
  * debian/examples
- Add cached examples generated by d/scripts/generate-examples.m2.
  * debian/macaulay2-common.info
- New file; use dh_installinfo to install info files instead of
  dh_install.  This way, we can more easily support builds with
  "nodoc" in DEB_BUILD_OPTIONS.
  * debian/macaulay2-common.lintian-overrides
- Add package-contains-documentation-outside-usr-share-doc
  override for new file.
  * debian/patches
- Refresh for new upstream release.
- Remove patches applied or otherwise made unnecessary upstream.
  + dont-capture-check-core-32-bit.patch
  + dont-capture-diffalg-tests.patch
  + smaller-points-examples.patch
  + use-debian-applications.patch
  * debian/patches/fix-visualize-firefox.patch
- New patch; fix Visualize package in Firefox (symlinks to assets
  weren't working).
  * debian/patches/remove-build-paths-from-docs
- Remove patch; we now cache examples that were causing
  reproducibility issues.
  * debian/patches/skip-failing-{core,package}-tests
- Stop skipping tests that have been fixed upstream and start
  skipping new tests that have caused build errors.
- Better document which tests go with which upstream issues.
  * debian/patches/use-cached-examples.patch
- New patch replacing use-canned-examples.patch.  Set affected
  packages to use cached examples that are generated by
  d/scripts/generate-examples.patch.
  * debian/README.md
- Update descriptions of packages in Suggests.
  * debian/rules
- Export MakeDocumentation variable to support builds with
  "nodoc" in DEB_BUILD_OPTIONS.
- Set installation directory for Emacs files; previously this
  was done in use-dh-elpa.patch.
- Move cached examples generated by d/scripts/generate-examples.m2
  into the build directory so that they may be properly installed
  and then clean up afterwards.
- Use $(MAKE) instead of explicitly calling make.
  * debian/salsa-ci.yml
- Add Salsa pipelines config file.
  * debian/scripts/generate-examples.m2
- New script; generate examples for the documentation for certain
  cases which have been known to cause build errors.  Previously,
  we used canned examples, but cached examples are treated just like
  standard examples that are generated during build.
  * debian/scripts/m2-get-orig-source.sh
- Add support for version numbers contai

[Bug 1903548] Re: nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

2020-11-16 Thread Doug Torrance
Switched the status of this bug to "In Progress".  I'm not sure if I'm
reading the SRU docs correctly -- is this the correct status while
waiting for SRU sponsorship?

** Changed in: nauty (Ubuntu)
   Status: Fix Released => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1903548

Title:
  nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nauty/+bug/1903548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1903548] Re: nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

2020-11-09 Thread Doug Torrance
Here is a debdiff with the patch for an SRU:

nauty (2.6r10+ds-1ubuntu2) focal; urgency=medium

  * debian/patches/upstream-biplabg.patch
- New patch; fix "sorry, this program doesn't support digraphs yet"
  message when running nauty-biplabg (LP: #1903548).

 -- Doug Torrance   Mon, 09 Nov 2020 13:17:32
-0500


** Patch added: "nauty-biplabg.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/nauty/+bug/1903548/+attachment/5432716/+files/nauty-biplabg.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1903548

Title:
  nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nauty/+bug/1903548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1903548] [NEW] nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

2020-11-09 Thread Doug Torrance
Public bug reported:

[Impact]
Running nauty-biplabg in focal always results in an error.  In particular, it 
always complains that a digraph has been input even if this is not the case.

This is due to the following code in nauty:

int
main(int argc, char *argv[])
{
char *infilename,*outfilename;
FILE *infile,*outfile;
boolean badargs,quiet;
int j,m,n,argnum;
int codetype,outcode;
graph *g;
nauty_counter nin,nout;
char *arg,sw;
double t;

[...snip...]

NODIGRAPHSYET(codetype);

if (infilename && infilename[0] == '-') infilename = NULL;
infile = opengraphfile(infilename,,FALSE,1);
if (!infile) exit(1);
if (!infilename) infilename = "stdin";

The NODIGRAPHSYET macro is defined in a header file and is responsible
for our error message:

#define NODIGRAPHSYET(code) if (((code))) \
  gt_abort(">E Sorry, this program doesn't support digraphs yet.\n")

The variable codetype is not initialized until the call to
opengraphfile, so if we're unlucky, it might find that DIGRAPH6 bit in
whatever piece of memory it's pointing to at the time.

This bug results in build failures when building the computer algebra
software Macaulay2 in focal, as one of its packages calls nauty-biplabg
when building examples and running tests.  See
https://github.com/Macaulay2/M2/issues/1408.

This has been fixed in nauty version 2.7 (which is in groovy and hirsute
already) by moving the call to NODIGRAPHSYET a few lines lower.  See the
attached patch.

[Test Case]
(focal-amd64)root@nimmie:~# nauty-biplabg 
>A biplabg
>E Sorry, this program doesn't support digraphs yet.

[Where problems could occur]
None known.  The attached patch is very small.

Further information:
(focal-amd64)root@nimmie:~# lsb_release -rd
Description:Ubuntu 20.04 LTS
Release:20.04
(focal-amd64)root@nimmie:~# apt-cache policy nauty
nauty:
  Installed: 2.6r10+ds-1ubuntu1
  Candidate: 2.6r10+ds-1ubuntu1
  Version table:
 *** 2.6r10+ds-1ubuntu1 500
500 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages
100 /var/lib/dpkg/status

** Affects: nauty (Ubuntu)
 Importance: Undecided
 Status: Fix Released


** Tags: focal

** Patch added: "biplabg.patch"
   
https://bugs.launchpad.net/bugs/1903548/+attachment/5432663/+files/biplabg.patch

** Tags added: focal

** Changed in: nauty (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1903548

Title:
  nauty-biplabg gives "sorry, this program doesn't support digraphs yet"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nauty/+bug/1903548/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1897854] Re: groovy qemu-arm-static: /build/qemu-W3R0Rj/qemu-5.0/linux-user/elfload.c:2317: pgb_reserved_va: Assertion `guest_base != 0' failed.

2020-11-03 Thread Doug Torrance
I'm also running into this trying to set up a pbuilder environment:

$ pbuilder-dist sid armhf create
...
I: Running command: chroot /var/cache/pbuilder/build/430992 
/debootstrap/debootstrap --second-stage
qemu-arm-static: /build/qemu-W3R0Rj/qemu-5.0/linux-user/elfload.c:2317: 
pgb_reserved_va: Assertion `guest_base != 0' failed.
Aborted (core dumped)

This appears to have been fixed upstream [1, 2] in qemu 5.1, which has
been in Debian unstable since August [3], but hasn't been merged into
Ubuntu yet.

[1] https://bugs.launchpad.net/qemu/+bug/1888728
[2] https://github.com/qemu/qemu/commit/c9f8066
[3] 
https://tracker.debian.org/news/1169793/accepted-qemu-151dfsg-1-source-into-unstable/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1897854

Title:
  groovy qemu-arm-static: /build/qemu-W3R0Rj/qemu-5.0/linux-
  user/elfload.c:2317: pgb_reserved_va: Assertion `guest_base != 0'
  failed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1897854/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1706095] Re: Fails test on s390x

2018-07-14 Thread Doug Torrance
This was fixed in Debian version 1.0~git20170606-1, which was merged
into Ubuntu for artful.

** Changed in: mathicgb (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1706095

Title:
  Fails test on s390x

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mathicgb/+bug/1706095/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1742842] Re: Wprefs will not open

2018-01-12 Thread Doug Torrance
This is now fixed in git:

https://salsa.debian.org/wmaker-
team/wmaker/commit/51c5719b67f5d6cdbd96d91424b82ecbe09aee95

** Changed in: wmaker (Ubuntu)
 Assignee: (unassigned) => Doug Torrance (profzoom)

** Changed in: wmaker (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1742842

Title:
  Wprefs will not  open

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1742842/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1742842] Re: Wprefs will not open

2018-01-12 Thread Doug Torrance
You're not stupid at all!  This is definitely a bug.

When the package is built, WPrefs is installed in /usr/share/lib/GNUstep
and the menu points there.  But then for some reason, the Debian/Ubuntu
package *moves* WPrefs to /usr/lib/GNUstep.

I'll upload a new version soon that fixes this and *doesn't* move
WPrefs.  It will be uploaded to Debian and should migrate over to Ubuntu
in time for bionic.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1742842

Title:
  Wprefs will not  open

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1742842/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1706095] Re: Fails test on s390x

2017-08-16 Thread Doug Torrance
This was true for all big-endian architectures, as reported in Debian
bug #862090 [1].

This was fixed in Fedora [2] and the patch was proposed upstream [3] but
has not yet been accepted.

The Fedora patch was applied in version 1.0~git20170606-1, recently
uploaded to sid.

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=862090
[2] 
https://src.fedoraproject.org/rpms/mathicgb/blob/master/f/mathicgb-endian.patch
[3] https://github.com/Macaulay2/mathicgb/pull/9

** Bug watch added: Debian Bug tracker #862090
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=862090

** Also affects: mathicgb (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=862090
   Importance: Unknown
   Status: Unknown

** Changed in: mathicgb (Ubuntu)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1706095

Title:
  Fails test on s390x

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mathicgb/+bug/1706095/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1429495] Re: Kubuntu Vivid 1 Beta 15.04: Wmaker displays menu entry for non installed xterm

2017-03-16 Thread Doug Torrance
xterm was added to wmaker's "Suggests" in the latest package uploaded to
Debian experimental (0.95.8-1~exp1).  This bug should close
automatically once this enters Debian unstable (after the stable freeze)
and then migrates to Ubuntu.

** Changed in: wmaker (Ubuntu)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1429495

Title:
  Kubuntu Vivid 1 Beta 15.04: Wmaker displays menu entry for non
  installed xterm

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1429495/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1072832] Re: Basic window manager functions lost from WindowMaker in Quantal Quetzal 12.10

2017-03-12 Thread Doug Torrance
Closing 4+ year old bug.

** Changed in: wmaker (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1072832

Title:
  Basic window manager functions lost from WindowMaker in Quantal
  Quetzal 12.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1072832/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1030022] Re: Port from legacy Xlib to modern XCB

2017-03-11 Thread Doug Torrance
** Changed in: wmaker (Ubuntu)
   Status: New => Opinion

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1030022

Title:
  Port from legacy Xlib to modern XCB

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz/+bug/1030022/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1562182] Re: missing greeter icon for budgie-desktop

2016-07-11 Thread Doug Torrance
Jeremy -- I have not asked them.  I just opened [1] inquiring if one of
these options would be possible.

[1] https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1602098

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1562182

Title:
  missing greeter icon for budgie-desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1562182/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1602098] [NEW] Merge or declare relationship with unity-greeter-badges

2016-07-11 Thread Doug Torrance
Public bug reported:

Hello!

I maintain the unity-greeter-badges package, which contains quite a few
badges for various window managers and desktop environments.

As suggested by Jeremy Bicha in [1], I would like to inquire whether it
would be possible to either:

(a) merge the badges from the unity-greeter-badges package into unity-
greeter

or

(b) declare a Recommends or Suggests relationship on unity-greeter-
badges

This would make it easier for users of these window managers and desktop
environments to acquire the appropriate badges for Unity Greeter,
without needing to learn about the unity-greeter-badges package somehow
and explicitly installing it.

Thank you!

[1] https://bugs.launchpad.net/ubuntu/+source/unity-greeter-
badges/+bug/1562182

** Affects: unity-greeter (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1602098

Title:
  Merge or declare relationship with unity-greeter-badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1602098/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1562182] Re: missing greeter icon for budgie-desktop

2016-07-10 Thread Doug Torrance
A big advantage of shipping a badge in unity-greeter-badges as opposed
to budgie-desktop (or any window manager/desktop environment package) is
to minimize the diff between the Debian and Ubuntu packages.

The Window Maker and Motif badges were both moved into unity-greeter-
badges for this reason.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1562182

Title:
  missing greeter icon for budgie-desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1562182/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1579830] Re: Requesting sponsorship for fixing #1562182

2016-05-13 Thread Doug Torrance
My apologies if this isn't the usual workflow.  I was mirroring the
usual process in Debian, where one files a separate RFS bug to request
sponsorship.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1579830

Title:
  Requesting sponsorship for fixing #1562182

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1579830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1579830] Re: Requesting sponsorship for fixing #1562182

2016-05-09 Thread Doug Torrance
Here is the binary file mentioned above.

** Attachment added: "custom_budgie-desktop_badge.png"
   
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1579830/+attachment/4659344/+files/custom_budgie-desktop_badge.png

** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1579830

Title:
  Requesting sponsorship for fixing #1562182

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1579830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1579830] [NEW] Requesting sponsorship for fixing #1562182

2016-05-09 Thread Doug Torrance
Public bug reported:

Hello!

I would like to request sponsorship for a new version of the unity-
greeter-badges package, primarily for fixing #1562182.

I've attached a debdiff.  Note that a new binary file, custom_budge-
desktop_badge.png, is also required.  I will attach it to a comment
below.

Thanks!

** Affects: unity-greeter-badges (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: patch

** Attachment added: "unity-greeter-badges.diff"
   
https://bugs.launchpad.net/bugs/1579830/+attachment/4659343/+files/unity-greeter-badges.diff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1579830

Title:
  Requesting sponsorship for fixing #1562182

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1579830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1563623] [NEW] Sync wmforecast 0.10-1 (universe) from Debian unstable (main)

2016-03-29 Thread Doug Torrance
Public bug reported:

Please sync wmforecast 0.10-1 (universe) from Debian unstable (main)

Yahoo! has changed its weather API and wmforecast <= 0.9 is no longer
functional.

Changelog entries since current xenial version 0.9-1:

wmforecast (0.10-1) unstable; urgency=medium

  * New upstream release.
  * debian/control
- Bump Standards-Version to 3.9.7.
- Update Vcs-Browser to use https protocol.
- Update Homepage field.
  * debian/rules
- Enable all hardening flags.

 -- Doug Torrance <dtorra...@piedmont.edu>  Sat, 26 Mar 2016 19:07:16
-0400

** Affects: wmforecast (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1563623

Title:
  Sync wmforecast 0.10-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmforecast/+bug/1563623/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1562182] Re: missing greeter icon for budgie-desktop

2016-03-26 Thread Doug Torrance
You're welcome!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1562182

Title:
  missing greeter icon for budgie-desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1562182/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1562182] Re: missing greeter icon for budgie-desktop

2016-03-26 Thread Doug Torrance
I've created a new version of the package including the Budgie Desktop
badge.  I installed budgie-desktop from the PPA and everything works as
expected.

Note that since the Xenial release is relatively soon, I don't expect
the Ubuntu devs to merge this until afterwards.  So it probably will
first appear in 16.10.


** Branch linked: lp:~profzoom/ubuntu/wily/unity-greeter-
badges/fix-1562182

** Changed in: unity-greeter-badges (Ubuntu)
   Status: New => In Progress

** Changed in: unity-greeter-badges (Ubuntu)
 Assignee: (unassigned) => Doug Torrance (profzoom)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1562182

Title:
  missing greeter icon for budgie-desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1562182/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1562182] Re: missing greeter icon for budgie-desktop

2016-03-25 Thread Doug Torrance
Certainly!

However,  the file you linked is in the wrong format.  It should be a
22x22 PNG file, using /usr/share/unity-greeter/unknown_badge.png as a
guide, with filename custom_budgie-desktop_badge.png.

If you could attach a working badge to this bug report plus license
information, I'd be happy to add it to the package.

Note that I'm just the package maintainer -- I didn't create any of the
other icons.  I could probably fiddle around with Inkscape for some time
and figure out how to do this, but perhaps someone in the Budgie team
would be able to it much quicker.  :)

** Changed in: unity-greeter-badges (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1562182

Title:
  missing greeter icon for budgie-desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1562182/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1475494] Re: Sync wmtop 0.84-10 (universe) from Debian unstable (main)

2016-01-31 Thread Doug Torrance
** Changed in: ubuntu
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1475494

Title:
  Sync wmtop 0.84-10 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1475494/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1475495] Re: Sync wmsysmon 0.7.7-8 (universe) from Debian unstable (main)

2016-01-31 Thread Doug Torrance
** Changed in: ubuntu
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1475495

Title:
  Sync wmsysmon 0.7.7-8 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1475495/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1199420] Re: wmaker cannot close open windows in Saucy

2016-01-16 Thread Doug Torrance
I can't reproduce this.  Plus it's from 2.5 years and several Window
Maker versions ago...

Is this still an issue?

** Changed in: wmaker (Ubuntu)
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1199420

Title:
  wmaker cannot close open windows in Saucy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1199420/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1474465] Re: Sync wmgtemp 1.1-2 (universe) from Debian unstable (main)

2015-07-17 Thread Doug Torrance
** Changed in: ubuntu
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1474465

Title:
  Sync wmgtemp 1.1-2 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1474465/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1475495] [NEW] Sync wmsysmon 0.7.7-8 (universe) from Debian unstable (main)

2015-07-16 Thread Doug Torrance
Public bug reported:

Please sync wmsysmon 0.7.7-8 (universe) from Debian unstable (main)

All changelog entries:

wmsysmon (0.7.7-8) unstable; urgency=medium

  * New maintainer (Closes: #792213).
  * debian/compat
- Bump to 9.
  * debian/control
- Tidy using wrap-and-sort.
- Bump versioned dependency on debhelper to = 9.
- Remove dpatch from Build-Depends.
- Bump Standards-Version to 3.9.6.
- Add Homepage and Vcs-*.
- Lengthen Description.
  * debian/copyright
- Convert to DEP5 format.
  * debian/manpages
- New file.
  * debian/patches/{break,output,src_makefile,makefile-strip}.patch
- Rename from 01-break.dpatch, 02-output.dpatch, 03-src_makefile.dpatch,
  and 04-makefile.dpatch.
- Convert patches from dpatch to quilt
- Add DEP3 headers.
  * debian/patches/makefile-strip.patch
- Patch src/Makefile and not Makefile; the latter does not exist in the
  .orig tarball.
  * debian/patches/unused-{but-set-variable,result}.patch
- New patches; fix compiler warnings.
  * debian/rules
- Update to use dh.
  * debian/source/format
- New file; use 3.0 (quilt).

 -- Doug Torrance dtorra...@monmouthcollege.edu  Sun, 12 Jul 2015
10:43:06 -0600

wmsysmon (0.7.7-7) unstable; urgency=low

  * Add the watch file.
  * Delete automatic strip (Closes: #438276).
  * Modify debian/menu to move application in Apps/System/Monitoring.
  * Modify debian/changelog for not ignoring errors on make clean.

 -- Luca Bedogni m...@lucabedogni.it  Thu, 16 Aug 2007 16:09:43 +0200

wmsysmon (0.7.7-6) unstable; urgency=low

  * Remove a gcc flag (-m486) for a correct build on all architectures
(Closes: #415669).

 -- Luca Bedogni m...@lucabedogni.it  Wed, 21 Mar 2007 22:46:25 +0100

wmsysmon (0.7.7-5) unstable; urgency=low

  * New maintainer (Closes: #390871).
  * Modify copyright for making it more explicative.
  * Add a Makefile and modified the existing one.
  * Add a patch (01-break.dpatch) instead of modifing upstream code as previous
version did.
  * Add another patch (02-output.dpatch) for fixing a typo (Closes: #75036).
  * Modify manpage.
  * Change priority from extra to optional.

 -- Luca Bedogni m...@lucabedogni.it  Fri, 16 Mar 2007 13:45:10 +0100

wmsysmon (0.7.7-4) unstable; urgency=low

  * Orphan package (Closes: #390871).
  * ACK NMUs (Closes: #259912, #347059).

 -- Norbert Tretkowski no...@debian.org  Tue,  2 Jan 2007 23:00:02
+0100

wmsysmon (0.7.7-3.2) unstable; urgency=low

  * Non-maintainer upload.
  * Replace build-dependency on xlibs-dev with an explicit build-dependency
on each required package (Closes: #347059).

 -- Steinar H. Gunderson se...@debian.org  Sat, 21 Jan 2006 14:28:16
+0100

wmsysmon (0.7.7-3.1) unstable; urgency=low

  * Non-maintainer upload.
  * src/wmsysmon.c: Add break at the end of the default label clause
of a switch statement to fix a build failure with GCC 4.0.
Apply patch from Andreas Jochens (Closes: #259912).

 -- Roger Leigh rle...@debian.org  Sun,  4 Sep 2005 16:52:12 +0100

wmsysmon (0.7.7-3) unstable; urgency=low

  * Fix manpage (Closes: #93475, #165944)..
  * Bump up Standards-Version (no changes).
  * Remove -1 diff from source package.
  * Modify description to shut up lintian.

 -- Norbert Tretkowski no...@debian.org  Tue, 12 Aug 2003 02:24:56
+0200

wmsysmon (0.7.7-2) unstable; urgency=low

  * Gnah... wmsysmon binary missing.

 -- Norbert Tretkowski no...@debian.org  Sun, 25 May 2003 11:21:21
+0100

wmsysmon (0.7.7-1) unstable; urgency=low

  * New upstream release (Closes: #168185).

 -- Norbert Tretkowski no...@debian.org  Sun, 25 May 2003 00:14:14
+0100

wmsysmon (0.7.6-4.1) unstable; urgency=low

  * Correct spelling error in description (Closes: #124563).
  * Correct Build-Depends.

 -- Norbert Tretkowski no...@debian.org  Sat, 16 Feb 2002 22:04:51
+0100

wmsysmon (0.7.6-4) unstable; urgency=low

  * Add manpage.

 -- Norbert Tretkowski no...@debian.org  Sun, 15 Apr 2001 16:09:21
+0100

wmsysmon (0.7.6-3) unstable; urgency=low

  * Correct Build-Depends (Closes: #92685).

 -- Norbert Tretkowski no...@debian.org  Sat,  7 Apr 2001 18:31:44
+0100

wmsysmon (0.7.6-2) unstable; urgency=low

  * Link against xlib6g 3.3.6, not 4.0.1 (Closes: #74792, #74808).

 -- Norbert Tretkowski no...@nobse.de  Tue, 31 Oct 2000 21:35:41 +0200

wmsysmon (0.7.6-1) unstable; urgency=low

  * Adopt package (Closes: #68140).
  * Link against libxpm4 (Closes: #67951).
  * Update to Standards-Version 3.1.1.

 -- Norbert Tretkowski no...@nobse.de  Thu, 14 Oct 2000 15:41:34 +0200

wmsysmon (0.7.6-0.1) unstable; urgency=low

  * Non-Maintainer upload. This package needs a maintainer!
  * New upstream release.
  * Rebuild with a newer libxpm, the package gets the correct depends on
libxpm4 now (Closes: #67951).
  * Compile with glibc 2.1.94.
  * src/Makefile: Add some variables to fix the default, hardcode
installation paths. The binary now installs in /usr/bin.
  * Many changes in the debian/ dir

[Bug 1475494] [NEW] Sync wmtop 0.84-10 (universe) from Debian unstable (main)

2015-07-16 Thread Doug Torrance
Public bug reported:

Please sync wmtop 0.84-10 (universe) from Debian unstable (main)

All changelog entries:

wmtop (0.84-10) unstable; urgency=medium

  * New maintainer (Closes: #792324).
  * debian/compat
- Bump to 9.
  * debian/control
- Bump versioned dependency on debhelper to = 9.
- Remove dpatch from Build-Depends.
- Bump Standards-Version to 3.9.6.
- Add Vcs-*.
  * debian/copyright
- Convert to DEP5 format.
  * debian/docs
- New file.
  * debian/patches/01_restore_pristine_code.dpatch
- Split into to new quilt patches, comment_strip_of_binary.patch and
  fix_incorrect_memory_usage.patch.
  * debian/patches/10_fix_manpage.dpatch
- Rename as fix_manpage.patch, convert to quilt, and add DEP3 header.
- Fix spelling error.
  * debian/patches/fix_install.patch
- New patch; honor DESTDIR environment variable, create installation
  directories, and install manpage according to FHS.
  * debian/patches/honor_buildflags.patch
- Honor CPPFLAGS, CFLAGS, and LDFLAGS.
  * debian/README.source
- Remove file; unnecessary as package no longer uses dpatch.
  * debian/rules
- Update to use dh.
  * debian/source/format
- New file; use 3.0 (quilt).

 -- Doug Torrance dtorra...@monmouthcollege.edu  Mon, 13 Jul 2015
16:48:58 -0600

wmtop (0.84-9) unstable; urgency=low

  * QA upload.
  * debian/control
- Set maintainer to QA Group.
- Bump Standards-Version to 3.8.0.
  + Add debian/README.source.
- Uncapitalize short description.
- Remove additional spaces from long description (paragraph fill).
- Add ${misc:Depends} to binary package Depends.
  * debian/rules
- Remove 'configure' from PHONY, since the target does not exist anymore.
- Merge 'rm' call into 'dh_clean' one.
  * debian/patches/10_fix_manpage.dpatch
- Fix another minus sign warning.

 -- Sandro Tosi mo...@debian.org  Sun, 28 Dec 2008 17:07:00 +0100

wmtop (0.84-8) unstable; urgency=low

  * debian/control
- Bump Standards-Version to 3.7.3.
- Move Homepage field from binary to source stanza.
- Add build-depend against libxext-dev since libx11-dev will no longer
  depends on it.
- Add dpatch dependency.
  * debian/rules
- Add dpatch stuff.
- Little change to clean target.
- Add direct docs installation.
  * debian/patches/01_restore_pristine_code.dpatch
- Add to restore pristine source code.
  * debian/patches/10_fix_manpage.dpatch
- Add to escape minus signes in manpage (lintian warning).
  * debian/dirs
- Remove.
  * debian/docs
- Remove.
  * debian/copyright
- Clear separation of license and copyright.
- Upstream author, license and copyright indented with 4 spaces.
- Link to local GPLv2 license text fixed.

 -- Sandro Tosi matrixh...@gmail.com  Wed, 09 Jan 2008 20:04:01 +0100

wmtop (0.84-7) unstable; urgency=low

  * Comment strip of binary from upstream Makefile and debian/rules
(Closes: #438278).
  * Add Tony Mancill to Uploaders in debian/control.
  * Remove cruft from bottom of debian/changelog.
  * Update menu section to Applications/System/Monitoring.
  * Update debian/rules to no longer ignore errors from $(MAKE) clean.

 -- tony mancill tmanc...@debian.org  Thu, 16 Aug 2007 22:46:37 -0700

wmtop (0.84-6) unstable; urgency=low

  * debian/watch
- Url correction.

 -- Sandro Tosi matrixh...@gmail.com  Sat, 16 Sep 2006 10:45:42 +0200

wmtop (0.84-5) unstable; urgency=low

  * debian/watch
- Add.
  * debian/compat
- Add, removing DH_COMPAT from debian/rules.
  * debian/rules
- Remove DH_COMPAT and commented dh_* commands.
- Add explicit manpage in dh_installman.
  * wmtop.manpages
- Remove and add the manpage in debian/rules.
  * debian/control
- New maintainer (Closes: #347529).
- Push Standards-Version to 3.7.2.
- Modify long description taking it from webpage.
- Add Homepage field.
  * debian/copyright
- Change site url where to donwload upstream package, and its email
  address.
- Add copyright notes for wmgeneral/*.
- Add me as new maintainer.

 -- Sandro Tosi matrixh...@gmail.com  Sun, 27 Aug 2006 19:07:38 +0200

wmtop (0.84-4) unstable; urgency=low

  * Orphan package.
  * Modify build-depends (s/xlibs-dev/libx11-dev,libxpm-dev/).

 -- Hugo van der Merwe h...@debian.org  Wed, 11 Jan 2006 12:25:47
+0200

wmtop (0.84-3) unstable; urgency=low

  * Fix wmtop memory reported for kernel 2.6 (Closes: #224732)
(Thanks Dwayne C. Litzenberger).

 -- Hugo van der Merwe h...@debian.org  Sat,  3 Jan 2004 23:43:38
+0200

wmtop (0.84-2) unstable; urgency=low

  * Remove /usr/man/man1 dir from package.

 -- Hugo van der Merwe h...@debian.org  Sun, 28 Oct 2001 17:11:24
+0200

wmtop (0.84-1) unstable; urgency=low

  * New upstream release.

 -- Hugo van der Merwe h...@debian.org  Wed, 24 Oct 2001 22:04:38
+0200

wmtop (0.7-2) unstable; urgency=low

  * New maintainer (Closes: #98251).
  * Install upstream man page (Closes: #93474

[Bug 1474465] [NEW] Sync wmgtemp 1.1-2 (universe) from Debian unstable (main)

2015-07-14 Thread Doug Torrance
Public bug reported:

Please sync wmgtemp 1.1-2 (universe) from Debian unstable (main)

All changelog entries:

wmgtemp (1.1-2) unstable; urgency=medium

  * New maintainer (Closes: #779470).
  * debian/compat
- Bump to 9.
  * debian/control
- Bump versioned dependency on debhelper to =9.
- Bump Standards-Version to 3.9.6.
- Update Homepage.
- Add Vcs-*.
  * debian/copyright
- Remove trailing whitespace.
- Add myself to Copyright field for debian/*.
- Update header paragraph.
- Slight reformatting.
- Add entries for wmgeneral source files.
  * debian/patches/000_fix_hypens_in_wmtemp.1.diff
- Rename to fix_hyphens_in_wmgtemp.1.patch, update header to DEP3,
  and refresh.
  * debian/patches/001_sensors.conf.diff
- Rename to sensors.conf.patch, update header to DEP3, and refresh.
  * debian/patches/fix_-Waggressive-loop-optimizations.patch
- Fix compiler warning.
  * debian/patches/update_makefile.patch
- Update install targets to use DESTDIR variable and create binary
  installation directory.
- Honor *FLAGS variables during build.
  * debian/rules
- Add get-orig-source target.
- Update to use dh.
- Add override_dh_auto_install target to set installation directories.
- Add override_dh_auto_build target to use CFLAGS and LDFLAGS from
  dpkg-buildflags.
  * debian/watch
- Update with new location.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Sat, 11 Jul 2015
10:36:29 -0600

wmgtemp (1.1-1) unstable; urgency=low

  * QA upload.
  * New upstream version, using libsensors4 instead of libsensors3.
  * Remove obsolete parts of descriptions about i2c-source.
  * Fix debian/watch to also look for .tar.gz files (Closes: #596101).
  * Remove 000_fix_on_src_wmtemp.c.diff (fixed upstream).
  * Add 001_use_sensors3.conf.diff to use /etc/sensors3.conf instead of
/etc/sensors.conf.

 -- Aurelien Jarno aure...@debian.org  Mon, 07 Feb 2011 19:22:37 +0100

wmgtemp (0.8-1) unstable; urgency=low

  * QA upload.
  * Switch to dpkg-source 3.0 (quilt) format.
  * debian/watch
- Add.
  * New upstream release (Closes: #454492, #465335).
  * debian/control
- Update debhelper to =7.
- Set Maintainer field to Debian QA Group.
- Add ${misc:Depends} to avoid lintian W: debhelper-but-no-misc-depends.
- Bump Standards-Version to 3.8.4.
- Add 'Homepage' field.
- Priority downgrade to 'extra' because depends on 'lm-sensors' which is
  extra. Filed bug to ftp.debian.org #568356.
  * debian/rules
- Remove export DH_COMPAT.
- s/dh_clean -k/dh_prep/ to avoid lintian W: dh-clean-k-is-deprecated.
  * Change menu section from 'Apps/System' to 'Applications/System/Monitoring'
to get rid of lintian W: menu-item-uses-apps-section.
  * debian/copyright
- Migrate to DEP-5 format.
  * debian/patches
- 000_fix_on_src_wmtemp.c.diff: Add missing '('.
- 000_fix_hypens_in_wmtemp.1.diff: Fix hyphen in manpage.

 -- Dario Minnucci mid...@debian.org  Thu, 04 Feb 2010 08:32:12 +0100

wmgtemp (0.7-1) unstable; urgency=low

  * New upstream version.
- Obsolete the patch that was added to fix #185512, since a run-time
  option for swapping temperatures now exists.
- Obsolete the patch that fixed a multi-line string in printf.
- Obsolete/update the patch for the manual page to avoid listing
  chipsets and instead point to lm_sensors manuals, and fix typos.
  * Clean up the packaging a bit.

 -- Josip Rodin joy-packa...@debian.org  Mon, 11 Sep 2006 02:14:31
+0200

wmgtemp (0.6-5) unstable; urgency=low

  * New maintainer (Closes: #349201).

 -- Josip Rodin joy-packa...@debian.org  Mon, 11 Sep 2006 02:05:33
+0200

wmgtemp (0.6-4) unstable; urgency=low

  * Orphan the package.

 -- Lenart Janos o...@debian.org  Sat, 21 Jan 2006 15:17:34 +0100

wmgtemp (0.6-3.1) unstable; urgency=low

  * Non-maintainer upload.
  * Replace build-dependency on xlibs-dev with an explicit build-dependency
on each required package (Closes: #347099).

 -- Steinar H. Gunderson se...@debian.org  Sat, 21 Jan 2006 15:01:38
+0100

wmgtemp (0.6-3) unstable; urgency=high

  * Link to libsensors3 (Closes: #237348).
  * Change Arch: to any to allow the package to be built on all
supported architectures in Debian (Closes: #238252).

 -- Lenart Janos o...@debian.org  Sun, 21 Mar 2004 12:57:14 +0100

wmgtemp (0.6-2) unstable; urgency=medium

  * Move lm-sensors to Depends: in order to be sure /etc/sensors.conf
exists (Closes: #201762).
  * Rebuild should have fixed the wacky Depends: on libsensors-1debian1
(Closes: #211081).
  * Many thanks to Joy for his great work on wmgtemp while I am away.
(Closes: #191538, #197022, #185512, #185513, #185514).

 -- Lenart Janos o...@debian.org  Fri, 26 Dec 2003 12:05:27 +0100

wmgtemp (0.6-1.2) unstable; urgency=high

  * Non-maintainer upload, to recompile against proper libsensors-dev
and eliminate obsoleted libsensors1 dependency (Closes: #197022).

 -- Josip Rodin

[Bug 628929] Re: wmfire don't work with windowmaker (ubuntu 10.04)

2015-06-23 Thread Doug Torrance
This has been fixed in version 1.2.4-1, released uploaded to Wily.

** Changed in: wmfire (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/628929

Title:
  wmfire don't work with windowmaker (ubuntu 10.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmfire/+bug/628929/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1467034] [NEW] Sync wmsun 1.04-1 (universe) from Debian unstable (main)

2015-06-19 Thread Doug Torrance
Public bug reported:

Please sync wmsun 1.04-1 (universe) from Debian unstable (main)

All changelog entries:

wmsun (1.04-1) unstable; urgency=medium

  * New upstream release.
  * New maintainer (Closes: #788836).
  * debian/compat
- Bump to 9.
  * debian/control
- Bump Build-Depends debhelper version to = 9.
- Remove DM-Upload-Allowed field.
- Bump Standards-Version to 3.9.6.
- Add Homepage and Vcs-*.
  * debian/copyright
- Update to DEP5.
  * debian/patches
- Remove directory; patches applied upstream.
  * debian/{post*,README.Debian}
- Remove files; rendered obsolete by dh_installmenu and/or the removal of
  debconf in version 1.03-23.
  * debian/rules
- Add get-orig-source target.
- Update to use dh.
- Add override_dh_auto_build target to pass CFLAGS from dpkg-buildflags.
  * debian/watch
- Add download location.
  * debian/wmsun.install
- Remove file; no longer necessary.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Mon, 15 Jun 2015
08:23:05 -0500

wmsun (1.03+1-2) unstable; urgency=low

  * Bump standards version to 3.8.4.
  * Switch to dpkg-source 3.0 (quilt) format.
  * Add ${misc:Depends} to the binary dependencies.

 -- Denis Briand de...@narcan.fr  Sun, 14 Mar 2010 18:02:23 +0100

wmsun (1.03+1-1) unstable; urgency=low

  * Use a clean upstream sources tarball.
  * Use quilt patch system.
  * Bump standards version to 3.8.3.
  * Remove Martin A. Godisch from uploaders field
Thanks to him to have sponsored wmmoonclock.
  * Allow Debian Maintainers upload.
  * Use debhelper (= 7).
  * Add compat file.
  * Add watch file.
  * Add README.source file.
  * Fix copyright-refers-to-symlink-license lintian tag.
  * Fix hyphen-used-as-minus-sign lintian tag into man file.
  * Remove debian/changelog.upstream and use patch to add it in the sources
  * Use symlink `wmsun' into debian/menu than `wmSun' binary file name.
  * Add #DEBHELPER# into postinst and postrm files.

 -- Denis Briand de...@narcan.fr  Mon, 02 Nov 2009 11:46:30 +0100

wmsun (1.03-29) unstable; urgency=low

  * Add Co-maintainer Martin A. Godisch
  * Update standards version to 3.8.1

 -- Denis Briand de...@narcan.fr  Fri, 10 Apr 2009 18:00:50 +0200

wmsun (1.03-28) unstable; urgency=low

  * New maintainer (Closes: #455543).

 -- Denis Briand de...@narcan.fr  Sun, 08 Mar 2009 15:24:21 +0100

wmsun (1.03-27) unstable; urgency=low

  * Apply patch for DST changes (Closes: #414489).
Thanks to Martin Stigge.
  * Remove db_purge in postrm (Closes: #502521).
Thanks to Cesare Tirabassi.
  * Fix copyright file.
  * Update standards version.

 -- Martin A. Godisch godi...@debian.org  Sun, 26 Oct 2008 10:03:16
+0100

wmsun (1.03-26) unstable; urgency=low

  * Enhance display refresh rate (Closes: #446681).
Thanks to Peter Colberg.
  * Update standards version.

 -- Martin A. Godisch godi...@debian.org  Sat, 02 Feb 2008 17:57:36
+0100

wmsun (1.03-25) unstable; urgency=low

  * Fix clean target (Closes: #445622).

 -- Martin A. Godisch godi...@debian.org  Sun, 07 Oct 2007 12:41:45
+0200

wmsun (1.03-24) unstable; urgency=low

  * Change display refresh rate to 100 ms, see: #440406.
  * Update menu section.
  * Fix distclean target.

 -- Martin A. Godisch godi...@debian.org  Sun, 07 Oct 2007 09:28:40
+0200

wmsun (1.03-23) unstable; urgency=low

  * Remove debconf, add README.Debian (Closes: #413517).
  * Fix timestamps.

 -- Martin A. Godisch godi...@debian.org  Sun, 25 Mar 2007 10:40:34
+0200

wmsun (1.03-22) unstable; urgency=low

  * Update Japanese translation file (Closes: #405776).
Thanks to Hideki Yamane.

 -- Martin A. Godisch godi...@debian.org  Wed, 10 Jan 2007 19:26:12
+0100

wmsun (1.03-21) unstable; urgency=low

  * Update control file.
  * Update French translation file (Closes: #402672).
Thanks to Christian Perrier.
  * Update Czech localization file (Closes: #404382).
Thanks to Miroslav Kure.

 -- Martin A. Godisch godi...@debian.org  Tue, 09 Jan 2007 18:43:20
+0100

wmsun (1.03-20) unstable; urgency=low

  * Fix debconf spelling.
  * Update German debconf translation.
  * Update control file.

 -- Martin A. Godisch godi...@debian.org  Sun, 10 Dec 2006 10:04:48
+0100

wmsun (1.03-19) unstable; urgency=low

  * Fix longitude/latitude information URL (Closes: #401872).
Thanks to Jacopo.
  * Update German debconf translation.

 -- Martin A. Godisch godi...@debian.org  Sun, 10 Dec 2006 09:23:55
+0100

wmsun (1.03-18) unstable; urgency=low

  * Update build-dependencies according to xlibs-dev transition.

 -- Martin A. Godisch godi...@debian.org  Wed, 30 Nov 2005 19:07:25
+0100

wmsun (1.03-17) unstable; urgency=low

  * Add Vietnamese debconf translation (Closes: #324132).
Thanks to Clytie Siddall.
  * Add Swedish debconf translation (Closes: #331190).
Thanks to Daniel Nylander.
  * Update standards version.

 -- Martin A. Godisch godi...@debian.org  Wed, 05 Oct 2005 19:43:35
+0200

wmsun (1.03-16) unstable; urgency=low

  * Add Czech

[Bug 1467035] [NEW] Sync wmfire 1.2.4-1 (universe) from Debian unstable (main)

2015-06-19 Thread Doug Torrance
Public bug reported:

Please sync wmfire 1.2.4-1 (universe) from Debian unstable (main)

All changelog entries:

wmfire (1.2.4-1) unstable; urgency=medium

  * New upstream release.
  * New maintainer (Closes: #775470).
  * debian/compat:
- Bump to 9.
  * debian/control:
- Bump versioned dependency on debhelper to =9.
- Bump Standards-Version to 3.9.6.
- Move Homepage from Description to its own field.
- Add Vcs-*.
- Remove cdbs from Build-Depends.
- Add ${misc:Depends} to Depends.
- Remove versioned dependency on libgtop2-dev; no earlier version
  still exists in Debian.
- Replace autotools-dev with dh-autoreconf in Build-Depends.
  * debian/control:
- Lengthen long description with information from wmfire homepage.
  * debian/copyright:
- Update to DEP5 machine-readable format, version 1.0.
  * debian/dirs:
- Remove unnecessary file.
  * debian/docs:
- Add AUTHORS, NEWS, and README.
- Remove ALL_I_GET_IS_A_GREY_BOX; no longer relevant.
  * debian/patches:
- (rename_configure.in.patch) Silence deprecated-configure-filename
  Lintian warning.
- (fix_manpage.patch) Escape hyphens.
- (01_resource.patch) Convert to quilt; add DEP3 header.
- (gdk_updates.patch) Update for newer versions of GDK.
- (update_autotools.patch) Silence various autotools warnings.
- (fix_-Wunused-result.patch) Fix compiler warning.
- (freebsd_port.patch) Port to Debian GNU/kFreeBSD.
  * debian/rules:
- Add get-orig-source target.
- Update to use dh.
- Use dh_autoreconf.
- Append -Wl, --as-needed to LDFLAGS to reduce useless dependency
  warnings from dpkg-shlibdeps.
  * debian/source/format:
- New file; use 3.0 (quilt).
  * debian/upstream/signing-key.asc:
- New file.
  * debian/watch:
- Remove unused parameters.
- Add pgpsigurlmangle option.
  * debian/wmfire.menu:
- Update Section.
- Add newlines for readability.
- Rename to debian/menu.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Mon, 19 Jan 2015
07:18:29 -0600

wmfire (1.2.3-2) unstable; urgency=low

  * Update Standards-Version to 3.7.2 (no changes required).
  * New maintainer email address.

 -- Charles Fry c...@debian.org  Wed,  5 Jul 2006 11:15:25 -0400

wmfire (1.2.3-1) unstable; urgency=low

  * New upstream release (Closes: #341255).
  * Remove unused maintainer scripts.
  * Simplify build dependencies in debian/control.
  * Build with autotools.

 -- Charles Fry deb...@frogcircus.org  Tue,  6 Dec 2005 10:58:02 -0500

wmfire (1.2.2-1) unstable; urgency=low

  * New upstream release (Closes: #328475).
  * Move to CDBS and dpatch.

 -- Charles Fry deb...@frogcircus.org  Thu, 29 Sep 2005 08:08:03 -0400

wmfire (1.2.1-6) unstable; urgency=low

  * New maintainer (Closes: #326779).
  * Acknowledge previous NMU (Closes: #326575).

 -- Charles Fry deb...@frogcircus.org  Wed,  7 Sep 2005 01:23:45 -0400

wmfire (1.2.1-5) unstable; urgency=low

  * Orphan package and set maintainer to Debian QA Group.
  * Bump Standards-Version to 3.6.2 (no changes required).
  * Update FSF address in debian/copyright.
  * Bump the version of the libgtop2-dev build dependency to get a
version past the SONAME change (Closes: #316764, #322524).
  * Break up build dependencies for the xorg transition:
- Remove xlibs-dev.
- Add libxt-dev (for the AC_PATH_X macro to detect X), upstream
  should specialize the macro call if they don't need this lib.
- Add libx11-dev.
- Add libxext-dev.

 -- Loic Minier l...@dooz.org  Sun,  4 Sep 2005 10:06:12 +0200

wmfire (1.2.1-4) unstable; urgency=low

  * Apply the patch from Alan Swanson (see #250937)
(Closes: #250937, #256782).
  * Adjust mandir to be FHS 2.1 compatible.

 -- Christoph Siess (CHS) c...@geekhost.info  Tue, 17 Aug 2004 15:49:00
+

wmfire (1.2.1-3) unstable; urgency=low

  * Update Build-Depends for libgtop2-dev to =2.6.0-4 (Closes: #252189).
  * Sponsored by Martin Wuertele m...@debian.org.

 -- Christoph Siess (CHS) c...@geekhost.info  Sat, 12 Jun 2004 13:27:21
+0200

wmfire (1.2.1-2) unstable; urgency=low

  * Rebuild against libgtop-2.2 (Closes: #252189).
  * Sponsored by Martin Wuertele m...@debian.org

 -- Christoph Siess (CHS) c...@geekhost.info  Sun,  6 Jun 2004 13:55:52
+

wmfire (1.2.1-1) unstable; urgency=low

  * New upstream release (Closes: #242536).
  * Manually apply the patch from Christof Douma (see #228357).
  * Some very small changes in wmfire.menu.
  * Sponsored by Martin Wuertele m...@debian.org.

 -- Christoph Siess (CHS) c...@geekhost.info  Sun,  9 May 2004 20:37:58
+0200

wmfire (1.1.99-5) unstable; urgency=low

  * Use proper section for the manpage.
  * Fix formatting in manpage.
  * Apply a patch from Christof Douma to manually set the
X resource name (Closes: #228357).

 -- Christoph Siess (CHS) c...@geekhost.info  Sun, 18 Jan 2004 19:25:55
+0100

wmfire (1.1.99-4) unstable; urgency=low

  * New maintainer.
  * Remove config.{log,cache

[Bug 1454486] [NEW] Sync wmload 0.9.6-1 (universe) from Debian unstable (main)

2015-05-12 Thread Doug Torrance
Public bug reported:

Please sync wmload 0.9.6-1 (universe) from Debian unstable (main)

All changelog entries:

wmload (0.9.6-1) unstable; urgency=medium

  * New upstream release.
  * New maintainer (Closes: #782111).
  * debian/compat
- Bump to 9.
  * debian/control
- Set versioned dependency on debhelper to =9.
- Bump Standards-Version to 3.9.6.
- Add Homepage and Vcs-*.
  * debian/control
- Remove xutils-dev from Build-Depends; not needed as imake is no
  longer used.
  * debian/copyright
- Convert to DEP5 format.
  * debian/patches/bump_POSIX_C_SOURCE.patch
- New patch; avoid implicit declaration warning.
  * debian/patches/fix_unused_result.patch
- New patch; fix -Wunused-result compiler warning.
  * debian/rules
- Add get-orig-source target.
- Update to use dh.
  * debian/source/format
- New file; use 3.0 (quilt).
  * debian/watch
- New file.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Wed, 15 Apr 2015
12:42:54 -0500

wmload (0.9.2-11) unstable; urgency=low

  * QA upload.
- Set maintainer to QA group.
  * Replace xutils with xutils-dev in Build-Depends (Closes: #485240).
  * Bump debhelper compat level from 4 to 7.
  * Change menu section to Applications/System/Monitoring.

 -- Frank Lichtenheld dj...@debian.org  Wed, 30 Jul 2008 17:42:03
+0200

wmload (0.9.2-10.1) unstable; urgency=low

  * Non-maintainer upload.
  * Update build-deps for xlibs-dev removal (Closes: #347118).

 -- Justin Pryzby justinpry...@users.sf.net  Sat, 14 Jan 2006 15:25:34
-0500

wmload (0.9.2-10) unstable; urgency=low

  * debian/control
- Bump Build-Depends on debhelper to = 4.
- Bump Standards-Version to 3.6.2.
- Add E. to my name.

 -- Marcelo E. Magallon mmaga...@debian.org  Fri, 16 Sep 2005 09:26:55
-0600

wmload (0.9.2-9) unstable; urgency=low

  * debian/control
- Add xutils to Build-Depends (Closes: #123655).

 -- Marcelo E. Magallon mmaga...@debian.org  Thu, 13 Dec 2001 00:19:33
+0100

wmload (0.9.2-8) unstable; urgency=low

  * debian/control
- Add depbhelper to Build-Depends (Closes: #123199).

 -- Marcelo E. Magallon mmaga...@debian.org  Mon, 10 Dec 2001 09:43:22
+0100

wmload (0.9.2-7) unstable; urgency=low

  * debian/rules
- Install to /usr, not /usr/X11R6 (Closes: #122021).
  * debian/control
- Add xlibs-dev to Build-Depends xlibs-dev.
- Fix grammar and style.

 -- Marcelo E. Magallon mmaga...@debian.org  Sun,  9 Dec 2001 12:40:10
+0100

wmload (0.9.2-6) unstable; urgency=low

  * Non-maintainer upload.
  * Fixed the copyright file.
  * Fixed Imakefile, usage of wmload.1x, rules (in sync with wmavgload).
  * Included some headers in wmload.c to make it compile warningless.

 -- Josip Rodin jro...@jagor.srce.hr  Sat, 25 Dec 1999 17:39:09 +0100

wmload (0.9.2-5) unstable; urgency=low

  * New maintainer.
  * Redo the packaging using debhelper. Update for Policy 3.x.
  * Beautify description and the manual page. Suggest wmavgload.

 -- Josip Rodin jro...@jagor.srce.hr  Tue, 28 Sep 1999 19:45:28 +0200

wmload (0.9.2-4) frozen unstable; urgency=low

  * Write a real manpage.

 -- Marcelo E. Magallon mmaga...@debian.org  Sun, 12 Apr 1998 13:48:21
-0600

wmload (0.9.2-3) unstable; urgency=low

  * Fix Architecture = any (Closes: #17923)

 -- Marcelo E. Magallon mmaga...@debian.org  Sun, 15 Feb 1998 13:19:00
-0600

wmload (0.9.2-2) unstable; urgency=low

  * Clean rules a bit.
  * Reupload including pristine sources.

 -- Marcelo E. Magallon mmaga...@efis.ucr.ac.cr  Sun, 25 Jan 1998
12:43:59 -0600

wmload (0.9.2-1) unstable; urgency=low

  * Initial release.

 -- Marcelo E. Magallon mmaga...@efis.ucr.ac.cr  Fri,  2 Jan 1998
14:00:10 -0600

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1454486

Title:
  Sync wmload 0.9.6-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1454486/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1402004] Re: Move Unity Greeter badge to unity-greeter-badges package

2015-05-07 Thread Doug Torrance
I've reported bugs (with patches) for wdm [1] and wmweather+ [2].

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784701
[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784702

** Bug watch added: Debian Bug tracker #784701
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784701

** Also affects: wdm (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784701
   Importance: Unknown
   Status: Unknown

** Bug watch added: Debian Bug tracker #784702
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784702

** Also affects: wmweather+ (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784702
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402004

Title:
  Move Unity Greeter badge to unity-greeter-badges package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fookb/+bug/1402004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1402004] Re: Move Unity Greeter badge to unity-greeter-badges package

2015-05-06 Thread Doug Torrance
wmaker version 0.95.6-1 was finally accepted into unstable!  I've
prepared a new version of unity-greeter-badges at
lp:~profzoom/ubuntu/wily/unity-greeter-badges/fix-1402004 once wmaker
has been synced to wily.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402004

Title:
  Move Unity Greeter badge to unity-greeter-badges package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1402004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1423159] Re: Sync wmcube 1.0.0-1 (universe) from Debian unstable (main)

2015-05-05 Thread Doug Torrance
** Changed in: ubuntu
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1423159

Title:
  Sync wmcube 1.0.0-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1423159/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1082879] Re: Ctrl+Mouse wheel resizes window

2015-03-08 Thread Doug Torrance
Marking as Fix Released, as the fix went live in wmaker-0.95.5.  See
[1].

[1] http://lists.windowmaker.org/dev/msg04522.html

** Changed in: wmaker (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1082879

Title:
  Ctrl+Mouse wheel resizes window

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1082879/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1429496] Re: Kubuntu Vivid 1 Beta 15.04: Ubuntu-bug hangs on cancel

2015-03-07 Thread Doug Torrance
Was this intended to be filed as a bug against wmaker?  It seems like an
ubuntu-bug bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1429496

Title:
  Kubuntu Vivid 1 Beta 15.04: Ubuntu-bug hangs on cancel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1429496/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1427008] Re: Sync wmcube 1.0.1-1 (universe) from Debian unstable (main)

2015-03-02 Thread Doug Torrance
Thanks for taking a look  at this!

The new upstream release consists only of applying patches already in
the Debian package and updating the documentation accordingly, so there
are no new features.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1427008

Title:
  Sync wmcube 1.0.1-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmcube/+bug/1427008/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1427008] [NEW] Sync wmcube 1.0.1-1 (universe) from Debian unstable (main)

2015-03-01 Thread Doug Torrance
Public bug reported:

Please sync wmcube 1.0.1-1 (universe) from Debian unstable (main)

Changelog entries since current vivid version 1.0.0-1:

wmcube (1.0.1-1) unstable; urgency=medium

  * New upstream release.
  * debian/{install,wmc/*}
- Remove files; *.wmc added upstream.
  * debian/{manpages,wmcube.1}
- Remove files; manpage added upstream.
  * debian/patches
- Remove previous patches; applied upstream.
  * debian/patches/manpage_escape_hyphens.patch
- New patch; avoid hyphen-used-as-minus-sign Lintian warning.
  * debian/rules
- Update override_dh_auto_install target to set installation
  directories.  (These settings were originally in
  debian/patches/update_makefile.patch, which upstream applied
  in part.  Since these settings are more Debian-specific, I'm
  moving this to debian/rules.)

 -- Doug Torrance dtorra...@monmouthcollege.edu  Thu, 19 Feb 2015
20:40:57 -0600

** Affects: wmcube (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1427008

Title:
  Sync wmcube 1.0.1-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmcube/+bug/1427008/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1427007] [NEW] Sync wmbattery 2.47-1 (universe) from Debian unstable (main)

2015-03-01 Thread Doug Torrance
Public bug reported:

Please sync wmbattery 2.47-1 (universe) from Debian unstable (main)

Changelog entries since current vivid version 2.46-1:

wmbattery (2.47-1) unstable; urgency=medium

  * New upstream release.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Sat, 21 Feb 2015
09:18:00 -0600

** Affects: wmbattery (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1427007

Title:
  Sync wmbattery 2.47-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmbattery/+bug/1427007/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1423159] [NEW] Sync wmcube 1.0.0-1 (universe) from Debian unstable (main)

2015-02-18 Thread Doug Torrance
Public bug reported:

Please sync wmcube 1.0.0-1 (universe) from Debian unstable (main)

All changelog entries:

wmcube (1.0.0-1) unstable; urgency=medium

  * New upstream release.
  * New maintainer (Closes: #775110).
  * debian/compat
- Bump to 9.
  * debian/control
- Bump versioned dependency on debhelper to =9.
- Remove dpatch from Build-Depends.
- Bump Standards-Version to 3.9.6.
- Update Homepage.
- Add Vcs-*.
- Add ${misc:Depends} to Depends.
- Remove duplicate Section and Priority fields.
  * debian/copyright
- Update to DEP5 machine-readable format version 1.0.
  * debian/install
- New file; install extra *.wmc files.
  * debian/manpages
- New file.
  * debian/patches
- (10_fixes_for_0.99pre1_upgrade.dpatch, 20_parallel_build.dpatch,
  50_bts-504844_fix_ftbfs_gcc4.4.dpatch) Remove patches; no longer
  needed.
- (30_bts-386850_fix_smp.patch, 40_bts-357072_long_uptime_fix.patch)
  Convert from dpatch to quilt, change extension from .dpatch to
  .patch, update for new upstream version, and add DEP3 header.
- (update_makefile.patch) Various changes to upstream Makefile to
  properly build package.
- (fix_-Wunused-result.patch) Fix compiler warnings.
- (freebsd_sysctl.patch): Use sysctl instead of kvm to get cpu stats
  on kfreebsd.
- (fix_grammar.patch) Fix grammar in error message.
- (fix_cppcheck_warnings.patch) Fix warnings found by cppcheck.
  * debian/README.source
- Remove out-of-date file.
  * debian/rules
- Add get-orig-source target.
- Update to use dh.
- Add override_dh_auto_build target to pass CFLAGS from
  dpkg-buildflags and set FREEBSD macro when building on kfreebsd.
- Add override_dh_auto_install target to remove doc files installed
  by upstream that cause Lintian warnings.
  * debian/source/format
- New file; use 3.0 (quilt).
  * debian/watch
- Update with new location.
  * debian/wmcube.1
- Update with descriptions of options.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Wed, 14 Jan 2015
20:27:37 -0600

wmcube (0.99-pre1-3) unstable; urgency=low

  * QA upload.
  * debian/control
- Set QA Group as maintainer.
- Bump Standards-Version to 3.8.0.
  + Add debian/README.source.
  * debian/patches/50_bts-504844_fix_ftbfs_gcc4.4.dpatch
- Add to fix a FTBFS using GCC 4.4; thanks to Martin Michlmayr for the
  report and the patch (Closes: #504844).

 -- Sandro Tosi mo...@debian.org  Sat, 08 Nov 2008 11:40:47 +0100

wmcube (0.99-pre1-2) unstable; urgency=low

  * debian/wmc/beryllium.wmc
- Add new wmc (Closes: #466606).

 -- Sandro Tosi matrixh...@gmail.com  Sat, 08 Mar 2008 16:24:38 +0100

wmcube (0.99-pre1-1) unstable; urgency=low

  * New upstream release (Closes: #239522).
  * debian/control
- Bump Standards-Version to 3.7.3.
- Add Homepage field.
  * debian/menu
- Update to new menu policy.
  * debian/copyright
- Indent copyright and upstream author with 4 spaces.
- Update copyright note.
- Add copyright/license notes for wmapp directory.
  * debian/README.debian
- Remove package description
- Update upstream email  website address.
  * debian/watch
- Add.
  * debian/rules
- Install upstream changelog.
- Don't install removed files.
- Change binary location in install target.
- Remove TODO from docs installation since no longer in upstream
  tarball.
- Integrate destination dir creation into install target.
- Remove execution rights from data files (*.wmc).
- Clean target reorg to be run on patched source.
- Build target depends on patch, not build-stamp on patch-stamp.
  * debian/3dObjects/
- Rename to debian/wmc to match upstream directory
  * debian/patches/10_fixes_for_0.99pre1_upgrade.dpatch
- Add to let new upstream release compile; thanks to Peter De Wachter
  from #debian-mentors IRC channel.
  * debian/patches/10_datapath_old.dpatch
- Remove since merged upstream / no longer applicable.
  * debian/patches/30_restore_pristine_code.dpatch
- Remove since merged upstream / no longer applicable.
  * debian/dirs
- Remove.
  * debian/patches/20_secfix_old.dpatch
- Remove since no longer applicable.
  * debian/patches/20_parallel_build.dpatch
- Allow parallel build.
  * debian/patches/30_bts-386850_fix_smp.dpatch
- Fix smp support (Closes: 386850).
  * debian/patches/40_bts-357072_long_uptime_fix.dpatch
- Fix program running on machine with long uptime (Closes: #357072).
  * debian/wmcube.1
- Adapt to new upstream release.

 -- Sandro Tosi matrixh...@gmail.com  Wed, 30 Jan 2008 19:58:58 +0100

wmcube (0.98-8) unstable; urgency=low

  * New maintainer (Closes: #414531).
  * debian/control
- Add myself as new maintainer.
- Little reformat of short and long descriptions.
- Add dependency against dpatch.
  * debian/copyright
- Set myself as new maintainer.
- Add copyright notes for wmgeneral

[Bug 1422811] [NEW] Sync wmfsm 0.35-1 (universe) from Debian unstable (main)

2015-02-17 Thread Doug Torrance
Public bug reported:

Please sync wmfsm 0.35-1 (universe) from Debian unstable (main)

All changelog entries:

wmfsm (0.35-1) unstable; urgency=medium

  * New upstream release.
  * New maintainer (Closes: #776014).
  * debian/compat
- Bump to 9.
  * debian/control
- Bump Standards-Version to 3.9.6.
- Bump versioned dependency on debhelper to =9.
- Add Homepage and Vcs-*.
- Remove unnecessary Build-Depend x11proto-core-dev.
- Replace autotools-dev with dh-autoreconf in Build-Depends.
  * debian/copyright
- Add DEP5 header, debian/*, and wmgeneral/* sections.
  * debian/docs
- Add AUTHORS.
  * debian/patches
- (handle_HOME_errors.patch) Avoid errors related to HOME environment
  variable.
  * debian/rules
- Update to use dh with dh_autoreconf.
- Add get-orig-source target.
  * debian/source/format
- New file; use 3.0 (quilt).
  * debian/watch
- New file.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Thu, 22 Jan 2015
14:47:21 -0600

wmfsm (0.34-13) unstable; urgency=low

  * QA upload.
  * Replace deprecated build-dependency on x-dev with x11proto-core-dev
(Closes: #515405).
  * Add ${misc:Depends} substvar to binary package.
  * Use Applications/System/Administration menu section instead of
Apps/System.
  * debian/rules
- Don't ignore errors in clean target.
- Don't use deprecated dh_clean -k.
  * Update debian/copyright.
  * Bump Standards-Version to 3.8.2.
  * Move to debhelper 7.

 -- Chris Lamb la...@debian.org  Tue, 28 Jul 2009 15:18:19 +0200

wmfsm (0.34-12) unstable; urgency=low

  * Orphan: set maintainer to QA.

 -- Arthur Korn art...@debian.org  Mon, 24 Nov 2008 19:39:17 +0100

wmfsm (0.34-11) unstable; urgency=low

  * Update Standards-Version to 3.7.2.2 without changes.

 -- Arthur Korn art...@debian.org  Mon, 12 Feb 2007 21:22:47 +0100

wmfsm (0.34-10) unstable; urgency=low

  * configure: Rebuild with autoconf 2.59a-7 to fix tests for X11
libraries (Closes: #347639, #346889).

 -- Arthur Korn art...@debian.org  Sat, 14 Jan 2006 15:40:46 +0100

wmfsm (0.34-9) unstable; urgency=low

  * control: Replace build-dependency on xlibs-dev by detailed
build-dependencies according to the xlibs-split tool
(Closes: #346889).

 -- Arthur Korn art...@debian.org  Mon,  9 Jan 2006 19:31:15 +0100

wmfsm (0.34-8) unstable; urgency=low

  * rules: Fix timestamps of various autoconfig related files to
avoid unnecessary rebuild (and the dependency on autoconf)
(Closes: #321011).

 -- Arthur Korn art...@debian.org  Wed,  3 Aug 2005 01:02:58 +0200

wmfsm (0.34-7) unstable; urgency=low

  * Remove build dependency on automake1.6
  * Add build dependency on autotools-dev and no update config.{sub,guess} in
clean target, correctly call ./configure.
  * Bump Standards-Version to 3.6.2.0 without changes.
  * Update to debhelper compat level 4 with minor changes.
  * docs: Remove NEWS (that file is empty?!) and TODO (out of date).

 -- Arthur Korn art...@debian.org  Sun, 31 Jul 2005 23:48:07 +0200

wmfsm (0.34-6) unstable; urgency=low

  * Fix filesystem name corruption. Thanks to Ralf Horstmann and Cristian
Ionescu-Idbohrn for the patch.

 -- Arthur Korn art...@korn.ch  Wed, 25 Aug 2004 01:29:58 +0200

wmfsm (0.34-5) unstable; urgency=low

  * wmfsm.sample: Adapt to the wealth of pseudo-fs in current linux
systems (Closes: #226298).
  * Remove debian/watch, upstream's dead.
  * wmfsm.1: Make a point on the strictness of wmfsmrc format (Closes: #226274).
  * Memleak news: avoid it if there are more than 9 filesystems too.
  * Bumpt to Standards-Version 3.6.1.0 without changes.

 -- Arthur Korn art...@korn.ch  Wed, 17 Mar 2004 13:04:33 +0100

wmfsm (0.34-4) unstable; urgency=low

  * Fix memleak introduced in 0.34-2 with the patch by Timo Benk.
global char *mp[] was assigned the result of stdup() repeatedly
without free. My ugly fix is to free it all up at the beginning of
readFileSystems(). Now I'm a proud Perl coder ... (Closes: #196057).

 -- Arthur Korn art...@korn.ch  Wed,  2 Jul 2003 23:05:21 +0200

wmfsm (0.34-3) unstable; urgency=low

  * Run aclocal and update config.sub and config.guess
(Closes: #174686, #187602).

 -- Arthur Korn art...@korn.ch  Wed,  2 Jul 2003 23:04:55 +0200

wmfsm (0.34-2) unstable; urgency=low

  * Add Build-Depends on automake1.6 (Closes: #175082).
  * Update config.{sub,guess} from autotools-dev.
  * Apply patch by Timo Benk that makes wmfsm reread the filesystems list
during its life (Closes: #186826).

 -- Arthur Korn art...@korn.ch  Tue,  1 Apr 2003 11:25:11 +0200

wmfsm (0.34-1) unstable; urgency=low

  * New upstream release.
  * rules: New DEB_BUILD_OPTIONS syntax.
  * Bump Standards-Version to 3.5.8.
  * Build upstream changelog by concatenating Changelog{,.old}.

 -- Arthur Korn art...@korn.ch  Tue, 17 Dec 2002 11:10:00 +0100

wmfsm (0.33-2) unstable; urgency=low

  * Correct spelling error in description (Closes: #125491).

 -- Arthur Korn art...@korn.ch

[Bug 1396851] Re: [needs-packaging] Add package containing Unity Greeter badges

2015-02-17 Thread Doug Torrance
** Changed in: unity-greeter (Ubuntu)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  [needs-packaging] Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/motif/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1422810] [NEW] Sync wmcalc 0.5-1 (universe) from Debian unstable (main)

2015-02-17 Thread Doug Torrance
Public bug reported:

Please sync wmcalc 0.5-1 (universe) from Debian unstable (main)

All changelog entries:

wmcalc (0.5-1) unstable; urgency=medium

  * New upstream release.
  * New maintainer (Closes: #775061).
  * debian/compat
- Bump to 9.
  * debian/control
- Bump versioned dependency on debhelper to = 9.
- Remove dpatch from Build-Depends.
- Bump Standards-Version to 3.9.6.
- Add Vcs-* and Homepage.
  * debian/copyright
- Update to DEP5 machine-readable format version 1.0.
  * debian/dirs
- Remove unnecessary file.
  * debian/docs
- New file; install README.
  * debian/patches
- Switch from dpatch to quilt.
- (01_restore_pristine_code.dpatch) Remove file; patch applied upstream.
- (10_bts-320597_increase_significant_digits.patch) Refresh for new
   upstream version; convert to DEP3 header.
- (fix_makefile_typo.patch) Correctly create the directory
  /usr/share/man/man1 instead of /usr/share/man/man1/man1.
- (fix_manpage_spelling.patch) Avoid Lintian warning.
  * debian/README.source
- Remove unnecessary file.
  * debian/rules
- Update to use dh.
- Add override_dh_auto_install target to set PREFIX to /usr.
- Add get-orig-source target.
- Add override_dh_auto_build target to use CFLAGS from dpkg-buildflags.
  * debian/source/format
- New file; use 3.0 (quilt).
  * debian/watch
- New file.
  * debian/wmcalc.1
- Remove file; added upstream.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Sat, 10 Jan 2015
17:18:03 -0600

wmcalc (0.3-7) unstable; urgency=low

  * QA upload.
  * debian/control
- Set maintainer to QA Group.
- Remove additional spaces from long description (paragraph filling).
- Add ${misc:Depends} to binary package Depends.
  * debian/rules
- Remove 'configure' target, since not needed.
- Merge 'rm' call into 'dh_clean' one.
- Remove dh_link call, not needed.

 -- Sandro Tosi mo...@debian.org  Sat, 27 Dec 2008 22:43:16 +0100

wmcalc (0.3-6) unstable; urgency=low

  * debian/control
- Remove x-dev from build-depends because it's a transitional package to
  x11proto-core-dev, but libxext-dev depends on x11proto-core-dev
- Bump Standards-Version to 3.8.0.
  + Add debian/README.source.

 -- Sandro Tosi matrixh...@gmail.com  Fri, 11 Jul 2008 23:17:02 +0200

wmcalc (0.3-5) unstable; urgency=low

  * debian/control
- Bump Standard-Version to 3.7.3.
  * debian/menu
- Update to new menu policy.
  * debian/copyright
- Upstream author and copyright indented with 4 spaces.
- Local license text now points to the generic GPL symlink.
  * debian/patches/10_bts-320597_increase_significant_digits.dpatch
- Add to increase significant digits in calculations; thanks to Antony
  Gelberg (Closes: #320597).
  * debian/wmcalc.1
- Add a note about improper operations execution order (Closes: 404701)
- Escape minus signs (lintian warning).

 -- Sandro Tosi matrixh...@gmail.com  Mon, 21 Jan 2008 23:27:20 +0100

wmcalc (0.3-4) unstable; urgency=low

  * New maintainer (Closes: #427132)
  * debian/control
- Bump Standard-Version to 3.7.2.
- Small reformat of short and long descriptions.
- Add Build-Depends on dpatch.
  * debian/copyright
- Set myself as new maintainer.
- Fix copyright note.
- Add license note.
- Add location of GPLv2 on a debian system.
  * debian/rules
- Add explicit manpage filename to dh_installman.
- Add explicit doc filename to dh_installdocs.
- Integrate dpatch.
- Fix lintian warning about make clean call.
- Remove unneeded dh_installinfo call.
  * debian/manpages
- Remove file.
  * debian/docs
- Remove file.
  * debian/menu
- Fix section to Applications.
  * debian/patches/01_restore_pristine_code.dpatch
- Add to remove source code modification.
  * {wmcalc.c,Makefile,wmcalc_c.h,wmcalcswitch.c}
- Restore to upstream version
  * debian/wmcalc.1
- Fix a lintian warning about a minus sign not escaped.
  * wmcalc.conf
- Remove file since created by
  debian/patches/01_restore_pristine_code.dpatch

 -- Sandro Tosi matrixh...@gmail.com  Sat, 13 Oct 2007 10:56:35 +0200

wmcalc (0.3-3) unstable; urgency=low

  * Orphan package, set maintainer to Debian QA Group.

 -- Gordon Fraser gor...@debian.org  Sat, 02 Jun 2007 06:18:54 +0200

wmcalc (0.3-2.2) unstable; urgency=low

  * Non-maintainer upload.
  * Change path to X11 include and lib dirs (Closes: #365158).

 -- Mohammed Adnène Trojette adn+...@diwi.org  Fri, 12 May 2006
18:17:47 +0200

wmcalc (0.3-2.1) unstable; urgency=low

  * Non-maintainer upload.
  * Split xlibs-dev build depends into individual Xorg libraries
(Closes: #346886).
  * Make package lintian clean:
- Update to Standards version 3.6.2.1.
- Update to debhelper v5 (Closes: #322838).
- Quote strings in menu file.

 -- Bastian Kleineidam cal...@debian.org  Fri, 13 Jan 2006 20:59:30
+0100

wmcalc (0.3-2) unstable; urgency=low

[Bug 1422812] [NEW] Sync wmget 0.6.0-4 (universe) from Debian unstable (main)

2015-02-17 Thread Doug Torrance
Public bug reported:

Please sync wmget 0.6.0-4 (universe) from Debian unstable (main)

All changelog entries:

wmget (0.6.0-4) unstable; urgency=medium

  * New maintainer (Closes: #776650).
  * debian/compat
- Bump to 9.
  * debian/control
- Bump versioned dependency on debhelper to =9.
- Bump Standards-Version to 3.9.6.
- Add Homepage and Vcs-*.
- Remove trailing whitespace from Description.
- Add ${misc:Depends} to Depends.
- Remove dpatch from Build-Depends.
- Switch Build-Depends on libcurl3-dev to libcurl4-openssl-dev.
- Add ${perl:Depends} to Depends.
  * debian/copyright
- Update to DEP5 machine-readable format v1.0.
  * debian/docs
- Remove wmget.refentry.xml; this is the source file for the manpage,
  not user-readable documentation.
  * debian/{docs,install}
- Move wmget-test.pl from /usr/share/doc/wmget to /usr/share/wmget.
  * debian/patches/01_Makefile.dpatch
- Convert to quilt, add DEP3 header, and rename to 01_Makefile.patch.
- Tidy up build flags and fix linking order.
- Honor DESTDIR variable.
- Drop unnecessary -lm from LIBS.
  * debian/patches/fix_resource_leaks.patch
- New patch; call fclose() on all the files we fopen().
  * debian/patches/fix_-Wpointer-to-int-cast.patch
- New patch; fix compiler warnings.
  * debian/rules
- Add get-orig-source target.
- Update to use dh.
- Add override_dh_auto_build target to use CFLAGS and LDFLAGS from
  dpkg-buildflags.
- Add override_dh_auto_install target to set PREFIX to /usr and use
  LDFLAGS from dpkg-buildflags.
  * debian/source/format
- New file; use 3.0 (quilt).
  * debian/watch
- Bump version to 3.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Wed, 11 Feb 2015
09:02:30 -0600

wmget (0.6.0-3) unstable; urgency=low

  * QA upload.
  * Replace build-dependency on x-dev by x11proto-core-dev (Closes: #515406).
  * Change menu section to Applications/Network/File Transfer.

 -- Ralf Treinen trei...@debian.org  Sat, 21 Feb 2009 08:54:25 +0100

wmget (0.6.0-2) unstable; urgency=low

  * QA upload.
  * Package is orphaned (#352435); set maintainer to Debian QA Group.
  * Switch to debhelper 5.
  * Remove build dependency on libc6-dev; it's build-essential.
  * debian/rules
- Pass CFLAGS to the upstream Makefile for DEB_BUILD_OPTIONS=noopt.
- Let dh_strip handle DEB_BUILD_OPTIONS=nostrip.
  * debian/watch
- Add.
  * Conforms to Standards version 3.6.2.

 -- Matej Vela v...@debian.org  Wed,  1 Mar 2006 20:39:22 +0100

wmget (0.6.0-1.2) unstable; urgency=low

  * Non-maintainer upload.
  * Split xlibs-dev build-dep (Closes: #347081).

 -- Marc 'HE' Brockschmidt h...@debian.org  Sat, 21 Jan 2006 11:10:41
+0100

wmget (0.6.0-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Switch to libcurl3-dev (Closes: #279454).

 -- Domenico Andreoli ca...@debian.org  Wed, 22 Dec 2004 18:08:27
+0100

wmget (0.6.0-1) unstable; urgency=low

  * New upstream release (Closes: #252717).
  * Move binary to /usr/bin from /bin (Closes: #227175).
  * Change maintainer email.

 -- Rafal Zawadzki blus...@jabberpl.org  Sat,  5 Jun 2004 00:34:50
+0200

wmget (0.5.0-1) unstable; urgency=low

  * New upstream release.
  * Follow HTTP redirects (Closes: #162989).
  * Fix error when invoking a download from command line (Closes: #176558).

 -- Rafal Zawadzki blus...@ats.com.pl  Thu,  9 Feb 2003 09:37:38 +0200

wmget (0.4.4-2) unstable; urgency=low

  * Fix debian/control file (Closes: #165559).

 -- Rafal Zawadzki blus...@ats.com.pl  Tue, 29 Oct 2002 11:58:20 +0200

wmget (0.4.4-1) unstable; urgency=low

  * New upstream release.

 -- Rafal Zawadzki blus...@ats.com.pl  Thu, 20 Jun 2002 15:08:41 +0200

wmget (0.4.3-1) unstable; urgency=low

  * New upstream release.

 -- Rafal Zawadzki blus...@ats.com.pl  Tue, 18 Jun 2002 09:34:08 +0200

wmget (0.4.2-2) unstable; urgency=low

  * Compile errors on hppa, patch by LaMont Jones (lam...@security.hp.com),
(Closes: #150003).

 -- Rafal Zawadzki blus...@ats.com.pl  Mon, 17 Jun 2002 11:50:02 +0200

wmget (0.4.2-1) unstable; urgency=low

  * Initial release.

 -- Rafal Zawadzki blus...@ats.com.pl  Fri, 31 May 2002 10:54:37 +0200

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1422812

Title:
  Sync wmget 0.6.0-4 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1422812/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1402004] Re: Move Unity Greeter badge to unity-greeter-badges package

2015-01-18 Thread Doug Torrance
** Branch linked: lp:unity-greeter-badges

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402004

Title:
  Move Unity Greeter badge to unity-greeter-badges package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1402004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1402004] Re: Move Unity Greeter badge to unity-greeter-badges package

2015-01-18 Thread Doug Torrance
A new upstream version of unity-greeter-badges was just released.  I've
prepared a new package in the lp:unity-greeter-badges branch.

It includes the addition of the Window Maker badge, along with the
necessary Breaks/Replaces on wmaker-common  0.95.6-1~.  However, since
0.95.6-1 is still sitting in the NEW queue.  Should we wait?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402004

Title:
  Move Unity Greeter badge to unity-greeter-badges package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1402004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1402004] Re: Move Unity Greeter badge to unity-greeter-badges package

2015-01-18 Thread Doug Torrance
Done.  The merge proposal is at [1].

[1] https://code.launchpad.net/~profzoom/ubuntu/vivid/unity-greeter-
badges/bump-to-version-0.3/+merge/246852

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402004

Title:
  Move Unity Greeter badge to unity-greeter-badges package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1402004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: [needs-packaging] Add package containing Unity Greeter badges

2015-01-17 Thread Doug Torrance
Oh great! I'll work on updating the package soon.

A different host with version numbers in the URL would be nice.  :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  [needs-packaging] Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/motif/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1402004] Re: Move Unity Greeter badge to unity-greeter-badges package

2015-01-16 Thread Doug Torrance
** Also affects: unity-greeter-badges (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402004

Title:
  Move Unity Greeter badge to unity-greeter-badges package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter-badges/+bug/1402004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: [needs-packaging] Add package containing Unity Greeter badges

2015-01-16 Thread Doug Torrance
** Changed in: unity-greeter (Ubuntu)
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  [needs-packaging] Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/motif/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1402004] Re: Move Unity Greeter badge to unity-greeter-badges package

2015-01-06 Thread Doug Torrance
Thanks, will do.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402004

Title:
  Move Unity Greeter badge to unity-greeter-badges package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1402004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1407358] [NEW] Sync wmcliphist 2.1-1 (universe) from Debian unstable (main)

2015-01-03 Thread Doug Torrance
Public bug reported:

Please sync wmcliphist 2.1-1 (universe) from Debian unstable (main)

All changelog entries:

wmcliphist (2.1-1) unstable; urgency=medium

  * New upstream release.
  * New maintainer (Closes: #533373).
  * debian/compat
- Bump to 9.
  * debian/control
- Bump versioned dependency on debhelper to =9.
- Add Homepage and Vcs-* fields.
- Remove Build-Depends on dockbook-to-man and dpatch.
- Replace Build-Depends on libglib1.2-dev and libgtk1.2-dev with
  libgtk-3-dev.
- Add ${misc:Depends} to Depends.
- Bump Standards-Version to 3.9.6.
  * debian/copyright
- Update to DEP 5 (version 1.0) format.
  * debian/dirs
- Remove unnecessary file.
  * debian/docs
- Remove debian/wmcliphistrc; nonexistent file.
  * debian/examples
- New file; add wmcliphistrc.
  * debian/menu
- Update section.
- Quote strings.
  * debian/patches
- (deprecated-declarations.patch, maybe-uninitialized.patch) Fix compiler
  warnings.
  * debian/rules
- Update to use dh.
- Add get-orig-source target.
- Add -Wl,--as-needed to LDFLAGS; avoids useless dependency warnings
  from dpkg-shlibdeps.
  * debian/source/format
- New file; use 3.0 (quilt).
  * debian/watch
- New file.
  * debian/wmcliphist.sgml
- Remove file; was used to generate manpage, which is now included upstream.

 -- Doug Torrance dtorra...@monmouthcollege.edu  Sun, 23 Nov 2014
12:53:22 -0600

wmcliphist (0.6-4) unstable; urgency=low

  * Orphan the package.

 -- Sebastian Ley l...@debian.org  Sat, 08 Sep 2007 16:21:48 +0200

wmcliphist (0.6-3) unstable; urgency=low

  * Drop the build dependency on xlibs-dev (Closes: #347114).

 -- Sebastian Ley l...@debian.org  Tue, 10 Jan 2006 13:01:13 +0100

wmcliphist (0.6-2) unstable; urgency=low

  * Add -s option to manpage (Closes: #244082).

 -- Sebastian Ley l...@debian.org  Fri, 16 Apr 2004 19:25:27 +0200

wmcliphist (0.6-1) unstable; urgency=low

  * New upstream release.
- Upstream applied Micheal Beattie's patch for better execution handling
  (Closes: #204151).
  * Change maintainer field to my debian.org address.
  * Update Standards-Version to 3.6.1.0 (no changes).

 -- Sebastian Ley l...@debian.org  Tue,  2 Sep 2003 00:46:48 +0200

wmcliphist (0.5-1) unstable; urgency=low

  * New upstream release.
  * Remove patch for the Makefile. Upstream has incorporated this.

 -- Sebastian Ley sebastian@mmweg.rwth-aachen.de  Mon, 30 Jun 2003
00:05:10 +0200

wmcliphist (0.4-1) unstable; urgency=low

  * New upstream release.
  * Remove patch to generate an rc file. Upstream has incorporated this.
  * Correct copyright information. wmcliphist is published under the GPL.
  * Update Standards-Version to 3.5.10 (no changes).
  * Install a sample wmcliphistrc file into /usr/share/doc/wmcliphist and post
a note about this in the manpage (Closes: #198972).

 -- Sebastian Ley sebastian@mmweg.rwth-aachen.de  Thu, 12 Jun 2003
15:26:23 +0200

wmcliphist (0.3-1) unstable; urgency=low

  * Initial release (Closes: #187438).

 -- Sebastian Ley sebast...@coyote.mmweg.rwth-aachen.de  Tue,  8 Apr
2003 23:45:20 +0200

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1407358

Title:
  Sync wmcliphist 2.1-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1407358/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: [needs-packaging] Add package containing Unity Greeter badges

2014-12-13 Thread Doug Torrance
Thank you!  I unsubscribed ubuntu-sponsors.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  [needs-packaging] Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/motif/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1402004] [NEW] Move Unity Greeter badge to unity-greeter-badges package

2014-12-12 Thread Doug Torrance
Public bug reported:

Currently, the only difference between the Debian and Ubuntu wmaker
packages is the addition of a Unity Greeter badge in Ubuntu.   (I'm
actually the one responsible for this [1].)

I'm in the process of creating a package, unity-greeter-badges, which
contains lots of these sorts of badges [2].  I propose that the Window
Maker badge be moved from wmaker-common to unity-greeter-badges.

Currently, wmaker version 0.95.6-1 is in the Debian NEW queue [3].
Perhaps the easiest way to achieve this would be to let the Debian
package migrate to Ubuntu without any modifications.

[1] https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1079925
[2] https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1396851
[3] https://ftp-master.debian.org/new/wmaker_0.95.6-1.html

** Affects: wmaker (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1402004

Title:
  Move Unity Greeter badge to unity-greeter-badges package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1402004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1079599] Re: Generated submenu causes Window Maker to crash

2014-12-12 Thread Doug Torrance
This bug was fixed in Window Maker 0.95.4, which appeared in saucy.

** Changed in: wmaker (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1079599

Title:
  Generated submenu causes Window Maker to crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1079599/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: [needs-packaging] Add package containing Unity Greeter badges

2014-12-10 Thread Doug Torrance
@Graham:  Thanks again for the comments!  I've added your suggested
changes and poked #ubuntu-motu looking for another sponsor.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  [needs-packaging] Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/motif/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: [needs-packaging] Add package containing Unity Greeter badges

2014-12-08 Thread Doug Torrance
Thanks for the comments!

Daniel: Tarballs are available at [1].  I didn't create these badges.
I'm just packaging them.  I didn't include a debian/watch because there
didn't appear to be an obvious way to get the version number from the
url.

Graham: I think  2.3.4-7 would also work.

Perhaps Enhances: unity-greeter would be more appropriate than Depends?
(Assuming this package is Ubuntu-specific, which seems like the correct
route to me.)

[1] http://gnome-look.org/content/show.php/?content=158764

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  [needs-packaging] Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1396851] Re: [needs-packaging] Add package containing Unity Greeter badges

2014-12-02 Thread Doug Torrance
On 12/02/2014 01:41 AM, Graham Inggs wrote:
 Great!  I guess I'll need to upload motif 2.3.4-7 without the mwm badge
 then and unity-greeter-badges should conflicts/replaces on mwm =
 2.3.4-7.

I've just pushed a new revision to Launchpad adding the mwm badge.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  [needs-packaging] Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: [needs-packaging] Add package containing Unity Greeter badges

2014-12-01 Thread Doug Torrance
Thanks for the comments!

I'd be happy to add the mwm badge.

I didn't try and get this package into Debian as it seems very Ubuntu-
specific.  For example, unity-greeter itself isn't in Debian.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  [needs-packaging] Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: Add package containing Unity Greeter badges

2014-11-27 Thread Doug Torrance
Hello!

I am looking for sponsors for my new package, unity-greeter-badges.
It's available on on Launchpad [1].

Thank you,
Doug Torrance

[1] https://code.launchpad.net/~profzoom/+junk/unity-greeter-badges

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] [NEW] Add package containing Unity Greeter badges

2014-11-26 Thread Doug Torrance
Public bug reported:

Currently, only a small number of potential desktops have badges shipped
with Unity Greeter.  Other desktops are supposed to ship their own [1].
However, some desktop packagers would prefer not to do this.  For
example, the MATE packagers would prefer to keep the packages the same
in Debian and Ubuntu, and therefore would like to avoid an Ubuntu-
specific patch like adding a Unity Greeter badge [2].

One solution, which would keep these badges both out of the unity-
greeter package and out of the various desktop packages, would be to
package the badges available at [3] together in a single package.  I am
an experienced Debian maintainer and plan to create such a package soon.

[1] https://lists.ubuntu.com/archives/ubuntu-devel/2012-February/034800.html
[2] 
https://code.launchpad.net/~profzoom/ubuntu/vivid/mate-session-manager/mate-session-manager-fix-1393010/+merge/241874
[3] http://gnome-look.org/content/show.php/?content=158764

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: needs-packaging

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: Add package containing Unity Greeter badges

2014-11-26 Thread Doug Torrance
** Changed in: ubuntu
 Assignee: (unassigned) = Doug Torrance (profzoom)

** Changed in: ubuntu
   Status: New = In Progress

** Package changed: ubuntu = unity-greeter (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1396851] Re: Add package containing Unity Greeter badges

2014-11-26 Thread Doug Torrance
** Branch linked: lp:~profzoom/+junk/unity-greeter-badges

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1396851

Title:
  Add package containing Unity Greeter badges

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1396851/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1393010] Re: No Unity Greeter badge

2014-11-25 Thread Doug Torrance
*** This bug is a duplicate of bug 1050467 ***
https://bugs.launchpad.net/bugs/1050467

** This bug has been marked a duplicate of bug 1050467
   MATE shows a blank session icon

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1393010

Title:
  No Unity Greeter badge

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mate-session-manager/+bug/1393010/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1393010] [NEW] No Unity Greeter badge

2014-11-15 Thread Doug Torrance
Public bug reported:

Currently, Mate has no Unity Greeter badge.  As outlined in [1],
derivatives should ship their own.  Many Unity Greeter badges are
available, including one for Mate, at [2].

[1] https://lists.ubuntu.com/archives/ubuntu-devel/2012-February/034800.html
[2] http://gnome-look.org/content/show.php/?content=158764

** Affects: mate-session-manager (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1393010

Title:
  No Unity Greeter badge

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mate-session-manager/+bug/1393010/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1393010] Re: No Unity Greeter badge

2014-11-15 Thread Doug Torrance
I have proposed a fix for this bug at [1].

[1] https://code.launchpad.net/~profzoom/ubuntu/vivid/mate-session-
manager/mate-session-manager-fix-1393010/+merge/241874

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1393010

Title:
  No Unity Greeter badge

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mate-session-manager/+bug/1393010/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1079599] Re: Generated submenu causes Window Maker to crash

2012-12-11 Thread Doug Torrance
Window Maker 0.95.4 hasn't been released yet.  I imagine kix will
package it for Debian when it is released, and it will eventually find
its way into Ubuntu.  In the meantime, I have a relatively recent
version of Window Maker from git in my PPA:

https://launchpad.net/~profzoom/+archive/wmaker

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1079599

Title:
  Generated submenu causes Window Maker to crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1079599/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1079925] Re: No icon for Unity Greeter

2012-11-27 Thread Doug Torrance
** Branch linked: lp:~profzoom/+junk/wmaker

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1079925

Title:
  No icon for Unity Greeter

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1079925/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1079925] [NEW] No icon for Unity Greeter

2012-11-16 Thread Doug Torrance
Public bug reported:

Currently, Window Maker does not provide an icon for Unity Greeter.  I created 
one using the directions found at
https://lists.ubuntu.com/archives/ubuntu-devel/2012-February/034800.html

I have attached a patch.  The icon is available at
http://wmaker.friedcheese.org/downloads/custom_wmaker-common_badge.png

** Affects: wmaker (Ubuntu)
 Importance: Undecided
 Status: New

** Patch added: unity-greeter-icon.patch
   
https://bugs.launchpad.net/bugs/1079925/+attachment/3436095/+files/unity-greeter-icon.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1079925

Title:
  No icon for Unity Greeter

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wmaker/+bug/1079925/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs