Bug#1072810: pytest 8 regression with flaky test plugins

2024-06-08 Thread Chris Peterson
Package: pytest
Version: 8.2.2-1
Severity: important
Tags: patch
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch




Hi,

Pytest 8.2.2 introduced a regression in flaky test plugins (e.g.
pytest-rerunfailures and python-flaky) that causes AssertionErrors when
re-running tests in test classes which inherit from unittest.TestCase.
I applied the following patch in Ubuntu to fix the issue.

  * 0003-pytest8-testcase-assertion.patch: Fixes unittest regression in
flaky test plugins (LP: #2068642).

Thanks for considering the patch.


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru pytest-8.2.2/debian/patches/0003-pytest8-testcase-assertion.patch 
pytest-8.2.2/debian/patches/0003-pytest8-testcase-assertion.patch
--- pytest-8.2.2/debian/patches/0003-pytest8-testcase-assertion.patch   
1969-12-31 16:00:00.0 -0800
+++ pytest-8.2.2/debian/patches/0003-pytest8-testcase-assertion.patch   
2024-06-07 15:23:04.0 -0700
@@ -0,0 +1,48 @@
+Description: Fix unittest regressions for flaky test plugins
+ A change in the behavior of the unittest teardown function caused a
+ regression in plugins that re-ran tests. Namely python-flaky and
+ pytest-rerunfailures. This patch was cherry-picked from an upstream
+ PR.
+Origin: upstream, https://github.com/pytest-dev/pytest/pull/12436
+Bug: https://github.com/pytest-dev/pytest/issues/12424
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/pytest/+bug/2068642
+Forwarded: not-needed
+Last-Update: 2024-06-07
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/_pytest/unittest.py
 b/src/_pytest/unittest.py
+@@ -216,7 +216,7 @@
+ self._explicit_tearDown()
+ self._explicit_tearDown = None
+ self._obj = None
+-self._instance = None
++del self._instance
+ super().teardown()
+ 
+ def startTest(self, testcase: "unittest.TestCase") -> None:
+--- /dev/null
 b/testing/plugins_integration/pytest_rerunfailures_integration.py
+@@ -0,0 +1,11 @@
++import unittest
++
++
++class MyTestCase(unittest.TestCase):
++first_time = True
++
++def test_fail_the_first_time(self) -> None:
++"""Regression test for issue #12424."""
++if self.first_time:
++type(self).first_time = False
++self.fail()
+--- a/tox.ini
 b/tox.ini
+@@ -143,7 +143,7 @@
+ pytest --cov=. simple_integration.py
+ pytest --ds=django_settings simple_integration.py
+ pytest --html=simple.html simple_integration.py
+-pytest --reruns 5 simple_integration.py
++pytest --reruns 5 simple_integration.py 
pytest_rerunfailures_integration.py
+ pytest pytest_anyio_integration.py
+ pytest pytest_asyncio_integration.py
+ pytest pytest_mock_integration.py
diff -Nru pytest-8.2.2/debian/patches/series pytest-8.2.2/debian/patches/series
--- pytest-8.2.2/debian/patches/series  2024-06-05 06:34:35.0 -0700
+++ pytest-8.2.2/debian/patches/series  2024-06-07 09:09:35.0 -0700
@@ -1,2 +1,3 @@
 0001-Use-local-intersphinx-mappings.patch
 0002-Disable-Sphinx-extensions.patch
+0003-pytest8-testcase-assertion.patch


Bug#1063945: ipython: Ubuntu patch for pytest 8 support

2024-06-08 Thread Chris Peterson
Package: ipython
Version: 8.20.0-1
Followup-For: Bug #1063945
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch
Control: tags -1 patch



Hi,

I identified two patches from upstream that solved this issue but
aren't available in the currently packaged version. I applied the
following in Ubuntu to solve the issue:

  * Update pytest and tests for pytest 8 compatibility (LP: #2068674).
- d/p/pytest8-nose-tests.patch: update nose-style tests for pytest 8.2+
- d/p/support-pytest-plugin.patch: update pytest plugin for pytest 8.1+


Thanks for considering the patches.


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru ipython-8.20.0/debian/patches/pytest8-nose-tests.patch 
ipython-8.20.0/debian/patches/pytest8-nose-tests.patch
--- ipython-8.20.0/debian/patches/pytest8-nose-tests.patch  1969-12-31 
16:00:00.0 -0800
+++ ipython-8.20.0/debian/patches/pytest8-nose-tests.patch  2024-06-06 
17:10:18.0 -0700
@@ -0,0 +1,32 @@
+Description: Update nose-style tests for pytest 8 compatbility
+ Pytest dropped support for nose-style tests in pytest 8. This patch cherry-
+ picks the patch from upstream to fix the offending tests. This patch can
+ be dropped in version 8.24.0.
+Author: Chris Peterson 
+Origin: upstream, 
https://github.com/ipython/ipython/commit/cdacafdccaf1f562e59b21b3c9f2c1a28eba54da
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ipython/+bug/2068674
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1063945
+Forwarded: not-needed
+Last-Update: 2024-06-06
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/IPython/core/tests/test_pylabtools.py
 b/IPython/core/tests/test_pylabtools.py
+@@ -165,7 +165,7 @@
+ def enable_gui(self, gui):
+ pass
+ 
+-def setup(self):
++def setup_method(self):
+ import matplotlib
+ def act_mpl(backend):
+ matplotlib.rcParams['backend'] = backend
+@@ -184,7 +184,7 @@
+ self._save_cis = backend_inline.configure_inline_support
+ backend_inline.configure_inline_support = lambda *a, **kw: None
+ 
+-def teardown(self):
++def teardown_method(self):
+ pt.activate_matplotlib = self._save_am
+ pt.import_pylab = self._save_ip
+ backend_inline.configure_inline_support = self._save_cis
diff -Nru ipython-8.20.0/debian/patches/series 
ipython-8.20.0/debian/patches/series
--- ipython-8.20.0/debian/patches/series2024-01-14 16:32:19.0 
-0800
+++ ipython-8.20.0/debian/patches/series2024-06-06 17:10:38.0 
-0700
@@ -1,2 +1,4 @@
 0002-Update-intersphinx-links-for-local-access.patch
 0003-Drop-setuptools-data_files.patch
+pytest8-nose-tests.patch
+support-pytest-plugin.patch
diff -Nru ipython-8.20.0/debian/patches/support-pytest-plugin.patch 
ipython-8.20.0/debian/patches/support-pytest-plugin.patch
--- ipython-8.20.0/debian/patches/support-pytest-plugin.patch   1969-12-31 
16:00:00.0 -0800
+++ ipython-8.20.0/debian/patches/support-pytest-plugin.patch   2024-06-06 
17:22:13.0 -0700
@@ -0,0 +1,120 @@
+Description: Update pytest plugin for pytest 8
+ Pytest 8.1 changed the plugin API. This patch cherry-picks the upstream
+ modifications to the plugin for pytest 8.1+ support. This patch can be
+ dropped with upstream version 8.25.0.
+Author: Chris Peterson 
+Origin: upstream, 
https://github.com/ipython/ipython/commit/7df70a3cd79068be6f98596e427d60a5d0cfe5b3
+Bug: https://github.com/ipython/ipython/issues/14390
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ipython/+bug/2068674
+Forwarded: not-needed
+Last-Update: 2024-06-06
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/IPython/testing/plugin/pytest_ipdoctest.py
 b/IPython/testing/plugin/pytest_ipdoctest.py
+@@ -38,7 +38,11 @@
+ from _pytest.compat import safe_getattr
+ from _pytest.config import Config
+ from _pytest.config.argparsing import Parser
+-from _pytest.fixtures import FixtureRequest
++
++try:
++from _pytest.fixtures import TopRequest as FixtureRequest
++except ImportError:
++from _pytest.fixtures import FixtureRequest
+ from _pytest.nodes import Collector
+ from _pytest.outcomes import OutcomeException
+ from _pytest.pathlib import fnmatch_ex
+@@ -68,6 +72,8 @@
+ # Lazy definition of output checker class
+ CHECKER_CLASS: Optional[Type["IPDoctestOutputChecker"]] = None
+ 
++pytest_version = tuple([int(part) for part in pytest.__version__.split(".&

Bug#1070112: ipykernel: Ubuntu patch for pytest 8 support

2024-06-08 Thread Chris Peterson
Package: ipykernel
Version: 6.29.3-1
Followup-For: Bug #1070112
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch
Control: tags -1 patch



Hi,

I applied the following patch in Ubuntu to fix this issue.

  * pytest8-nose-deprecation.patch: update tests for pytest 8 compatibility
(LP: #2068672).


Thanks for considering the patch.


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru ipykernel-6.29.3/debian/patches/pytest8-nose-deprecation.patch 
ipykernel-6.29.3/debian/patches/pytest8-nose-deprecation.patch
--- ipykernel-6.29.3/debian/patches/pytest8-nose-deprecation.patch  
1969-12-31 16:00:00.0 -0800
+++ ipykernel-6.29.3/debian/patches/pytest8-nose-deprecation.patch  
2024-06-06 16:39:16.0 -0700
@@ -0,0 +1,95 @@
+Description: Update tests for pytest 8 compatibility
+ Pytest 8 deprecated support for nose-style tests. This patch cherrry-picks
+ changes from upstream to modify tests to run with pytest 8.
+Author: Chris Peterson 
+Origin: upstream, 
https://github.com/ipython/ipykernel/commit/a7d66ae2197e0d7471ba160542cf5ff7713084b5
+Bug: https://github.com/ipython/ipykernel/issues/1230
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ipykernel/+bug/2068672
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1070112
+Forwarded: not-needed
+Last-Update: 2024-06-06
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/tests/__init__.py
 b/tests/__init__.py
+@@ -7,6 +7,8 @@
+ import tempfile
+ from unittest.mock import patch
+ 
++import pytest
++
+ from ipykernel.kernelspec import install
+ 
+ pjoin = os.path.join
+@@ -15,7 +17,8 @@
+ patchers: list = []
+ 
+ 
+-def setup():
++@pytest.fixture(autouse=True)
++def _global_setup():
+ """setup temporary env for tests"""
+ global tmp
+ tmp = tempfile.mkdtemp()
+@@ -35,8 +38,8 @@
+ # install IPython in the temp home:
+ install(user=True)
+ 
++yield
+ 
+-def teardown():
+ for p in patchers:
+ p.stop()
+ 
+--- a/tests/test_eventloop.py
 b/tests/test_eventloop.py
+@@ -42,14 +42,15 @@
+ _get_qt_vers()
+ 
+ 
+-def setup():
++@pytest.fixture(autouse=True)
++def _setup_env():
+ """start the global kernel (if it isn't running) and return its client"""
+ global KM, KC
+ KM, KC = start_new_kernel()
+ flush_channels(KC)
+ 
++yield
+ 
+-def teardown():
+ assert KM is not None
+ assert KC is not None
+ KC.stop_channels()
+--- a/tests/test_message_spec.py
 b/tests/test_message_spec.py
+@@ -21,7 +21,8 @@
+ KC: BlockingKernelClient = None  # type:ignore
+ 
+ 
+-def setup():
++@pytest.fixture(autouse=True)
++def _setup_env():
+ global KC
+ KC = start_global_kernel()
+ 
+--- a/tests/test_async.py
 b/tests/test_async.py
+@@ -8,14 +8,15 @@
+ KC = KM = None
+ 
+ 
+-def setup_function():
++@pytest.fixture(autouse=True)
++def _setup_env():
+ """start the global kernel (if it isn't running) and return its client"""
+ global KM, KC
+ KM, KC = start_new_kernel()
+ flush_channels(KC)
+ 
++yield
+ 
+-def teardown_function():
+ assert KC is not None
+ assert KM is not None
+ KC.stop_channels()
diff -Nru ipykernel-6.29.3/debian/patches/series 
ipykernel-6.29.3/debian/patches/series
--- ipykernel-6.29.3/debian/patches/series  2024-01-11 14:25:38.0 
-0800
+++ ipykernel-6.29.3/debian/patches/series  2024-06-06 16:22:48.0 
-0700
@@ -1,2 +1,3 @@
 0002-test_simple_print-may-produce-stderr-content-when-ex.patch
 0003-Made-build-reproducible-patch-by-Daniel-Shahaf.patch
+pytest8-nose-deprecation.patch


Bug#1063967: protontricks: Forward pytest 8 support patch from Ubuntu

2024-06-08 Thread Chris Peterson
Package: protontricks
Version: 1.10.5-1
Followup-For: Bug #1063967
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch
Control: tags -1 patch



Hi,

I applied the following patch in Ubuntu to fix this issue.


  * pytest8-caplog.patch: Update tests for pytest 8 compatibility
(LP: #2068659).


Thanks for considering the patch.


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru protontricks-1.10.5/debian/patches/pytest8-caplog.patch 
protontricks-1.10.5/debian/patches/pytest8-caplog.patch
--- protontricks-1.10.5/debian/patches/pytest8-caplog.patch 1969-12-31 
16:00:00.0 -0800
+++ protontricks-1.10.5/debian/patches/pytest8-caplog.patch 2024-06-06 
12:27:04.0 -0700
@@ -0,0 +1,37 @@
+Description: Update test for pytest 8 comptability
+ Pytest 8 now includes all log levels in the caplog fixture. Apply upstream
+ changes to test case which ensures warning messages are logged. Can be dropped
+ in upstream version 1.11.1
+Author: Chris Peterson 
+Origin: upstream, 
https://github.com/Matoking/protontricks/commit/bb1da5a0ddcac1cbd577fd54fe947ff6ad1731bc
+Bug: https://github.com/Matoking/protontricks/issues/283
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/pytest/+bug/2068659
+Forwarded: not-needed
+Last-Update: 2024-06-06
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/tests/test_gui.py
 b/tests/test_gui.py
+@@ -207,7 +207,7 @@
+ assert steam_app == steam_apps[1]
+ assert (
+ "Your system locale is incapable of displaying all characters"
+-in caplog.records[0].message
++in caplog.records[-1].message
+ )
+ 
+ @pytest.mark.parametrize("gui_cmd", ["yad", "zenity"])
+--- a/tests/conftest.py
 b/tests/conftest.py
+@@ -44,6 +44,11 @@
+ logging.getLogger("protontricks").handlers.clear()
+ 
+ 
++@pytest.fixture(scope="function", autouse=True)
++def default_caplog(caplog):
++caplog.set_level(logging.INFO)
++
++
+ @pytest.fixture(scope="function")
+ def verbose_logging():
+ """
diff -Nru protontricks-1.10.5/debian/patches/series 
protontricks-1.10.5/debian/patches/series
--- protontricks-1.10.5/debian/patches/series   1969-12-31 16:00:00.0 
-0800
+++ protontricks-1.10.5/debian/patches/series   2024-06-06 12:26:50.0 
-0700
@@ -0,0 +1 @@
+pytest8-caplog.patch


Bug#1072808: python-dtcwt: autopkgtests fail with pytest 8.2

2024-06-08 Thread Chris Peterson
Package: python-dtcwt
Version: 0.12.0-5
Severity: normal
Tags: patch
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch



Hi,

Pytest dropped support for nose-style tests in pytest 8.2, of which
python-dtcwt currently relies on for its tests. I applied the following
patch in Ubuntu to adjust the package for pytest 8.2+ support.

  * d/p/pytest-nose-deprecation.patch: Update tests for pytest 8 compatibility
(LP: #2068558).


Thanks for considering the patch.


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru python-dtcwt-0.12.0/debian/patches/pytest-nose-deprecation.patch 
python-dtcwt-0.12.0/debian/patches/pytest-nose-deprecation.patch
--- python-dtcwt-0.12.0/debian/patches/pytest-nose-deprecation.patch
1969-12-31 16:00:00.0 -0800
+++ python-dtcwt-0.12.0/debian/patches/pytest-nose-deprecation.patch
2024-06-05 21:53:51.0 -0700
@@ -0,0 +1,186 @@
+Description: Update nose-style test for pytest 8
+ Pytest 8 dropped support for nose style tests, which rely on module level
+ functions named "setup". These tests can be migrated to pytest style tests
+ by renaming the setup functions to "setup_module".
+Author: Chris Peterson 
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/python-dtcwt/+bug/2068558
+Forwarded: https://github.com/rjw57/dtcwt/pull/146
+Last-Update: 2024-06-06
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/tests/test_againstmatlab.py
 b/tests/test_againstmatlab.py
+@@ -49,7 +49,7 @@
+ def assert_percentile_almost_equal_to_summary_cube(a, summary, *args, 
**kwargs):
+ assert_percentile_almost_equal(summarise_cube(a), summary, *args, 
**kwargs)
+ 
+-def setup():
++def setup_module():
+ global mandrill
+ mandrill = datasets.mandrill()
+ 
+--- a/tests/test_coldfilt.py
 b/tests/test_coldfilt.py
+@@ -7,7 +7,7 @@
+ 
+ import tests.datasets as datasets
+ 
+-def setup():
++def setup_module():
+ global mandrill
+ mandrill = datasets.mandrill()
+ 
+--- a/tests/test_colfilter.py
 b/tests/test_colfilter.py
+@@ -6,7 +6,7 @@
+ 
+ import tests.datasets as datasets
+ 
+-def setup():
++def setup_module():
+ global mandrill
+ mandrill = datasets.mandrill()
+ 
+--- a/tests/test_colifilt.py
 b/tests/test_colifilt.py
+@@ -7,7 +7,7 @@
+ 
+ import tests.datasets as datasets
+ 
+-def setup():
++def setup_module():
+ global mandrill
+ mandrill = datasets.mandrill()
+ 
+--- a/tests/test_ifm2.py
 b/tests/test_ifm2.py
+@@ -7,7 +7,7 @@
+ 
+ TOLERANCE = 1e-12
+ 
+-def setup():
++def setup_module():
+ global mandrill, mandrill_crop
+ mandrill = datasets.mandrill().astype(np.float64)
+ mandrill_crop = mandrill[:233, :301]
+--- a/tests/test_openclcoldfilt.py
 b/tests/test_openclcoldfilt.py
+@@ -10,7 +10,7 @@
+ from .util import assert_almost_equal, skip_if_no_cl
+ import tests.datasets as datasets
+ 
+-def setup():
++def setup_module():
+ global mandrill
+ mandrill = datasets.mandrill()
+ 
+--- a/tests/test_openclcolfilter.py
 b/tests/test_openclcolfilter.py
+@@ -8,7 +8,7 @@
+ from .util import assert_almost_equal, skip_if_no_cl
+ import tests.datasets as datasets
+ 
+-def setup():
++def setup_module():
+ global mandrill
+ mandrill = datasets.mandrill()
+ 
+--- a/tests/test_openclcolifilt.py
 b/tests/test_openclcolifilt.py
+@@ -10,7 +10,7 @@
+ from .util import assert_almost_equal, skip_if_no_cl
+ import tests.datasets as datasets
+ 
+-def setup():
++def setup_module():
+ global mandrill
+ mandrill = datasets.mandrill()
+ 
+--- a/tests/test_openclxfm2.py
 b/tests/test_openclxfm2.py
+@@ -12,7 +12,7 @@
+ TOLERANCE = 1e-12
+ GOLD_TOLERANCE = 1e-5
+ 
+-def setup():
++def setup_module():
+ global mandrill
+ mandrill = datasets.mandrill()
+ 
+--- a/tests/test_reflect.py
 b/tests/test_reflect.py
+@@ -2,7 +2,7 @@
+ 
+ from dtcwt.utils import reflect
+ 
+-def setup():
++def setup_module():
+ global ramp, reflected
+ 
+ # Create a simple linear ramp and reflect it
+--- a/tests/test_registration.py
 b/tests/test_registration.py
+@@ -8,7 +8,7 @@
+ 
+ import tests.datasets as datasets
+ 
+-def setup():
++def setup_module():
+ global f1, f2
+ f1, f2 = datasets.regframes('traffic')
+ 
+--- a/tests/test_tfTransform1d.py
 b/tests/test_tfTransform1d.py
+@@ -18,7 +18,7 @@
+ 
+ 
+ @skip_if_no_tf
+-def setup():
++def setup_module():
+ global mandrill, in_p, pyramid_ops
+ global tf, Transform1d, dtwavexfm2, dt

Bug#1072703: python3-flaky: autopkgtest failure against pytest 8.2.2-1

2024-06-06 Thread Chris Peterson
Package: python3-flaky
Version: 3.8.1-2
Severity: normal
X-Debbugs-Cc: chris.peter...@canonical.com

Hello,

It appears python-flaky's autopkgtests are broken due to (what appears
to be) a bug [1] in pytest 8.2.2-1. [1] is the upstream pytest bug that is
tracking the issue. I opened a bug in upstream python-flaky [2] and
in Ubuntu [3] to track the issue in those places as well.


Thank you,
Chris

[1] https://github.com/pytest-dev/pytest/issues/12424
[2] https://github.com/box/flaky/issues/212
[3] https://bugs.launchpad.net/ubuntu/+source/python-flaky/+bug/2068642


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages python3-flaky depends on:
ii  python3  3.12.3-0ubuntu1

python3-flaky recommends no packages.

python3-flaky suggests no packages.



Bug#1072655: silx: no-opencl tests fail with pytest8.2

2024-06-05 Thread Chris Peterson
Package: silx
Version: 2.0.1+dfsg-3
Severity: normal
Tags: patch
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch


Dear maintainer,

silx's autopkgtests (the no-opencl tests in partiuclar) fail with pytest 8.2
due to a known issue upstream [1]. It hasn't been committed upstream,
but there is an open PR to fix the issue [2]. I cherry-picked the fix
and applied it in Ubuntu to resolve the issue.

  * d/p/0010-SpecFile-deallocation-issue.patch: Fix an issue with pytest
runner segfaulting with Pytest 8.2+ (LP: 2068521).

Thanks for considering the patch.

[1] https://github.com/silx-kit/silx/issues/4128
[2] https://github.com/silx-kit/silx/pull/4129/

-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru silx-2.0.1+dfsg/debian/patches/0010-SpecFile-deallocation-issue.patch 
silx-2.0.1+dfsg/debian/patches/0010-SpecFile-deallocation-issue.patch
--- silx-2.0.1+dfsg/debian/patches/0010-SpecFile-deallocation-issue.patch   
1969-12-31 16:00:00.0 -0800
+++ silx-2.0.1+dfsg/debian/patches/0010-SpecFile-deallocation-issue.patch   
2024-06-05 12:21:03.0 -0700
@@ -0,0 +1,24 @@
+Description: Fixes autopkgtests with pytest 8.2+
+ The clean up for tests in src/silx/io/test/test_specfilewrapper.py was
+ causing the pytest runner to segfault in pytest 8.2, causing the autopkgtests
+ to fail.
+Author: Chris Peterson 
+Origin: upstream, https://github.com/silx-kit/silx/pull/4129/
+Bug: https://github.com/silx-kit/silx/issues/4128
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/silx/+bug/2068521
+Last-Update: 2024-06-05
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/silx/io/specfile.pyx
 b/src/silx/io/specfile.pyx
+@@ -658,8 +658,8 @@
+ else:
+ self.filename = filename
+ 
+-def __dealloc__(self):
+-"""Destructor: Calls SfClose(self.handle)"""
++def __del__(self):
++"""Finalizer: Calls SfClose(self.handle)"""
+ self.close()
+ 
+ def close(self):
diff -Nru silx-2.0.1+dfsg/debian/patches/series 
silx-2.0.1+dfsg/debian/patches/series
--- silx-2.0.1+dfsg/debian/patches/series   2024-04-16 01:47:09.0 
-0700
+++ silx-2.0.1+dfsg/debian/patches/series   2024-06-05 12:05:23.0 
-0700
@@ -2,3 +2,4 @@
 0007-python3.10-fix.patch
 0009-Skip-testing-nanmin-on-float64-arrays-on-mips-el.patch
 0008-deal-with-h5py-until-we-solved-1051781.patch
+0010-SpecFile-deallocation-issue.patch


Bug#1072610: terminado: FTBFS with pytest 8.2 and missing autopkgtest dependency

2024-06-04 Thread Chris Peterson
Package: terminado
Version: 0.18.0-1
Severity: normal
Tags: patch ftbfs
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch




*** /tmp/tmpy5r27gh0/bug_body

In Ubuntu, the attached patch was applied to achieve the following:

Fix two bugs I encountered:

1. The d/t/control is missing the declaration for python3-pytest-timeout
   which causes the autopkgtests to fail.

2. New errors types in Pytest 8.2 further caused the package to fail
   autopkgtests.

  * Update tests for pytest 8.2 compatibility (LP: #2068055).
- d/t/control: insert previously undeclared dependency on
  python3-pytest-timeout
- d/p/unclosed-websockets.patch: apply test fixes from upstream


Thanks for considering the patch.


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru terminado-0.18.0/debian/patches/series 
terminado-0.18.0/debian/patches/series
--- terminado-0.18.0/debian/patches/series  1969-12-31 16:00:00.0 
-0800
+++ terminado-0.18.0/debian/patches/series  2024-06-04 13:21:33.0 
-0700
@@ -0,0 +1 @@
+unclosed-websockets.patch
diff -Nru terminado-0.18.0/debian/patches/unclosed-websockets.patch 
terminado-0.18.0/debian/patches/unclosed-websockets.patch
--- terminado-0.18.0/debian/patches/unclosed-websockets.patch   1969-12-31 
16:00:00.0 -0800
+++ terminado-0.18.0/debian/patches/unclosed-websockets.patch   2024-06-04 
13:45:24.0 -0700
@@ -0,0 +1,54 @@
+Description: Close unclosed websockets in tests
+ Closes unclosed websockets in pytests to avoid Pytest
+ UnraisableExceptionWarning errors. This patch has been applied upstream
+ and can be dropped in 0.18.1
+Author: Chris Peterson 
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/terminado/+bug/2068055
+Forwarded: not-needed
+Applied-Upstream: 
https://github.com/jupyter/terminado/commit/e2c1b0830b5f5994bdfeb4d2c2d3e51e114e40b9#diff-e6bcf9c8a7eb9d493e604bcae41818b790764d53e4d1ad3b0a1763004f94067a
+Last-Update: 2024-06-04
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/tests/basic_test.py
 b/tests/basic_test.py
+@@ -248,6 +248,7 @@
+ assert killed
+ assert not terminal.ptyproc.isalive()
+ assert terminal.ptyproc.closed
++[tm.close() for tm in tms]
+ 
+ @tornado.testing.gen_test
+ @pytest.mark.skipif("linux" not in platform, reason="It only works on 
Linux")
+@@ -260,6 +261,8 @@
+ tm = await self.get_term_client(urls[MAX_TERMS])
+ msg = await tm.read_msg()
+ self.assertEqual(msg, None)  # Connection closed
++tm.close()
++[tm.close() for tm in tms]
+ 
+ 
+ class SingleTermTests(TermTestCase):
+@@ -273,6 +276,7 @@
+ killed = await self.single_tm.terminal.terminate(True)
+ assert killed
+ assert self.single_tm.terminal.ptyproc.closed
++[tm.close() for tm in tms]
+ 
+ 
+ class UniqueTermTests(TermTestCase):
+@@ -281,6 +285,7 @@
+ tms = await self.get_term_clients(["/unique", "/unique"])
+ pids = await self.get_pids(tms)
+ self.assertNotEqual(pids[0], pids[1])
++[tm.close() for tm in tms]
+ 
+ @tornado.testing.gen_test
+ @pytest.mark.skipif("linux" not in platform, reason="It only works on 
Linux")
+@@ -303,6 +308,7 @@
+ tm = await self.get_term_client("/unique")
+ msg = await tm.read_msg()
+ self.assertEqual(msg[0], "setup")
++tm.close()
+ 
+ @tornado.testing.gen_test
+ @pytest.mark.timeout(timeout=ASYNC_TEST_TIMEOUT, method="thread")
diff -Nru terminado-0.18.0/debian/tests/control 
terminado-0.18.0/debian/tests/control
--- terminado-0.18.0/debian/tests/control   2023-12-13 23:24:38.0 
-0800
+++ terminado-0.18.0/debian/tests/control   2024-06-04 13:18:47.0 
-0700
@@ -1,2 +1,2 @@
 Tests: runtestsuite3
-Depends: python3-pytest, python3-terminado
+Depends: python3-pytest, python3-terminado, python3-pytest-timeout


Bug#1018675: yt: patch for nose style tests failing autopkgtest

2024-06-04 Thread Chris Peterson
Package: yt
Version: 4.3.0-1
Followup-For: Bug #1018675
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch
Control: tags -1 patch




*** /tmp/tmpv4mie8nf/bug_body

In Ubuntu, the attached patch was applied to achieve the following:

The nose style tests have been fixed upstream but have yet to be updated
in the packaging. I applied the following patch in Ubuntu to just fix
the ones causing the autopkgtests to fail. It can be dropped once the new
upstream version has been uploaded.

  * d/p/test-alt-ray-tracers-pytest-module-funcs.patch (LP: #2068046)
- Update test module for Pytest 8 compatibility


Thanks for considering the patch.


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular'), (100, 'oracular-proposed')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru yt-4.3.0/debian/patches/series yt-4.3.0/debian/patches/series
--- yt-4.3.0/debian/patches/series  2023-12-26 12:02:21.0 -0800
+++ yt-4.3.0/debian/patches/series  2024-06-04 10:21:31.0 -0700
@@ -9,3 +9,4 @@
 Ignore-invalid-value-warnings-which-may-appear-on-mipsel.patch
 Skip-test-that-leads-to-a-mem-alloc-error-on-mipsel.patch
 TST-fix-an-incompatibility-with-unyt-3.0-amu_cgs-doesn-t-.patch
+test-alt-ray-tracers-pytest-module-funcs.patch
diff -Nru 
yt-4.3.0/debian/patches/test-alt-ray-tracers-pytest-module-funcs.patch 
yt-4.3.0/debian/patches/test-alt-ray-tracers-pytest-module-funcs.patch
--- yt-4.3.0/debian/patches/test-alt-ray-tracers-pytest-module-funcs.patch  
1969-12-31 16:00:00.0 -0800
+++ yt-4.3.0/debian/patches/test-alt-ray-tracers-pytest-module-funcs.patch  
2024-06-04 10:45:13.0 -0700
@@ -0,0 +1,32 @@
+Description: update yt/u/l/t/test_alt_ray_tracers.py for pytest 8
+ Update the yt/utilities/lib/tests/test_alt_ray_tracers.py module
+ for compatibility with pytest 8, which dropped support for nose
+ style tests. This change is a subset of the larger changes made
+ upstream and can be dropped in 4.3.1.
+Author: Chris Peterson 
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/yt/+bug/2068046
+Forwarded: not-needed
+Applied-Upstream: 
https://github.com/yt-project/yt/commit/a6e392ea199593511a43703256419d21e7e3c8bc
+Last-Update: 2024-06-04
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/yt/utilities/lib/tests/test_alt_ray_tracers.py
 b/yt/utilities/lib/tests/test_alt_ray_tracers.py
+@@ -9,7 +9,7 @@
+ old_settings = None
+ 
+ 
+-def setup():
++def setup_module():
+ # set up some sample cylindrical grid data, radiating out from center
+ global left_grid, right_grid, amr_levels, center_grid, data, old_settings
+ old_settings = np.geterr()
+@@ -23,7 +23,7 @@
+ data = np.cos(np.sqrt(np.sum(center_grid[:, :2] ** 2, axis=1))) ** 2  # 
cos^2
+ 
+ 
+-def teardown():
++def teardown_module():
+ np.seterr(**old_settings)
+ 
+ 


Bug#1072575: diffoscope: drop dependency on liblz4-tool

2024-06-04 Thread Chris Peterson
Package: diffoscope
Version: 269
Severity: normal
Tags: patch
X-Debbugs-Cc: chris.peter...@canonical.com
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oracular ubuntu-patch




*** /tmp/tmp7ahjhrzt/bug_body

In Ubuntu, the attached patch was applied to achieve the following:

In lz4 1.9.4-2 the transitional package liblz4-tool was dropped. This
patch drops the dependency of liblz4-tool in diffoscope respectively.

  * Drop liblz4-tool dependency (LP: #2067948).


Thanks for considering the patch.


-- System Information:
Debian Release: trixie/sid
  APT prefers oracular
  APT policy: (500, 'oracular')
Architecture: amd64 (x86_64)

Kernel: Linux 6.8.0-31-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff -Nru diffoscope-269/debian/control diffoscope-269ubuntu1/debian/control
--- diffoscope-269/debian/control   2024-05-31 01:10:35.0 -0700
+++ diffoscope-269ubuntu1/debian/control2024-06-03 13:53:46.0 
-0700
@@ -53,7 +53,7 @@
  libjs-jquery-throttle-debounce ,
  linux-image-amd64 [amd64]  | linux-image-generic [amd64] ,
  llvm ,
- lz4  | liblz4-tool ,
+ lz4 ,
  lzip ,
  mono-utils ,
  ocaml-nox ,
diff -Nru diffoscope-269/debian/tests/control 
diffoscope-269ubuntu1/debian/tests/control
--- diffoscope-269/debian/tests/control 2024-05-31 01:10:35.0 -0700
+++ diffoscope-269ubuntu1/debian/tests/control  2024-06-03 13:53:46.0 
-0700
@@ -7,7 +7,7 @@
 #   $ mv debian/tests/control.tmp debian/tests/control
 
 Tests: pytest-with-recommends
-Depends: python3-all, diffoscope, black, python3-pytest, python3-h5py, file, 
linux-image-amd64 [amd64] | linux-image-generic [amd64], 7zip, aapt [amd64 
arm64 armel armhf i386 mips64el mipsel], abootimg, acl, apksigcopier, 
apksigner, apktool [!ppc64el !s390x], binutils-multiarch, bzip2, caca-utils, 
colord, coreboot-utils, db-util, default-jdk-headless | default-jdk | java-sdk, 
device-tree-compiler, dexdump [amd64 arm64 armhf i386], docx2txt, e2fsprogs, 
enjarify, ffmpeg, fontforge-extras, fonttools, fp-utils [!ppc64el !s390x], 
genisoimage, gettext, ghc, ghostscript, giflib-tools, gnumeric, gnupg-utils, 
gpg, hdf5-tools, html2text, imagemagick, jsbeautifier, libarchive-tools, 
libxmlb-utils, llvm, lz4 | liblz4-tool, lzip, mono-utils, ocaml-nox, odt2txt, 
oggvideotools [!s390x], openssh-client, openssl, perl, pgpdump, poppler-utils, 
procyon-decompiler, python3-pdfminer, r-base-core, rpm2cpio, sng, sqlite3, 
squashfs-tools, tcpdump, u-boot-tools, unzip, wabt, xmlbeans, xxd, xz-utils, 
zip, zstd, androguard, python3-argcomplete, python3-binwalk, 
python3-defusedxml, python3-distro, python3-guestfs, python3-jsondiff, 
python3-progressbar, python3-pypdf, python3-debian, python3-pyxattr, 
python3-rpm, python3-tlsh
+Depends: python3-all, diffoscope, black, python3-pytest, python3-h5py, file, 
linux-image-amd64 [amd64] | linux-image-generic [amd64], 7zip, aapt [amd64 
arm64 armel armhf i386 mips64el mipsel], abootimg, acl, apksigcopier, 
apksigner, apktool [!ppc64el !s390x], binutils-multiarch, bzip2, caca-utils, 
colord, coreboot-utils, db-util, default-jdk-headless | default-jdk | java-sdk, 
device-tree-compiler, dexdump [amd64 arm64 armhf i386], docx2txt, e2fsprogs, 
enjarify, ffmpeg, fontforge-extras, fonttools, fp-utils [!ppc64el !s390x], 
genisoimage, gettext, ghc, ghostscript, giflib-tools, gnumeric, gnupg-utils, 
gpg, hdf5-tools, html2text, imagemagick, jsbeautifier, libarchive-tools, 
libxmlb-utils, llvm, lz4, lzip, mono-utils, ocaml-nox, odt2txt, oggvideotools 
[!s390x], openssh-client, openssl, perl, pgpdump, poppler-utils, 
procyon-decompiler, python3-pdfminer, r-base-core, rpm2cpio, sng, sqlite3, 
squashfs-tools, tcpdump, u-boot-tools, unzip, wabt, xmlbeans, xxd, xz-utils, 
zip, zstd, androguard, python3-argcomplete, python3-binwalk, 
python3-defusedxml, python3-distro, python3-guestfs, python3-jsondiff, 
python3-progressbar, python3-pypdf, python3-debian, python3-pyxattr, 
python3-rpm, python3-tlsh
 
 Tests: pytest
 Depends: python3-all, diffoscope, python3-pytest, python3-h5py, file, 
python3-tlsh
diff -Nru diffoscope-269/diffoscope/external_tools.py 
diffoscope-269ubuntu1/diffoscope/external_tools.py
--- diffoscope-269/diffoscope/external_tools.py 2024-05-31 01:10:35.0 
-0700
+++ diffoscope-269ubuntu1/diffoscope/external_tools.py  2024-06-03 
13:53:46.0 -0700
@@ -129,7 +129,7 @@
 "FreeBSD": "e2fsprogs",
 "guix": "e2fsprogs",
 },
-"lz4": {"debian": "lz4 | liblz4-tool", "FreeBSD": "lz4", "guix": "lz4"},
+"lz4": {"debian": "lz4", "FreeBSD": "lz4", "guix": "lz4"},
 "lzip": {"debian": "lzip", "guix": "lzip"},
 "msgunfmt": {
 "debian": "gettext",


Bug#1054257: closed by Matthias Klose (hsdis support not by default)

2024-04-18 Thread Benjamin Peterson
Thanks for the reply. Would it be possible to ship the llvm version of hsdis?



Bug#1061744: ipyparallel: Patch to fix failing unit test

2024-02-09 Thread Chris Peterson
Package: ipyparallel
Followup-For: Bug #1061744
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
X-Debbugs-Cc: chris.peter...@canonical.com
Control: tags -1 patch

Dear Maintainer,


In Ubuntu, the attached patch was applied to achieve the following:


  * Fix tests for python3.12 (LP: #2052727)

Python3.12 added checks for mock methods prefixed with `called_` since

  assert mock.called_once()

was a common mistake.

Thanks for considering the patch.

- Chris
diff -Nru 
ipyparallel-7.1.0/debian/patches/python3-assert-called-once-with.patch 
ipyparallel-7.1.0/debian/patches/python3-assert-called-once-with.patch
--- ipyparallel-7.1.0/debian/patches/python3-assert-called-once-with.patch  
1969-12-31 16:00:00.0 -0800
+++ ipyparallel-7.1.0/debian/patches/python3-assert-called-once-with.patch  
2024-02-08 10:44:16.0 -0800
@@ -0,0 +1,24 @@
+Description: Fix bad test assert for python3.12
+ Python3.12 includes a check for the common mistake of:
+assert mocked_object.called_once_with(params)
+ and now raises an attribute error instead of erroneously passing the test.
+ The correct assertion method is `assert_called_once_with`. See:
+ https://github.com/python/cpython/issues/100690
+ for more information.
+Author: Chris Peterson 
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ipyparallel/+bug/2052727
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1061744
+Last-Update: 2024-02-08
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/ipyparallel/tests/test_util.py
 b/ipyparallel/tests/test_util.py
+@@ -14,7 +14,7 @@
+ assert util.disambiguate_ip_address('0.0.0.0', socket.gethostname()) == 
localhost()
+ wontresolve = 'this.wontresolve.dns'
+ assert util.disambiguate_ip_address('0.0.0.0', wontresolve) == wontresolve
+-assert warn_mock.called_once_with(
++warn_mock.assert_called_once_with(
+ 'IPython could not determine IPs for {}: '
+ '[Errno -2] Name or service not known'.format(wontresolve),
+ RuntimeWarning,
diff -Nru ipyparallel-7.1.0/debian/patches/series 
ipyparallel-7.1.0/debian/patches/series
--- ipyparallel-7.1.0/debian/patches/series 2023-02-10 00:19:19.0 
-0800
+++ ipyparallel-7.1.0/debian/patches/series 2024-02-08 10:42:39.0 
-0800
@@ -5,3 +5,4 @@
 fix_docs
 fix_setuptools_import.patch
 0007-generate-code-reducer-from-CodeType-signature.patch
+python3-assert-called-once-with.patch


Bug#1063434: 389-ds-base: Build flags for 32bit architectures

2024-02-09 Thread Chris Peterson
Package: 389-ds-base
Version: 2.4.4+dfsg1-1
Followup-For: Bug #1063434
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble ubuntu-patch
X-Debbugs-Cc: chris.peter...@canonical.com
Control: tags -1 patch

Dear Maintainer,

I see this has been marked for autoremoval, but I have recently
introduced a patch in Ubuntu which fixed builds for armhf. Please see
the attached for a functionally similar patch that should enable builds
on your 32bit architectures (armhf, armel, and i386). I can provide
armhf autopkgtest results shortly.

Thanks,
Chris
diff -Nru 389-ds-base-2.4.4+dfsg1/debian/rules 
389-ds-base-2.4.4+dfsg1/debian/rules
--- 389-ds-base-2.4.4+dfsg1/debian/rules2024-01-08 07:40:49.0 
-0800
+++ 389-ds-base-2.4.4+dfsg1/debian/rules2024-02-08 16:26:51.0 
-0800
@@ -7,6 +7,9 @@
 ifneq (,$(filter $(DEB_HOST_ARCH), armel m68k mips mipsel powerpc powerpcspe 
sh4))
   export DEB_LDFLAGS_MAINT_APPEND=-latomic
 endif
+ifneq (,$(filter $(DEB_HOST_ARCH), armhf armel i386))
+ export DEB_CFLAGS_MAINT_APPEND=-D_LARGEFILE64_SOURCE
+endif
 
 REALFILE = \
bin/ds-logpipe.py \


Bug#950335: [Python-modules-team] Bug#950331: python3-aiohttp: please package the documentation

2024-01-09 Thread Chris Peterson
Hi,

It looks like this bug can be closed now, as python-aiohttp-doc is now
available.

https://packages.debian.org/unstable/python-aiohttp-doc

Thank you,
Chris Peterson


Bug#1057483: alex4 depends on alex4-data but is NBS

2023-12-06 Thread Chris Peterson
On Wed, Dec 6, 2023 at 7:52 AM Simon McVittie  wrote:

>
> The way this has generally been handled in the past is to depend on
>
>  foo-data (>= some suitable version) | game-data-packager
>
> so that if a user has used g-d-p to prepare a suitable version of foo-data
> on another machine (perhaps a more powerful one) and installed it on the
> current machine, they aren't forced to install game-data-packager and
> all of its dependencies for no good reason. It seems that this matches
> what Alexandre has done in alex4.
>
>
Thanks for the clarification! I wasn't able to find this context previously
and couldn't see why it needed both packages. This makes much more sense
now.

This was discussed with the Debian ftp team while packaging some of the
> other games supported by game-data-packager (I can't remember which one,
> perhaps iortcw or openjk) and they consider this dependency structure
> to be a valid representation of what the game really needs.
>

For a specific example, Alexandre had mentioned opentyrian, and I see it's
handled that way in both Debian and Ubuntu.

On the Ubuntu side, I will share this information on the bug I opened there
and see about doing the same.

Thank you,
Chris


Bug#1057483: alex4 depends on alex4-data but is NBS

2023-12-05 Thread Chris Peterson
Package: alex4
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu noble
X-Debbugs-Cc: chris.peter...@canonical.com

Dear Maintainer,

Forwarding the Ubuntu bug for visibility.

*** /tmp/forwarded-from-ubuntu-0d3o2qla.txt
This bug report was also filed in Ubuntu and can be found at
https://launchpad.net/bugs/2045607
The description, from Chris Peterson, follows:

alex4-data is currently listed as an NBS due to changes in alex4 v1.1-10, which 
drops alex4-data as as a build target but leaves alex4-data as a potential 
Depends. I've read through (Debian Bug) #1035043 but it is still unclear to me 
(1) the intended fate of alex4-data and (2) if it can be fully replaced by 
game-data-packager.

It appears that alex4-data on Debian is just an old version of alex4 which 
builds it. My assumption is that the answer to (2) is yes, and 
game-data-packager is meant to fully replace alex4-data. In this case my 
suggestion is to drop alex4-data from Depends (patch to follow this post).

I will note that these changes were only from a few days ago, so perhaps I'm 
jumping the gun.

-- System Information:
Debian Release: bookworm/sid
  APT prefers jammy-updates
  APT policy: (500, 'jammy-updates'), (500, 'jammy-security'), (500, 'jammy'), 
(100, 'jammy-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.2.0-37-generic (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



Bug#1056553: python-launchpadlib: Drop python3-keyring from Recommends to Suggests

2023-11-22 Thread Chris Peterson
Package: python-launchpadlib
Severity: wishlist

Dear Maintainer,

We should drop python3-keyring from Recommends to Suggests. python3-keyring
was previously dropped from Depends to Recommends as it was determined
that python-launchpadlib works fine without it and including it will
include a large number of packages on non-desktop machines. See commit
842dd519 
https://salsa.debian.org/python-team/packages/python-launchpadlib/-/commit/842dd5191ca3ef1acb800579b7a02cda6cbeeb31
However, it is my understanding that APT semantics means a Recommends
package will still be installed. Thus, we should drop this further to
Suggests.

This will additionally clear up the delta Ubuntu has with
python-secretstorage, which had attempted to avoid this situation by
dropping the Secret Service server packages from Recommends to Suggests.

I have opened a merge request on gitlab that would make this change:

https://salsa.debian.org/python-team/packages/python-launchpadlib/-/merge_requests/4

If there is a better place to discuss this, please let me know.

Thank you,
Chris



Bug#1053482: systemd-resolved: resolved can intermittingly fail AF_UNSPEC queries to CNAMEd domains

2023-10-21 Thread Benjamin Peterson



On Thu, Oct 5, 2023, at 07:36, Michael Biebl wrote:
> Am 05.10.23 um 02:18 schrieb benja...@locrian.net:
>> Package: systemd-resolved
>> Version: 252.12-1~deb12u1
>> Severity: important
>> 
>> Dear Maintainer,
>> 
>> When systemd-resolved simultaneously does A and  queries, it fails if 
>> one of the queries returns a CNAME with a zero ttl and the other query 
>> returns a CNAME with a nonzero ttl. This happens in practice with several 
>> DNS providers. A fix for the problem was recently merged upstream at 
>> https://github.com/systemd/systemd/commit/8ec951e8d5cdd3ad632b1cbd8bcbe21d68b17512.
>>  See that commit for further details about the issue.
>> 
>> Please consider backporting this fix to bookworm.
>
> Please ask for a backport to the v252-stable branch upstream.

Thanks for the reply. I've now submitted 
https://github.com/systemd/systemd-stable/issues/336



Bug#911383: stretch backports

2019-01-28 Thread Jon Peterson
I would second the request to have a buster (1.5.1-1 as of this message)
backported to stretch. The stretch version of stubby is SO old. Thanks for
considering.


Bug#904879: Can not select predefined time format in clock widget

2018-12-30 Thread elizabeth . peterson
This appears to be upstream bug #11527
 (https://bugzilla.xfce.org/show_bug.cgi?id=11527), which was fixed over several
 commits* in the git development repo post 4.13.

I took a stab at backporting the relevant patches, but discovered that they were
written after the GTK3 transition. I don't have the knowledge to easily rewrite
the validater code for GTK2, and merely applying the "clock: Fix invalid
datetime formats appearing in list" patch didn't solve the problem.

* Relevant upstream commits are:

e43248058e67e1cf2725788c894616dc431458cd clock: Fix invalid datetime formats 
appearing in list
a25624c894e93e1ff354f597975639ef0c2822c2 clock: Add a validator for digital 
custom formats
989d654b5d6b33e1c4127c740c806420a30b45a4 clock: Fix format validation



Bug#890908: leafpad: Couldn't Register with accessibility bus... error message

2018-02-20 Thread Jon H. Peterson
Package: leafpad
Version: 0.8.18.1-5
Severity: minor

Dear Maintainer,

snippet from lxterminal:

jon@lin02server:/etc/exim4$ gksudo leafpad passwd.client &
[1] 7983
jon@lin02server:/etc/exim4$ Xlib:  extension "RANDR" missing on display ":1.0".

** (gksudo:7983): WARNING **: Couldn't register with accessibility bus: Did not 
receive a reply. Possible causes include: the remote application did not send a 
reply, the message bus security policy blocked the reply, the reply timeout 
expired, or the network connection was broken.

This error message appears upon exit. Have no idea what it means or how to fix 
it.
It does not appear to effect the edited file; so it is just noise in the 
terminal.

-- System Information:
Debian Release: 9.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages leafpad depends on:
ii  libc62.24-11+deb9u1
ii  libcairo21.14.8-1
ii  libglib2.0-0 2.50.3-2
ii  libgtk2.0-0  2.24.31-2
ii  libpango-1.0-0   1.40.5-1
ii  libpangocairo-1.0-0  1.40.5-1

leafpad recommends no packages.

Versions of packages leafpad suggests:
pn  evince-gtk  

-- no debconf information



Bug#886472: firefox-esr: player.siriusxm.com hangs and never completes

2018-01-06 Thread jon peterson
Package: firefox-esr
Version: 52.5.2esr-1~deb8u1
Severity: normal

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
entering player.sirisxm.com into address field and pressing enter
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
browser hangs forever and never updates as it does on my intel tower system
   * What outcome did you expect instead?
screen update with player button

*** End of the template - remove these template lines ***


-- Package-specific info:

-- Extensions information
Name: Application Update Service Helper
Location: ${PROFILE_EXTENSIONS}/aushel...@mozilla.org.xpi
Status: enabled

Name: Default theme
Location: 
/usr/lib/firefox-esr/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi
Package: firefox-esr
Status: enabled

Name: Multi-process staged rollout
Location: ${PROFILE_EXTENSIONS}/e10sroll...@mozilla.org.xpi
Status: enabled

Name: Pocket
Location: ${PROFILE_EXTENSIONS}/fire...@getpocket.com.xpi
Status: enabled

Name: Web Compat
Location: ${PROFILE_EXTENSIONS}/webcom...@mozilla.org.xpi
Status: enabled

-- Plugins information

-- Addons package information
ii  firefox-esr52.5.2esr-1~ armhfMozilla Firefox web browser - Ext

-- System Information:
Debian Release: 8.10
  APT prefers oldstable
  APT policy: (500, 'oldstable')
Architecture: armhf (armv7l)

Kernel: Linux 4.4.13-ntc-mlc (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages firefox-esr depends on:
ii  debianutils   4.4+b1
ii  fontconfig2.11.0-6.3+deb8u1
ii  libasound21.0.28-1
ii  libatk1.0-0   2.14.0-1
ii  libc6 2.19-18+deb8u10
ii  libcairo-gobject2 1.14.0-2.1+deb8u2
ii  libcairo2 1.14.0-2.1+deb8u2
ii  libdbus-1-3   1.8.22-0+deb8u1
ii  libdbus-glib-1-2  0.102-1
ii  libevent-2.0-52.0.21-stable-2+deb8u1
ii  libffi6   3.1-2+deb8u1
ii  libfontconfig12.11.0-6.3+deb8u1
ii  libfreetype6  2.5.2-3+deb8u2
ii  libgcc1   1:4.9.2-10
ii  libgdk-pixbuf2.0-02.31.1-2+deb8u6
ii  libglib2.0-0  2.42.1-1+b1
ii  libgtk-3-03.14.5-1+deb8u1
ii  libgtk2.0-0   2.24.25-3+deb8u2
ii  libhunspell-1.3-0 1.3.3-3
ii  libjsoncpp0   0.6.0~rc2-3.1
ii  libpango-1.0-01.36.8-3
ii  libsqlite3-0  3.8.7.1-1+deb8u2
ii  libstartup-notification0  0.12-4
ii  libstdc++64.9.2-10
ii  libx11-6  2:1.6.2-3+deb8u1
ii  libx11-xcb1   2:1.6.2-3+deb8u1
ii  libxcb-shm0   1.10-3+b1
ii  libxcb1   1.10-3+b1
ii  libxcomposite11:0.4.4-1
ii  libxdamage1   1:1.1.4-2+b1
ii  libxext6  2:1.3.3-1
ii  libxfixes31:5.0.1-2+deb8u1
ii  libxrender1   1:0.9.8-1+b1
ii  libxt61:1.1.4-1+b1
ii  procps2:3.3.9-9
ii  zlib1g1:1.2.8.dfsg-2+b1

firefox-esr recommends no packages.

Versions of packages firefox-esr suggests:
pn  fonts-lmodern  
pn  fonts-stix | otf-stix  
ii  libcanberra0   0.30-2.1
ii  libgssapi-krb5-2   1.12.1+dfsg-19+deb8u4
pn  mozplugger 

-- no debconf information



Bug#857020: sakura does not like to execute shells that take -c options containing multiple commands

2017-03-07 Thread Peter Peterson
Package: sakura
Version: 3.1.5-1
Severity: normal

Dear Maintainer,

sakura --help advertizes -e option to execute commands like xterm does and
this works as exspected for commands like sakura -e /bin/bash -c 'read x'
(sakura window is shown and exits after enter key is pressed) but 
sakura -e /bin/bash -c 'ls; read x' just quits without any window being shown.
Same is is the case for sakura -e /bin/bash -c 'ls && read x'. Both commands
work as exspected when not being run trough sakuras -e option.


-- System Information:
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages sakura depends on:
ii  libatk1.0-0  2.14.0-1
ii  libc62.19-18+deb8u7
ii  libcairo-gobject21.14.0-2.1+deb8u2
ii  libcairo21.14.0-2.1+deb8u2
ii  libgdk-pixbuf2.0-0   2.31.1-2+deb8u5
ii  libglib2.0-0 2.42.1-1+b1
ii  libgtk-3-0   3.14.5-1+deb8u1
ii  libpango-1.0-0   1.36.8-3
ii  libpangocairo-1.0-0  1.36.8-3
ii  libvte-2.90-91:0.36.3-1
ii  libx11-6 2:1.6.2-3
ii  libxext6 2:1.3.3-1

sakura recommends no packages.

sakura suggests no packages.

-- no debconf information



Bug#849845: [pkg-gnupg-maint] Bug#849845: dirmngr: Can't resolve keyserver hostname anymore

2017-01-06 Thread Jaden Peterson
On Thu, 05 Jan 2017 16:56:40 -0500 Daniel Kahn Gillmor 
 wrote:

> Control: fowarded 849845 https://bugs.gnupg.org/gnupg/issue2902
>
> On Thu 2017-01-05 08:15:06 -0500, intrigeri wrote:
> > Daniel Kahn Gillmor:
> >> The remaining problem for me ws that when i use tor, if i get 
back 
> >> records, the connections fail, but the IPv6 records are not 
marked as

> >> dead, so they fail repeatedly.
> >
> > Same here, with a package built from commit
> > 32bae0c609cb0c6180e9405a3d6a8fb3c0dec20e in the Vcs-Git (which by 
the

> > way fixes the other problem I've reported here :)
>
> thanks for the reportback!  I've reported the remaining issue 
upstream

> (see the url above).  I'll do an upload to unstable with the
> intermediate fix later today, unless i can sort out a fix for the 
whole

> issue first.
>
>  --dkg

Hi,

I have no place in the topic of this bug, but I installed the patches 
you provided on January 5th onto my Debian Testing system. I would like 
to notify you that gpgv2 depends on gpgv version 2.1.17-3 or greater, 
which is not provided, and results in mixed versions.






Bug#846816: java.lang.NoSuchFieldError: DLU2

2016-12-05 Thread Eric Peterson

freeplane/1.5.17 works fine for me



Bug#824888: Exim procmail transport missing options for local parts (ie plus addressing)

2016-05-21 Thread Brandon Peterson
Hi Andreas,

My mistake, I forgot that I customized the 900_exim4-config_local_user
router years ago, I was thinking yesterday that it had been part of the
standard Debian configuration. If you wanted to make that part of the
standard then it would need to be added there as well - then you can put
the appropriate lines in exim4.conf.localmacros, ie
"ROUTER_LOCAL_SUFFIX_MATCH = +*" and "ROUTER_LOCAL_SUFFIX_OPTIONAL = true".

Sorry for the trouble.

Cheers,
Brandon


On Sat, May 21, 2016 at 4:02 AM, Andreas Metzler <ametz...@bebt.de> wrote:

> On 2016-05-20 Brandon Peterson <bran...@thebandit.org> wrote:
> > Package: exim4-config
> > Version: 4.80-7+deb7u1
>
> > When I try to use procmail to filter messages using a
> > local_parts_suffix it never works. It should have similar options to
> > the local_user section to enable local parts processing.
> [...]
>
> "similar options"? The Debian configuration does not set
> local_part_suffix* options on any router.
>
> cu Andreas
> --
> `What a good friend you are to him, Dr. Maturin. His other friends are
> so grateful to you.'
> `I sew his ears on from time to time, sure'
>


Bug#824888: Exim procmail transport missing options for local parts (ie plus addressing)

2016-05-20 Thread Brandon Peterson
Package: exim4-config
Version: 4.80-7+deb7u1

When I try to use procmail to filter messages using a local_parts_suffix it 
never works. It should have similar options to the local_user section to enable 
local parts processing. When I change 
/etc/exim4/conf.d/router/700_exim4-config_procmail to the below and regenerate 
the template it works.

Thanks,
Brandon


procmail:
  debug_print = "R: procmail for $local_part@$domain"
  driver = accept
  domains = +local_domains
  check_local_user

  .ifdef ROUTER_LOCAL_SUFFIX_MATCH
  local_part_suffix = ROUTER_LOCAL_SUFFIX_MATCH
  .ifdef ROUTER_LOCAL_SUFFIX_OPTIONAL
  local_part_suffix_optional
  .endif
  .endif

  transport = procmail_pipe
  # emulate OR with "if exists"-expansion
  require_files = ${local_part}:\
  ${if exists{/etc/procmailrc}\
{/etc/procmailrc}{${home}/.procmailrc}}:\
  +/usr/bin/procmail
  no_verify
  no_expn



Bug#816156: Python dbus Attribute error

2016-03-01 Thread Daniel Peterson
I am trying to run the onscreen keyboard onboard with python, and dbus
complains. Onboard runs with python3.4 by default. Running it with
python3.5 appears to fix the problem. Trying to import dbus.exceptions with
python3.4 will cause the problem I was seeing earlier.

daniel@x230t:~$ python3.4
Python 3.4.4 (default, Jan  5 2016, 15:35:18)
[GCC 5.3.1 20160101] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbus.exceptions as exceptions
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/python3/dist-packages/dbus/__init__.py", line 82, in

import dbus.types as types
  File "/usr/lib/python3/dist-packages/dbus/types.py", line 6, in 
from _dbus_bindings import (
ImportError: No module named '_dbus_bindings'
>>>

I am not sure if this is a python3.4 problem or a dbus problem, but it
appears that
python-dbus 1.2.2-1 will not work with python3.4

I will also file a bug against onboard so that others know to move up to a
newer python version.


Bug#816156: Python dbus Attribute error

2016-02-27 Thread Daniel Peterson
Package: python-dbus
Version: 1.2.2-1

When I try to use the onscreen keyboard onboard, I get an error message
from python-dbus init file. Below is a transcript of the error.

daniel@x230t:~$ onboard
/usr/lib/python3/dist-packages/Onboard/utils.py:16: PyGIWarning: Gtk was
imported without specifying a version first. Use gi.require_version('Gtk',
'3.0') before import to ensure that the right version gets loaded.
  from gi.repository import GLib, Gtk
/usr/lib/python3/dist-packages/Onboard/KbdWindow.py:6: PyGIWarning: GdkX11
was imported without specifying a version first. Use
gi.require_version('GdkX11', '3.0') before import to ensure that the right
version gets loaded.
  from gi.repository import GObject, GLib, GdkX11, Gdk, Gtk
Traceback (most recent call last):
  File "/usr/bin/onboard", line 15, in 
from Onboard.OnboardGtk import OnboardGtk as Onboard
  File "/usr/lib/python3/dist-packages/Onboard/OnboardGtk.py", line 26, in

from Onboard.KbdWindow   import KbdWindow, KbdPlugWindow
  File "/usr/lib/python3/dist-packages/Onboard/KbdWindow.py", line 10, in

from Onboard.WindowUtils import Orientation, WindowRectPersist, \
  File "/usr/lib/python3/dist-packages/Onboard/WindowUtils.py", line 21, in

from Onboard.Config import Config
  File "/usr/lib/python3/dist-packages/Onboard/Config.py", line 26, in

from Onboard.ClickSimulator import CSMousetweaks0, CSMousetweaks1
  File "/usr/lib/python3/dist-packages/Onboard/ClickSimulator.py", line 9,
in 
import dbus
  File "/usr/lib/python3/dist-packages/dbus/__init__.py", line 81, in

import dbus.exceptions as exceptions
AttributeError: 'module' object has no attribute 'exceptions'


I am not sure what is causing this. It appears on two computers both
running sid. I tried moving to the version of python-dbus in experimental
and this did not fix the problem. Interestingly, I am able to run the
following

daniel@x230t:~$ python3
Python 3.5.1+ (default, Feb 24 2016, 11:28:57)
[GCC 5.3.1 20160220] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbus.exceptions as exceptions
>>>

with no error. I am not sure why it does not work in a script but does work
if I import the module manually.


Bug#782749: Personal Donation

2016-01-06 Thread Peterson, Jeffrey
A Personal donation  has been awarded to you by  Mrs. Lisa Quam kindly contact 
her directly via email (lisa_q...@rogers.com) for more info


Bug#803949: electrum: Electrum unable to start; Cannot read config file

2015-11-03 Thread Zachary Peterson
Package: electrum
Version: 1.9.8-4
Severity: grave
Justification: renders package unusable

Dear Maintainer,

I've never had this problem before, but after recently re-installing
Debian, I am unable to start Electrum. When I try from the command line,
I get the following:

Traceback (most recent call last):
  File "/usr/bin/electrum", line 174, in 
config = SimpleConfig(config_options)
  File "/usr/lib/python2.7/dist-packages/electrum/simple_config.py", line 33, 
in __init__
self.read_user_config()
  File "/usr/lib/python2.7/dist-packages/electrum/simple_config.py", line 157, 
in read_user_config
raise IOError("Cannot read config file.")
IOError: Cannot read config file.

-- System Information:
Debian Release: 8.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages electrum depends on:
ii  python   2.7.9-1
ii  python-electrum  1.9.8-4

electrum recommends no packages.

electrum suggests no packages.

-- no debconf information



Bug#803949: electrum: Electrum unable to start; Cannot read config file

2015-11-03 Thread Zachary Peterson
>>>>> Tristan Seligmann <mithra...@mithrandi.net> writes:

> The following command should reproduce the process used by Electrum
> 1.9.8 to load the config file:

> python -c 'import ast, os; print
> ast.literal_eval(open(os.path.expanduser("~/.electrum/config")))'

> This should fail with a Python exception; could you reply to this bug
> with the output?

Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/python2.7/ast.py", line 80, in literal_eval
return _convert(node_or_string)
  File "/usr/lib/python2.7/ast.py", line 79, in _convert
raise ValueError('malformed string')
ValueError: malformed string

> (The problem could be that your configuration is corrupt somehow, or
> the file is unreadable for some reason. Another possibility is that
> you have run a newer version of Electrum somehow; newer versions use a
> different format for the configuration and wallet files, and will
> upgrade it automatically, making older versions unable to read the
> files.)
That seems a likely cause. I was running Testing for a while before
reverting to Stable due to some issues with other packages.

-- 
Zachary Peterson
zap5...@psu.edu
(317) 828-2377
OpenPGP key: BF5879D6



Bug#778867: eeepc-acpi-scripts: Causes video corruption and freezes system when eeepc-acpi-scripts executes

2015-02-20 Thread John C. Peterson
Package: eeepc-acpi-scripts
Version: 1.1.12
Severity: important

Dear Maintainer,

I performed an upgrade of my Asus EeePC 1000 from Squeeze to Wheezy back
in November without any particular problems. The upgrade did NOT install
the eeepc-acpi-scripts package, but it seemed like an appropiate package
to have installed, so I later installed it manually.

I later began to experience a problem with video corruption (that I
had never experienced before) when the system was booting. It was not
reproducible, occurring perhaps 25% of the time. As the problem was
random in nature, I did not initially suspect the eeepc-acpi-scripts
package was related to the problem.

The corruption is best described as colored snow with *nothing*
intelligible on the screen.  None of the Alt-Fn keys would bring up
another VT, I could not login remotely using ssh. I could not coax
the system to perform a clean shutdown either, pressing the power
button, or hitting ctrl-alt-del did nothing. All I could do was
power down and reboot. The freezes were nasty enough that my /var/log
directory got thoroughly trashed on one occassion, with about 20 log
files ending up in /lost+found as a result of problems found by fsck on
the reboot.

It's worth noting that this video corruption also happened (just once)
during a system *shutdown* after the X11 server exited.

The messages at boot fly by so fast, so I installed bootlogd to better
understand the normal boot sequence. At that point, it became obvious
that when this problem happened it was when the eeepc-acpi-scripts in
/etc/init was executed. After purging eeepc-acpi-scripts from my system,
I have *not* seen the problem after well more than 20 boots.

Sorry I can't provide more helpful information, but /var/log/messages
and so forth contained nothing useful.

My system has slightly modified hardware:

ASUS EeePC 1000 (straight 1000, no letter suffix)
Intel Ultimate N WiFi Link 5300 (replaced the factory wifi card)
Upgraded to 2GB of RAM

-- System Information:
Debian Release: 7.8
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages eeepc-acpi-scripts depends on:
ii  acpi-support   0.140-5+deb7u3
ii  acpi-support-base  0.140-5+deb7u3
ii  acpid  1:2.0.16-1+deb7u1
ii  initscripts2.88dsf-41+deb7u1
ii  pm-utils   1.4.1-9
ii  rfkill 0.4-1

eeepc-acpi-scripts recommends no packages.

Versions of packages eeepc-acpi-scripts suggests:
ii  alsa-utils 1.0.25-4
pn  libnotify-bin  none


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



Bug#758557: The same bug

2014-08-20 Thread Eric Peterson
I have the same bug with the lightdm or kdm


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



Bug#758737: wicd-gtk: When the GUI is started, the state of the Switch Off/On Wi-Fi button may be incorrect

2014-08-20 Thread John C. Peterson
Package: wicd-gtk
Version: 1.7.2.4-4.1
Severity: important
Tags: upstream patch

Dear wicd-gtk maintainer,

I discovered that when the wicd-gtk gui is started in Jessie, the button
Switch Off/On Wi-Fi assumes that the Wi-Fi is already powered off, even
when it's alreay on.

To reproduce the problem encountered;

  1) Enable the Wi-Fi in the system BIOS before booting Debian, or toggle
 the Wi-Fi to a power on state using the Fn+F2 hot-key after Debian has
 booted.

  2) Start the wicd-gtk gui by clicking the applet in the taskbar.

  3) The wicd-gtk gui displays a Switch On Wi-Fi button!!! This is
 clearly incorrect since the Wi-Fi is ALREADY powered on. The gui
 should display a Switch Off Wi-Fi button.

I did a little poking around in the code, and verified that when the
pyGTK widgets are initialized, the present state of the wifi is not
properly accounted for.

I came up with a simple patch to /usr/share/wicd/gtk/gui.py shown
inline below. The patch has worked fine for me for almost a year now.

--- /usr/share/wicd/gtk/gui.py.orig 2012-01-15 06:24:23.0 -0800
+++ /usr/share/wicd/gtk/gui.py  2013-07-12 18:26:38.143103875 -0700
@@ -191,6 +191,12 @@
 probar.set_text(_('Connecting'))
 
 self.rfkill_button = self.wTree.get_object(rfkill_button)
+if wireless.GetRfKillEnabled():
+self.rfkill_button.set_stock_id(gtk.STOCK_MEDIA_PLAY)
+self.rfkill_button.set_label(_('Switch On Wi-Fi'))
+else:
+self.rfkill_button.set_stock_id(gtk.STOCK_MEDIA_STOP)
+self.rfkill_button.set_label(_('Switch Off Wi-Fi'))
 self.all_network_list = self.wTree.get_object(network_list_vbox)
 self.all_network_list.show_all()
 self.wired_network_box = gtk.VBox(False, 0)


This problem was clearly not specific to Debian, so I reported it to
the upstream developers about a year ago. We developers all have other
things to do at times, so unfortunately nothing has transpired since
reporting the problem. The bug report url is;

https://bugs.launchpad.net/wicd/+bug/1232521

Thank you, John...

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.14-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages wicd-gtk depends on:
ii  python 2.7.6-2
ii  python-glade2  2.24.0-3+b1
ii  python-gtk22.24.0-3+b1
ii  wicd-daemon1.7.2.4-4.1

Versions of packages wicd-gtk recommends:
ii  gksu   2.0.2-6
ii  python-notify  0.1.1-3

wicd-gtk suggests no packages.

Versions of packages wicd depends on:
ii  wicd-daemon  1.7.2.4-4.1

Versions of packages wicd-cli depends on:
ii  python   2.7.6-2
ii  wicd-daemon  1.7.2.4-4.1

Versions of packages wicd-cli recommends:
ii  sudo  1.8.9p5-1

Versions of packages wicd-curses depends on:
ii  python2.7.6-2
ii  python-urwid  1.1.1-1+b2
ii  wicd-daemon   1.7.2.4-4.1

Versions of packages wicd-curses recommends:
ii  sudo  1.8.9p5-1

Versions of packages wicd-daemon depends on:
ii  adduser  3.113+nmu3
ii  dbus 1.8.4-1
ii  debconf  1.5.53
ii  ethtool  1:3.13-1
ii  iproute  1:3.15.0-2
ii  iputils-ping 3:20121221-5+b1
ii  isc-dhcp-client  4.2.4-7
ii  lsb-base 4.1+Debian13
ii  net-tools1.60-26
ii  psmisc   22.21-2
ii  python   2.7.6-2
ii  python-dbus  1.2.0-2+b3
ii  python-gobject   3.12.1-1
ii  python-wicd  1.7.2.4-4.1
ii  wireless-tools   30~pre9-8
ii  wpasupplicant1.1-1

Versions of packages wicd-daemon recommends:
ii  rfkill  0.5-1

Versions of packages wicd-daemon suggests:
ii  pm-utils  1.4.1-14

Versions of packages python-wicd depends on:
ii  python  2.7.6-2

-- debconf information:
* wicd/users:


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



Bug#754185: avahi-daemon: Packet too short or invalid while reading known answer record. (Maybe a UTF-8 problem?)

2014-07-16 Thread Jon Peterson
Package: avahi-daemon
Version: 0.6.31-2
Followup-For: Bug #754185

I'm seeing exactly the same problem.



-- System Information:
Debian Release: 7.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages avahi-daemon depends on:
ii  adduser3.113+nmu3
ii  bind9-host [host]  1:9.8.4.dfsg.P1-6+nmu2+deb7u1
ii  dbus   1.6.8-1+deb7u1
ii  host   1:9.8.4.dfsg.P1-6+nmu2+deb7u1
ii  libavahi-common3   0.6.31-2
ii  libavahi-core7 0.6.31-2
ii  libc6  2.13-38+deb7u1
ii  libcap21:2.22-1.2
ii  libdaemon0 0.14-2
ii  libdbus-1-31.6.8-1+deb7u1
ii  libexpat1  2.1.0-1+deb7u1
ii  lsb-base   4.1+Debian8+deb7u1

Versions of packages avahi-daemon recommends:
ii  libnss-mdns  0.10-3.2

Versions of packages avahi-daemon suggests:
ii  avahi-autoipd  0.6.31-2


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



Bug#739555: python2.7: Python sqlite3 module does not allow loading of extension libraries

2014-02-19 Thread John C. Peterson
Package: python2.7
Version: 2.7.6-4
Severity: normal

Dear Maintainer (Matthias?),

It appears that the sqlite3 module in the Python2.7 std library
(and all of Python2.x and Python3.x to be specific) were built with
the loading of SQLite extension libraries DISABLED (e.g. extension
libraries such as libspatialite). This makes it impossible to use
SQLite extensions from with Python (a core feature).

I have attached a short Bourne shell script that demonstrates
the problem. (See test_script.sh attachment).

The upstream documentation from python.org for the sqlite3 module
states that the loading of extensions is disabled by default in
the source tarball due to problems on Mac OS X. See the footnote[1]
at the very end of that page for more detail;

http://docs.python.org/2/library/sqlite3.html

There should not be any issues with allowing extensions on
Linux. Note that the loading of extension libraries is already
enabled in the stand alone sqlite3 application (from the separate
package sqlite), by using the .load command.

As noted on the upstream documentation for the sqlite3 module,
the fix is straight forward. The line in the setup.py script (from
upstream python tarball) that sets SQLITE_OMIT_LOAD_EXTENSION should
be commented out;

--- python2.7-2.7.6/setup.py.orig   2013-11-09 23:36:41.0 -0800
+++ python2.7-2.7.6/setup.py2014-02-19 13:28:18.398356938 -0800
@@ -1170,7 +1170,7 @@ class PyBuildExt(build_ext):
 sqlite_defines.append(('MODULE_NAME', '\\sqlite3\\'))
 
 # Comment this out if you want the sqlite3 module to be able to 
load extensions.
-sqlite_defines.append((SQLITE_OMIT_LOAD_EXTENSION, 1))
+# sqlite_defines.append((SQLITE_OMIT_LOAD_EXTENSION, 1))
 
 if host_platform == 'darwin':
 # In every directory on the search path search for a dynamic

Best Regards, John



-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.12-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages python2.7 depends on:
ii  libpython2.7-stdlib  2.7.6-4
ii  mime-support 3.54
ii  python2.7-minimal2.7.6-4

python2.7 recommends no packages.

Versions of packages python2.7 suggests:
ii  binutils   2.24-2
pn  python2.7-doc  none

-- no debconf information



test_script.sh
Description: Bourne shell script


Bug#739310: cdrom: Fails to connect to network

2014-02-17 Thread Zachary Peterson
Package: cdrom
Severity: important
Tags: d-i

Dear Maintainer,

I was unable to connect to any network using recent installers. I kept
getting alerts about DHCP not working. This, of course, made the net
install completely unusable. And the full install failed to connect as well,
including after the installation was finished. I wasn't able to configure
anything after install, though I admit my knowledge on the relevant programs is
very limited.

I am using a Realtek network card (Realtek 8111E) integrated into my motherboard
(Gigabyte GA-990GXA-UD3). The installer said non-free firmware was required to
use this, but this has not been so in the past. I was able to get around my
problems by using an old 32-bit installer of Wheezy 7.0 that I found lying
around on a disc. I was able to connect to my network just fine with that.

-- System Information:
Debian Release: jessie/sid
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 3.12-1-686-pae (SMP w/6 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


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



Bug#716996: android-tools-adb: Cannot connect to daemon

2013-07-15 Thread Zachary Peterson
Package: android-tools-adb
Version: 4.2.2+git20130529-2.1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

When I plug in my phone, a Samsung Galaxy S 4 (Sprint), and run adb, the program
keeps returning a message saying it is unable to connect to daemon. I tried
reinstalling a number of times.

We determined that the server did not send the acknowledge (ACK) packet, causing
the server to continually restart with every command.

-- System Information:
Debian Release: jessie/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.9-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages android-tools-adb depends on:
ii  libc62.17-7
ii  libssl1.0.0  1.0.1e-3
ii  zlib1g   1:1.2.8.dfsg-1

android-tools-adb recommends no packages.

android-tools-adb suggests no packages.

-- no debconf information


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



Bug#695165: gcc-4.7: No man page

2012-12-04 Thread Zachary Peterson
Package: gcc-4.7
Version: 4.7.2-4
Severity: normal

Dear Maintainer,

man gcc returns 'No manual entry for gc'.
I've tried reinstalling, but the man page still doesn't show up.

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gcc-4.7 depends on:
ii  binutils  2.22-7.1
ii  cpp-4.7   4.7.2-4
ii  gcc-4.7-base  4.7.2-4
ii  libc6 2.13-37
ii  libgcc1   1:4.7.2-4
ii  libgmp10  2:5.0.5+dfsg-2
ii  libgomp1  4.7.2-4
ii  libitm1   4.7.2-4
ii  libmpc2   0.9-4
ii  libmpfr4  3.1.0-5
ii  libquadmath0  4.7.2-4
ii  zlib1g1:1.2.7.dfsg-13

Versions of packages gcc-4.7 recommends:
ii  libc6-dev  2.13-37

Versions of packages gcc-4.7 suggests:
pn  binutils-goldnone
pn  gcc-4.7-doc  none
pn  gcc-4.7-locales  none
ii  gcc-4.7-multilib 4.7.2-4
pn  libgcc1-dbg  none
pn  libgomp1-dbg none
pn  libitm1-dbg  none
pn  libmudflap0-4.7-dev  none
pn  libmudflap0-dbg  none
pn  libquadmath0-dbg none

-- no debconf information


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



Bug#648256: [Cherokee] Bug#648256: RFA: cherokee -- Very fast, flexible and easy to configure web server

2011-11-11 Thread M. David Peterson
On Wed, Nov 9, 2011 at 4:38 PM, Gunnar Wolf gw...@gwolf.org wrote:

 I am sending now this Request For Adoption bug. I intend to keep
 maintaining Cherokee the best way I can (which as can be seen is not
 too good) until the next Debian Stable release, and if no new
 maintainer steps up by then, will flag it as Orphaned.


I've never maintained a Debian package before, but I'm certainly willing to
learn if for no other reason than to ensure this project continues for as
an active package. What's the first step?

-- 
/M:D

M. David Peterson
Co-Founder  Chief Architect, 3rdUrban, LLC
Email: m.da...@3rdandurban.com
Voice: (801) 742-1064
http://amp.fm | http://mdavidpeterson.com


Bug#535910: This bug still here?

2011-05-08 Thread Trev Peterson
Hello,

The problem was never resolved and due to this problem and other factors
we've moved away from Samba.  Thanks for the suggestions.  Feel free to
go ahead and close it out.

On Sun, 2011-05-08 at 15:44 +0200, Christian PERRIER wrote:
 The last contribution in this bug report suggested removing cache
 files, stop samba, double check that no more smbd and nmbd processes
 are left, then restart samba.
 
 We had no sign that this has been tried. As nobody else reported the
 problem, I'm tempted to consider it solved.
 
 
 

-- 
Trev Peterson
Advanced Reality
Email: t...@advanced-reality.com
Phone: +1 847 406 9018




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



Bug#613462: serialposix.py module in package python3-serial has typo in function definition

2011-02-14 Thread Jack Peterson
Package: python3-serial
Version: 2.5-1
Severity: normal

In module serialposix.py, line 218, the definition of function 'device' for
unrecognized platforms, reads:
def device(portum):

It should read (to match the function body):
def device(portnum):

-- System Information:
Debian Release: 6.0
  APT prefers squeeze-updates
  APT policy: (500, 'squeeze-updates'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


Bug#591730: Network-Manager-Gnome: Can not enable networking through nm-applet

2010-08-04 Thread John Peterson
Package: network-manager-gnome
Version: 0.8.0.999-1

When gnome starts, nm-applet starts with all networking disabled. When I right 
click the icon and click enable, nothing happens. Killing the process and 
restarting it from a terminal gives the following error message. 


dan...@hp:~$ sudo nm-applet

** (nm-applet:8410): WARNING **: _nm_object_get_property: Error getting 
'NetworkingEnabled' for /org/freedesktop/NetworkManager: (16) No such property 
NetworkingEnabled

When I try to enable networking through nm-applet, the following error appears 
in the terminal.

** (nm-applet:8410): WARNING **: Error enabling/disabling networking: Method 
Enable with signature b on interface org.freedesktop.NetworkManager 
doesn't exist

I am running Debian Squeeze kernel 2.6.32-5-686 on a HP ze4200 laptop. Last 
updated today. Network manager version is 0.8-1 and gnome version is 1:2.30+1



  

Bug#535910: samba: Samba not checking /etc/group for secondary groups when determining filesystem access

2010-05-06 Thread Trev Peterson
Hey Christian,

I did try removing them but to no effect, the problem persisted.  We
will be testing ubuntu 10.04 in the next weeks to see if the problem
manifests itself there as well.  Thank you for the efforts in trying to
resolve this,

On Thu, 2010-05-06 at 13:17 +0200, Christian PERRIER wrote:
 tags 535910 moreinfo
 thanks
 
 Hi Trev,
 
 In http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535910#35, Stephan
 Seitz suggested that removing the idmap cache files (idmap_cache.tdb
 and winbindd_cache.tdb) solved a problem identical to the one you
 experienced.
 
 Sorry for coming back late on this issue, but have you tried this
 solution and, if so, what has been the result?
 
 


-- 
Trev Peterson
Advanced Reality
Email: t...@advanced-reality.com
Phone: +1 847 406 9018




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



Bug#535910: samba: Samba not checking /etc/group for secondary groups when determining filesystem access

2010-05-06 Thread Trev Peterson
Already tried that as well.  No change.

On Thu, 2010-05-06 at 15:33 +0200, Christian PERRIER wrote:
 Quoting Trev Peterson (t...@advanced-reality.com):
  Hey Christian,
  
  I did try removing them but to no effect, the problem persisted.  We
  will be testing ubuntu 10.04 in the next weeks to see if the problem
  manifests itself there as well.  Thank you for the efforts in trying to
  resolve this,
 
 
 You can also try backported packages of samba 3.4.7:
 
 http://packages.debian.org/lenny-backports/samba
 http://backports.org/dokuwiki/doku.php?id=instructions
 
 


-- 
Trev Peterson
Advanced Reality
Email: t...@advanced-reality.com
Phone: +1 847 406 9018




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



Bug#535910: [Pkg-samba-maint] Bug#535910: samba: Samba not checking /etc/group for secondary groups when determining filesystem access

2009-07-11 Thread Trev Peterson
Upgraded to 2:3.3.6-1~bpo50+1 from lenny-backports but problem persists.

On Thu, 2009-07-09 at 22:29 +0200, Christian Perrier wrote:
 Quoting Trev Peterson (t...@advanced-reality.com):
  Package: samba
  Version: 2:3.2.5-4lenny6
  Severity: important
  
  When upgrading from Etch samba stopped checking secondary groups in 
  /etc/group for filesystem 
  permissions when determining filesystem access.  We use winbind and 
  authentication is working 
  correctly.  If the group onwership is changed to the primary group (from 
  /etc/passwd), 
 
 .../...
 
 Unfortunately, our upstream doesn't keep a complete chronological
 changelog and that makes it hard to check whether this is fixed in a
 later version.
 
 So, we could first try to narrow this down.
 
 My first proposal if testing the unofficial packages for 3.2.12 (I
 haven't taken time to update to 3.2.13 which is a security-only
 release):
 
 deb http://pkg-samba.alioth.debian.org/packages lenny-backports/
 
 If the problem is still here, you can try 3.3.6 backported packages:
 
 deb http://www.backports.org/debian lenny-backports main contrib non-free
 
 For the latter to work, you need to
 - apt-get update
 - apt-get -t lenny-backports install samba
 
 Please tell us if one of these fixes the problem. This will help
 narrowing things down and hopefully spot the patch that fixes this (I
 consider it would then deserve going into lenny).
 
 
-- 
Trev Peterson
Advanced Reality
Email: t...@advanced-reality.com
Phone: +1 847 406 9018




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



Bug#535910: [Pkg-samba-maint] Bug#535910: samba: Samba not checking /etc/group for secondary groups when determining filesystem access

2009-07-09 Thread Trev Peterson
I will test this tonight.  Thanks,

On Thu, 2009-07-09 at 22:29 +0200, Christian Perrier wrote:
 Quoting Trev Peterson (t...@advanced-reality.com):
  Package: samba
  Version: 2:3.2.5-4lenny6
  Severity: important
  
  When upgrading from Etch samba stopped checking secondary groups in 
  /etc/group for filesystem 
  permissions when determining filesystem access.  We use winbind and 
  authentication is working 
  correctly.  If the group onwership is changed to the primary group (from 
  /etc/passwd), 
 
 .../...
 
 Unfortunately, our upstream doesn't keep a complete chronological
 changelog and that makes it hard to check whether this is fixed in a
 later version.
 
 So, we could first try to narrow this down.
 
 My first proposal if testing the unofficial packages for 3.2.12 (I
 haven't taken time to update to 3.2.13 which is a security-only
 release):
 
 deb http://pkg-samba.alioth.debian.org/packages lenny-backports/
 
 If the problem is still here, you can try 3.3.6 backported packages:
 
 deb http://www.backports.org/debian lenny-backports main contrib non-free
 
 For the latter to work, you need to
 - apt-get update
 - apt-get -t lenny-backports install samba
 
 Please tell us if one of these fixes the problem. This will help
 narrowing things down and hopefully spot the patch that fixes this (I
 consider it would then deserve going into lenny).
 
 
-- 
Trev Peterson
Advanced Reality
Email: t...@advanced-reality.com
Phone: +1 847 406 9018




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



Bug#535910: samba: Samba not checking /etc/group for secondary groups when determining filesystem access

2009-07-05 Thread Trev Peterson
Package: samba
Version: 2:3.2.5-4lenny6
Severity: important

When upgrading from Etch samba stopped checking secondary groups in /etc/group 
for filesystem 
permissions when determining filesystem access.  We use winbind and 
authentication is working 
correctly.  If the group onwership is changed to the primary group (from 
/etc/passwd), 
the file is owned by the user or everyone has rights access is granted as per 
the unix 
permissions.  Group and User enumeration is shown to be working (turning up 
debug and checking 
the logs shows it enumerated to the UID and GID for that user from 
/etc/passwd).  getent 
groups shows the normal (full) group listing as it should.

A few other things I should note:
SELINUX is turned off completely.
Permissions on /etc/passwd and /etc/group are both 644
This exact config was working on Etch with the standard samba packages and 
winbind (no 
configuration changes were made on upgrade until after problems were seen).
I tried setting the following in /etc/samba/smb.cnf (all to no effect):
unix extensions = no
auth methods = winbind
nt acl support = yes

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages samba depends on:
ii  adduser 3.110add and remove users and groups
ii  debconf [debcon 1.5.24   Debian configuration management sy
ii  libacl1 2.2.47-2 Access control list shared library
ii  libattr11:2.4.43-2   Extended attribute shared library
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libcups21.3.8-1+lenny6   Common UNIX Printing System(tm) - 
ii  libgnutls26 2.4.2-6+lenny1   the GNU TLS library - runtime libr
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
ii  libldap-2.4-2   2.4.11-1 OpenLDAP libraries
ii  libpam-modules  1.0.1-5+lenny1   Pluggable Authentication Modules f
ii  libpam-runtime  1.0.1-5+lenny1   Runtime support for the PAM librar
ii  libpam0g1.0.1-5+lenny1   Pluggable Authentication Modules l
ii  libpopt01.14-4   lib for parsing cmdline parameters
ii  libtalloc1  1.2.0~git20080616-1  hierarchical pool based memory all
ii  libwbclient02:3.2.5-4lenny6  client library for interfacing wit
ii  logrotate   3.7.1-5  Log rotation utility
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  procps  1:3.2.7-11   /proc file system utilities
ii  samba-common2:3.2.5-4lenny6  Samba common files used by both th
ii  update-inetd4.31 inetd configuration file updater
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

samba recommends no packages.

Versions of packages samba suggests:
pn  ldb-tools   none   (no description available)
ii  openbsd-inetd [inet-superse 0.20080125-2 The OpenBSD Internet Superserver
ii  smbldap-tools   0.9.4-1  Scripts to manage Unix and Samba a

-- debconf information:
  samba/run_mode: daemons
  samba/generate_smbpasswd: false

ii  libwbclient02:3.2.5-4lenny6client 
library for 
interfacing with winbind 
ii  winbind 2:3.2.5-4lenny6service 
to resolve user 
and group informatio

cat /etc/samba/smb.conf (with comments clipped):
[global]
   unix extensions = no
   workgroup = Palantir
   server string = vash server (Samba %v)
   wins support = no
   wins server = 192.168.28.4
   dns proxy = no
   name resolve order = lmhosts host wins bcast
   netbios name = Vash
   interfaces = 192.168.28.2/24
   hosts allow = 192.168.28. 127.
   log file = /var/log/samba/log.%m
   max log size = 50
   syslog = 0
   panic action = /usr/share/samba/panic-action %d
   security = ads
   realm = ad.palantir.net
   password server = knives.palantir.net
   winbind use default domain = yes
   encrypt passwords = true
   username map = /etc/samba/smbusers
   domain logons = no
   logon script = %U.bat
   load printers = no
   socket options = TCP_NODELAY
   remote browse sync = 192.168.28.255
   remote announce = 192.168.28.255
   local master = no
   os level = 33
   domain master = no
   preferred master = no
   template shell = /bin/bash
   idmap uid = 16777216-33554431
   idmap gid = 16777216-33554431
   winbind enum users = yes
   winbind enum groups = yes

[homes]
   comment = Home Directories
   browseable = no
   writable = yes


[archives]
   comment = Archived projects
   path = /vash/archives
   browseable = yes
   guest ok = 

Bug#381743: The ultimate weapon of courtship

2008-03-26 Thread serena peterson
Real men have real big peckers click here now

http://www.zerdania.com/
Follow the Trusted Formula



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



Bug#41764: Learn how to pleasure her

2008-03-25 Thread Peterson Miguel

The real trophy for her is what lies in your pants.

http://www.Dressniners.com/
Lindsay getting the ride of her life



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



Bug#69728: Make her unbelievably wet

2008-03-24 Thread Peterson Amphone
Life does not have to be as boring as this, click here

http://www.Takeherhards.com/
Quite simply put : unbelievable



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



Bug#320784: Pink and wet

2008-03-24 Thread Peterson adfasfwe

You deserve only the best, click here

http://www.Takeherhards.com/
Intensify and double your pleasure



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



Bug#335537: Thicker and Healthier

2008-03-23 Thread LOWELL peterson
Give your girl the perfect present when she takes off your boxers.

http://www.decrenaun.com/
Right spot for her, everytime



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



Bug#254649: Get head every night

2008-03-23 Thread Sumeet peterson

Give your girl the perfect present when she takes off your boxers.

http://www.tiahtpa.com/
Molly loves it huge



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



Bug#353626: She said I thrust harder than him

2008-03-21 Thread julisa peterson

You can achieve a giant rod within just weeks.

http://www.saunfruer.com/
Jessica Alba naked and wet



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



Bug#54988: Affordable, permanant and effective results.

2008-03-21 Thread bc peterson

Unleash your huge 9inch lovestick on her and watch her come.

http://www.aluuio.com/
Her pussy smiled at me



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



Bug#292503: attic amanita alexis

2008-03-17 Thread Mark Peterson
Aquire Prescriptinos and Medicatinos asap

http://anniealberich.anther.loloies.com



it atticamanita




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



Bug#297536: attract allow apprehensive

2008-03-17 Thread Humberto Peterson
Pick up Prescriptiosn and Mdeications right now

www.www.abeladventitious.bah.nothyr.com



see attractallow




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



Bug#173215: Mobility-based operating system

2008-02-27 Thread Ezra Peterson

Microsoft Windows Vista Ultimate new features:
• Mobility-based operating system meets all your computing needs whether you're 
working from home, working on the road, or searching for entertainment options
• Combines all the features of a business-focused operating system, all the 
efficiency features of a mobility-focused operating system, and all of the 
digital entertainment features of a consumer-focused operating system

http://aureliasechristkt.blogspot.com

System Requirements

• 1-gigahertz (GHz) 32-bit (x86) processor or 1-GHz 64-bit (x64) processor
• 1 GB RAM
• 40-GB hard disk that has 15 GB of free hard disk space (the 15GB of free 
space provides room for temporary file storage during the install or upgrade.)
• Internal or external DVD-burning hardware device





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



Bug#168962: Windows Vista ready to download

2008-02-26 Thread Antwan Peterson
Microsoft Windows Vista Ultimate new features: 


• Mobility-based operating system meets all your computing needs whether you're 
working from home, working on the road, or searching for entertainment options
• Combines all the features of a business-focused operating system, all the 
efficiency features of a mobility-focused operating system, and all of the 
digital entertainment features of a consumer-focused operating system
• Remotely connect to business networks; Windows BitLocker Drive Encryption 
provides improved levels of protection against theft for your important 
business data whether you are at home, on the road, or in the office
• Delivers all of the entertainment features available in Windows Vista Home 
Premium; includes everything you need to enjoy the latest in digital 
photography, music, movies, analog TV, or even HDTV
• Ideal for both business and home entertainment use

http://rosariokinslowpq.blogspot.com

System Requirements

• Windows (Recommended minimum hardware requirements):
• 1-gigahertz (GHz) 32-bit (x86) processor or 1-GHz 64-bit (x64) processor
• 1 GB RAM
• 40-GB hard disk that has 15 GB of free hard disk space (the 15GB of free 
space provides room for temporary file storage during the install or upgrade.)
• Internal or external DVD-burning hardware device
• A Windows Aero-capable graphics card : Supports a Windows Display Driver 
Model (WDDM) driver, Has a DirectX 9-class graphics processor unit (GPU) that 
supports Pixel Shader 2.0, Supports 32 bits per pixel, Passes the Windows Aero 
acceptance test in the Windows Driver Kit (WDK)
• Audio output capability




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



Bug#271492: Autodesk 3D Studio Max 9 for XP for 149, Reta!ls @ 6720 (emolument 6590)

2008-02-09 Thread Nathan Peterson
crystal reports professional edition 11 - 69
propellerhead reason 3 - 69

Put ''svedsoft. com'' in |nternet Eplorer
(w/o '' and space)

sony vegas 6 - 69
ibm lotus smartsuite millenium edition release 9.8 - 39
discreet combustion 4.0 for windows - 69
2008 microsoft office beta for mac - 79
symantec norton 360 - 29
creative suite 3 design premium for win - 269
microsoft vista ultimate - 89
mcafee desktop firewall 8.0.493 - 39
graphisoft archicad 9.0 r1 international - 69
realize voice 3.51 - 29






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



Bug#305228: Check it

2008-01-25 Thread Joseph Peterson
zend studio - 49
microsoft visual studio 2005 professional edition - 149

Type 'nmoresoft. com' in |nternet Explorer
(w/o spaces and quotes)

microsoft onenote pro 2003 - 29
crystal reports professional edition 11 - 69
adobe premiere pro cs3 - 79
systran 6 premium translator - 159
scansoft dragon naturallyspeaking 7 preferred - 39
autodesk aliasstudio 2008 - 109
adobe golive cs2 - 49
macrovision installshield premier edition 2008 - 199
sony vegas 6 - 69
autodesk building systems 2006 - 129

Save up to 77-90%!





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



Bug#47214: Nur bei uns kцnnen Sie verdienen von 300 bis 600 Euro in Woche

2007-10-02 Thread Rafael Peterson

Zerix Intern.Transver
Manager: Maksim Kovalski
109153 Moskau
leningradskiy 337/2
Tel +7 984-641-1756


Arbeiten Sie endlich für sich selbst! 
Sie wollen sich beruflich verändern ?

Sie kommen in ihrem job nicht wie gewünscht voran und wollen eine
neuen karriere-kurs einschlagen? Dann sollten wir uns kennen lernen!!! 
Nehmen Sie Ihre Zukunft selbst in die Hand!

Wir sind ein europaweit tätiges Spezialkreditinstitut. Zu unserem
Kunden gehören konzerneigene und fremde Handelsunternehmen. Zu unserem
aufgaben gehört neben dem klassischem Kredit ,Leasing und
Unternehmäskauf/Verkauf (Nachfolgeregelungen) ,Transfer per Western Union ,Money
Grimm .In diesem Augenblick arbeiten für uns bereits mehr als 100
unabhängige Agenten auf der ganzen Welt.
Für unsere Kunde haben wir spezifische Bankdienstleistungen
entwickelt. Wir bieten  Ihnen eine interessantes Aufgabengebiet mit guten
persönlichen Entwicklungschancen.
Zu Verstärkung unsere Team  brauchen wir  einen Projekt-Koordinator. 
Zur Zeit wächst unsere Firma und wir haben eine beschränkte Zahl von
vakanten Stellen. 
Sie haben Interesse an Weiterbildung, können gut organisieren, sind

verantwortungsbewusst  und überzeugungsstark? Und sie suchen eine Voll
oder  Teilzeitbeschäftigung? Dann bewerben sie sich! Auch
Widereinsteiger /innen sind uns willkommen.
Insbesondere eine VOB-konforme Arbeitsweise machen Sie zum idealen
Kandidaten. 
Wir möchten betonen, dass keinerlei Investitionen Ihrerseits
erforderlich sind, um mit uns zusammenzuarbeiten. 
Ihre aufgaben liegen in der umfassenden ganzheitlichen und

bedarfsorientierten Beratung, sowie der aktiven Neu- und 
Bestandkundenakquisition
unserer Privatkunden.

Haben Sie Interesse an dieser Arbeit, teilen Sie uns bitte mit und wir
werden uns danach mit Ihnen zum Interview in Verbindung setzen.

Senden Sie uns ihre Antwort an: [EMAIL PROTECTED]

und Sie erhalten weitere Informationen

Sollten sie noch eventuelle Fragen haben,
wird Ihnen selbstverständlich einer unserer 
deutschen Mitarbeiter Zur Verfügung stehen


Mit freundlichem Grüße  


Manager: Maksim Kovalski




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



Bug#202096: 100% Safe To Take, With NO Side Effects.

2007-09-14 Thread Woodrow Peterson

Our team of Scientists spent years developing a product that will safely and 
effectively add length, width
http://fromad.com




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



Bug#423427: php4-odbc *** glibc detected *** double free or corruption (!prev)

2007-05-11 Thread Trev Peterson
Package: php4-odbc
Version: 6:4.4.4-8+etch2
Architecture: amd64
Status: install ok installed
Severity: important

Error Message:
*** glibc detected *** double free or corruption (!prev):
0x00986630 ***
Aborted

To test this I ran a simple php program test_odbc.php:
?php
$conn=odbc_connect('TestDB','user','pass');
$sql=SELECT * FROM Page_Templates WHERE TypeID = 1; 
$result=odbc_exec($conn,$sql);
print odbc_result($result, 'Type') .  br /\n;
print odbc_result($result, 'Template_Name') .  br /\n;
odbc_close($conn);
?

Expected output:
General br /
general.php br /

Observed Output:
General br /
general.php br /
*** glibc detected *** double free or corruption (!prev):
0x009867d0 ***
Aborted

Suggest Fix: None

Depends on Packages:
unixodbc2.2.11-13
tdsodbc 0.63-3
php4-cgi4.4.4-8+etch2
libapache2-mod-fcgid1.10-2
linux-image-2.6-amd64   2.6.18+5
libc6   2.3.6.ds1-8

Kernel Version: 2.6.18-3-amd64

Libc Version: 2.3.6

Notes:
This system has php5 installed as an apache2 module and php4 installed
as fcgi.  test_odbc.php runs as expected under php5 but throws the error
under php4.

Thanks and let me know if there is additional information I can provide
or testing I can do to help resolve this.
-- 
Trev Peterson
Advanced Reality
Email: [EMAIL PROTECTED]
Phone: +1 847 406 9018




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



Bug#394097: Doesn't work here

2007-03-19 Thread Trev Peterson
I have been trying to get this to work here for many hours now with no
luck.  Right now it lets anyone (no authentication necessary).  The PAM
config seems OK (it works for ssh with the same common-auth and
common-account as the apache2).  If I uncomment either of the Require
statements I get the could not open password file: (null) error.

Error lines from log:
[Mon Mar 19 07:21:05 2007] [error] [client 192.168.19.2] (9)Bad file
descriptor: Could not open password file: (null)
[Mon Mar 19 07:21:05 2007] [error] [client 192.168.19.2] PAM: user
'peterson'  - invalid account: Authentication service cannot retrieve
authentication info.

Pam is authenticating via pam_krb5(against AD) and pam_unix
(/etc/passwd).

Relevant Apache config:

Location /svn
DAV svn
SVNParentPath /var/lib/svn
AuthType Basic
AuthPAM_Enabled on
AuthPAM_FallThrough off
AuthBasicAuthoritative off
AuthName Subversion repository
#AuthzSVNAccessFile /var/lib/svn/svnaccess
#Require valid-user
#   Require group svn-users
/Location

mods-enabled are:
actions.load  cache.loadenv.load  php5.conf
alias.loadcgi.load  expires.load  php5.load
auth_basic.load   dav_fs.conf   fcgid.confrewrite.load
auth_digest.load  dav_fs.load   fcgid.loadsetenvif.load
authn_file.load   dav.load  headers.load  speling.load
auth_pam.load dav_svn.conf  include.load  ssl.conf
authz_default.loaddav_svn.load  info.load ssl.load
authz_groupfile.load  deflate.conf  mime.load status.load
authz_host.load   deflate.load  mime_magic.conf   suexec.load
authz_user.load   dir.conf  mime_magic.load   usertrack.load
autoindex.loaddir.load  negotiation.load  vhost_alias.load


Package versions:
apache2-mpm-prefork   2.2.3-3.3
libapache2-mod-auth-pam   1.1.1-6.1
libapache2-svn1.4.2dfsg1-2


Does anyone have this working with Require group OR AuthzSVNAccessFile?

-- 
Trev Peterson
Advanced Reality
Email: [EMAIL PROTECTED]
Phone: +1 847 406 9018




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



Bug#242981: Adobe Acrobat 8 PR0 MS Office 2007 $79 N0W @ Anne's Softshop

2006-12-07 Thread Yasmin Peterson
T0P 1O TITLES
0N [EMAIL PROTECTED] N0W!

$79 MS Office Enterprise 2007
$79 Adobe Acrobat 8 Pro
$49 Windows XP Pro w/SP2
$59 Adobe Premiere 2.0
$99 Macromedia Studio 8
$69 QuickBooks 2006 Prem.
$129 Autodesk Autocad 2007
$59 Corel Grafix Suite X3
$149 Adobe Creative Suite 2
$59 Adobe Illustrator CS2

http://acrsok.erodinsoft.net/

See more by this manufacturer
Microsoft
New Mac Software
Adobe

Microsoft Office 2007 Enterprise Edition
Regular price:  $899.00
Our offer:  $79.95
You save:  $819.95 (89%)
Availability: Pay and download instantly.

http://acrsok.erodinsoft.net/2442.php

Sales Rank: #1
Average Customer Review: *
(based on 36050 reviews)

Adobe Acrobat 8.0 Professional
Market price:  $449.00
We propose:  $79.95
Your profit:  $369.05 (80%)
Availability: Available for INSTANT download.

http://acrsok.erodinsoft.net/2441.php

Top-ranked item.
Average Customer Review: *
(based on 75737 reviews)

Macromedia Studio 8
Retail price:  $999.00
Proposition:  $99.95
Your benefit:  $899.05 (90%)
Availability: Can be downloaded INSTANTLY.

http://acrsok.erodinsoft.net/2348.php

Best choice for professional.
Average Customer Review: *
(based on 87960 reviews)

ty: Available for INSTANT download.

Top-ranked item.
Average Customer Review: *
(based on 43738 reviews)

sio13: type 16550A (multiport)
contents of your rule set (otherwise known as the chain) and packet
the FreeBSD Kernel'' section for more information on kernel configura-
#
previous versions of FreeBSD, use mt to read one block from the tape,
0x1c read -
If your port's source Makefile has something else than `all' as the
freely available, because national governments in many places like to
should indicate the successful probe of the Boca ports as follows:
device   sd0
The following replacement for the shell script
applicable) filesystems to your client, and that the client has
Tar
  When set to 1, there are no words
[et cetera.]
in /etc/printcap.  To test the default printer, type lpr without any
program config as documented in ``Building Berkeley Kernels with
reasons IRQ 2 = IRQ 9) in order to access it from FreeBSD.  If
While most device drivers in FreeBSD are now smart enough to
Help!  I have no space!  Do I need to delete everything first?
simple.
device sio15 at isa? port 0x170 tty flags 0x1005
Note if you're trying this at home, you'll need to be root.
into the system.
We then extracted the gnats skeleton and went into the gnats directory
10.  PC Hardware compatibility
and other serial communication parameters on behalf of the filter
Data thruput ranges from  150kB/s to500kB/s.  Data capacity ranges
18.2.5.3.2.  Getting the original sources
/lib/libc.so.x.y.z
mistaken for this one, when the NFS servers and clients are on
used for access to X11 servers, and can be a security threat
o  Albitz, Paul and Liu, Cricket. DNS and BIND.  O'Reilly 
subdirectory called work/${DISTNAME}, e.g.
Most ESDI drives allow hard or soft sectoring to be selected using a
device lnc0 at isa? port 0x300 net irq 10 drq 0 vector lncintr
After you have made changes to /etc/ttys, you may send the init
pair of characters, ASCII code 10 and ASCII code 13 (the carriage
out ATH0\13
#
o   Prioritization of jobs
Triton chip set, we ``fixed it there''.
the availability of free or cheap surplus drives makes them ideal for
for a service who's login session looks like
One obvious way to get header pages is to have every conversion filter
printer).
clear that the project was on the road to perhaps even becoming a
device ze0 at isa? port 0x300 net irq 5 iomem 0xd8000 vector
domain HIP.Berkeley.EDU
}
included.
current standard is SCSI-2 (see ``Further   reading''), with
A short description of how FreeBSD uses the memory on the i386
it.  Again, look over your configuration, and if you still
PostScript.  It then uses lprps to send the job to the printer.
libXt.so.6.0  xf lib
it would start the if filter (this is mostly true: see ``Output
specified with an optional wildcard.For example, ppp* would match
authentication and to forward packets, possibly on a multi-homed
Reported by: Jorg Wunsch joerg_wunschuriah.heep.sax.de
resolution based on that fact, not spinning down the disk if the
Hard sectoring allows a selection of sector size (normally 256, 512 or
an alternate using the dumpon(8) command.  Dumps to non-swap devices,
Saturn-II (ie, 82424ZX at rev 3 or 4):
instance, I own a 670 Mb drive that has 54 sectors per track.
Update packet counters but do not allow/deny the packet based on
controller aha0at isa? port ``IO_AHA0'' bio irq ? drq 5
drives in a single cabinet with automatic tape changing.  Library
4. Ensure that your NFS server has exported the root (and swap if
edges.
Changes to the documentation are overseen by the FreeBSD documentation
the DTR line is asserted by checking the modem's indicator lights (if
the 

Bug#269638: Microsoft Office 2007 $79 N0W @ Rebecca's Softshop

2006-12-04 Thread Loralie Peterson
T0P 1O TITLES
0N [EMAIL PROTECTED] N0W!

$79 MS Office Enterprise 2007
$79 Adobe Acrobat 8 Pro
$49 Windows XP Pro w/SP2
$59 Adobe Premiere 2.0
$99 Macromedia Studio 8
$69 QuickBooks 2006 Prem.
$129 Autodesk Autocad 2007
$59 Corel Grafix Suite X3
$149 Adobe Creative Suite 2
$59 Adobe Illustrator CS2

http://voln-oem.net/

See more by this manufacturer
Microsoft
New Mac Software
Adobe

Microsoft Office 2007 Enterprise Edition
Regular price:  $899.00
Our offer:  $79.95
You save:  $819.95 (89%)
Availability: Pay and download instantly.

http://voln-oem.net/2442.php

Sales Rank: #1
Average Customer Review: *
(based on 12448 reviews)

Adobe Acrobat 8.0 Professional
Market price:  $449.00
We propose:  $79.95
Your profit:  $369.05 (80%)
Availability: Available for INSTANT download.

http://voln-oem.net/2441.php

Top-ranked item.
Average Customer Review: *
(based on 37670 reviews)

Macromedia Studio 8
Retail price:  $999.00
Proposition:  $99.95
Your benefit:  $899.05 (90%)
Availability: Can be downloaded INSTANTLY.

http://voln-oem.net/2348.php

Best choice for professional.
Average Customer Review: *
(based on 88877 reviews)

ty: Available for INSTANT download.

Top-ranked item.
Average Customer Review: *
(based on 15768 reviews)

  8250/16450/16550 UART.
ATZ
This document provides suggestions for configuring a FreeBSD system to
  Setting this bit to 1 allows the UART
CA 92128, (408) 293-0800
To send data to a networked printer, you need to develop a
/usr/sbin/arp -d $5
Meanwhile, you may also find the following ``typical installation
12.4.2.  Quick Overview
The FreeBSD handbook
on your firewall host, and people can telnet in to your firewall from
(cd ./documentation/; make  )
o  Rewrite the Intel Etherexpress 16 driver.

  arrived word is put in the holding
may want to read their man pages just to be familiar with their
a named realm.
  echo 'killing pppd, PID=' ${pid}
#  /etc/printcap for host rose - restrict multiple copies on bamboo
directory by mistake, but it's actually very easy.
Enter secret password:) I typed my pass phrase here
Account #: 01411-07441 (FreeBSD, Inc.)
as an exercise to the reader.
# tar xzf gnats.tar.gz  [extract the gnats skeleton]
0x89 r/w  DMA Channel 6
Current Kerberos master key version is 1.
 cd /pub/FreeBSD/ports/databases
boundary.  Then the DMA will be programmed to read data to that
as:
program config as documented in ``Building Berkeley Kernels with
can handle the higher speeds. Problems like hangups, bad data etc
The latest source can be found on the above mentioned ftp server under
bad.)
ple printers rattan and bamboo:
Once your DDB kernel is running, there are several ways to enter DDB.
subscription request for a local mailing list (note: this is more
otherwise, this can often be done by simply replacing the occurrences
To continue the operation of an interrupted kernel, simply type
-f Print FORTRAN text files.
controller ncr0
This scheme works fine, but keep in mind that it of course only works
getty will use and configure the modem's non-volatile RAM to match
bamboo|ps|PS|S|panasonic|Panasonic KX-P4455 PostScript v51.4:\
gzip -c -best /sbin/init  /mnt/sbin/init
In FreeBSD, the Kerberos is not that from the original 4.4 BSD,
text).
devicest0 [support for 2 SCSI tapes]
setup where you can configure your firewall host in a controlled
(abbreviation: st), magnetic disks (sd), cdroms (cd) etc. In case you
One requires a ``FreeBSD CDROM'', the other involves using an
Data transfer rate is 300kB/s.
( cd ./documentation/ ; make   mandir=/usr/local/man/man1 
man3dir=/usr/local/man/man3 infodir=/usr/local/info install )
Data transfer rate is 510kB/s.
If this machine were configured to disallow UNIX passwords over a
perfect media without any flaws.  To solve this problem, FreeBSD use
expensive compared to 8mm or 4mm tapes, up to 5 times the price per GB
grunt# ls
  Empty Interrupt (ETBEI)
as root to load the LKM.
The author will try to give balanced configuration information, but is
This drive is used in Hewlett-Packard's SureStore 12000e tape drive.
0xde write   Write All Mask Register Bits
Printers'' tells you what you should do to overcome this problem.
 x/wx 0xf0133fe0,40
HAS_CONFIGURE= yes
If you are printing a large job, you probably want to use this
grunt$ passwd
for Intel i386/i486/Pentium (or compatible) based PC's.  It is based
(DLAB==0) Any data words received by the UART from the
device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector
for information on which items are still required.
SRAM installed.  (I have these for the ASUS PCI/I-486SP3G rev
In our example, using lpr -d means the printer needs a df capability
the ``'' section and/or consult your IP network manager.
22.1.1.  Loading a kernel
o   mounts /dev/vn0 as /rootfs
# 

Bug#337379: Microsoft Office 2007 $79 N0W @ Rebecca's Softshop

2006-12-04 Thread Yasmin Peterson
T0P 1O TITLES
0N [EMAIL PROTECTED] N0W!

$79 MS Office Enterprise 2007
$79 Adobe Acrobat 8 Pro
$49 Windows XP Pro w/SP2
$59 Adobe Premiere 2.0
$99 Macromedia Studio 8
$69 QuickBooks 2006 Prem.
$129 Autodesk Autocad 2007
$59 Corel Grafix Suite X3
$149 Adobe Creative Suite 2
$59 Adobe Illustrator CS2

http://voln-oem.net/

See more by this manufacturer
Microsoft
New Mac Software
Adobe

Microsoft Office 2007 Enterprise Edition
Regular price:  $899.00
Our offer:  $79.95
You save:  $819.95 (89%)
Availability: Pay and download instantly.

http://voln-oem.net/2442.php

Sales Rank: #1
Average Customer Review: *
(based on 12448 reviews)

Adobe Acrobat 8.0 Professional
Market price:  $449.00
We propose:  $79.95
Your profit:  $369.05 (80%)
Availability: Available for INSTANT download.

http://voln-oem.net/2441.php

Top-ranked item.
Average Customer Review: *
(based on 37670 reviews)

Macromedia Studio 8
Retail price:  $999.00
Proposition:  $99.95
Your benefit:  $899.05 (90%)
Availability: Can be downloaded INSTANTLY.

http://voln-oem.net/2348.php

Best choice for professional.
Average Customer Review: *
(based on 88877 reviews)

ty: Available for INSTANT download.

Top-ranked item.
Average Customer Review: *
(based on 15768 reviews)

  8250/16450/16550 UART.
ATZ
This document provides suggestions for configuring a FreeBSD system to
  Setting this bit to 1 allows the UART
CA 92128, (408) 293-0800
To send data to a networked printer, you need to develop a
/usr/sbin/arp -d $5
Meanwhile, you may also find the following ``typical installation
12.4.2.  Quick Overview
The FreeBSD handbook
on your firewall host, and people can telnet in to your firewall from
(cd ./documentation/; make  )
o  Rewrite the Intel Etherexpress 16 driver.

  arrived word is put in the holding
may want to read their man pages just to be familiar with their
a named realm.
  echo 'killing pppd, PID=' ${pid}
#  /etc/printcap for host rose - restrict multiple copies on bamboo
directory by mistake, but it's actually very easy.
Enter secret password:) I typed my pass phrase here
Account #: 01411-07441 (FreeBSD, Inc.)
as an exercise to the reader.
# tar xzf gnats.tar.gz  [extract the gnats skeleton]
0x89 r/w  DMA Channel 6
Current Kerberos master key version is 1.
 cd /pub/FreeBSD/ports/databases
boundary.  Then the DMA will be programmed to read data to that
as:
program config as documented in ``Building Berkeley Kernels with
can handle the higher speeds. Problems like hangups, bad data etc
The latest source can be found on the above mentioned ftp server under
bad.)
ple printers rattan and bamboo:
Once your DDB kernel is running, there are several ways to enter DDB.
subscription request for a local mailing list (note: this is more
otherwise, this can often be done by simply replacing the occurrences
To continue the operation of an interrupted kernel, simply type
-f Print FORTRAN text files.
controller ncr0
This scheme works fine, but keep in mind that it of course only works
getty will use and configure the modem's non-volatile RAM to match
bamboo|ps|PS|S|panasonic|Panasonic KX-P4455 PostScript v51.4:\
gzip -c -best /sbin/init  /mnt/sbin/init
In FreeBSD, the Kerberos is not that from the original 4.4 BSD,
text).
devicest0 [support for 2 SCSI tapes]
setup where you can configure your firewall host in a controlled
(abbreviation: st), magnetic disks (sd), cdroms (cd) etc. In case you
One requires a ``FreeBSD CDROM'', the other involves using an
Data transfer rate is 300kB/s.
( cd ./documentation/ ; make   mandir=/usr/local/man/man1 
man3dir=/usr/local/man/man3 infodir=/usr/local/info install )
Data transfer rate is 510kB/s.
If this machine were configured to disallow UNIX passwords over a
perfect media without any flaws.  To solve this problem, FreeBSD use
expensive compared to 8mm or 4mm tapes, up to 5 times the price per GB
grunt# ls
  Empty Interrupt (ETBEI)
as root to load the LKM.
The author will try to give balanced configuration information, but is
This drive is used in Hewlett-Packard's SureStore 12000e tape drive.
0xde write   Write All Mask Register Bits
Printers'' tells you what you should do to overcome this problem.
 x/wx 0xf0133fe0,40
HAS_CONFIGURE= yes
If you are printing a large job, you probably want to use this
grunt$ passwd
for Intel i386/i486/Pentium (or compatible) based PC's.  It is based
(DLAB==0) Any data words received by the UART from the
device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector
for information on which items are still required.
SRAM installed.  (I have these for the ASUS PCI/I-486SP3G rev
In our example, using lpr -d means the printer needs a df capability
the ``'' section and/or consult your IP network manager.
22.1.1.  Loading a kernel
o   mounts /dev/vn0 as /rootfs
# 

Bug#219637: Microsoft Office 2007 $79 N0W @ Rebecca's Softshop

2006-12-04 Thread Alexa Peterson
T0P 1O TITLES
0N [EMAIL PROTECTED] N0W!

$79 MS Office Enterprise 2007
$79 Adobe Acrobat 8 Pro
$49 Windows XP Pro w/SP2
$59 Adobe Premiere 2.0
$99 Macromedia Studio 8
$69 QuickBooks 2006 Prem.
$129 Autodesk Autocad 2007
$59 Corel Grafix Suite X3
$149 Adobe Creative Suite 2
$59 Adobe Illustrator CS2

http://voln-oem.com/

See more by this manufacturer
Microsoft
New Mac Software
Adobe

Microsoft Office 2007 Enterprise Edition
Regular price:  $899.00
Our offer:  $79.95
You save:  $819.95 (89%)
Availability: Pay and download instantly.

http://voln-oem.com/2442.php

Sales Rank: #1
Average Customer Review: *
(based on 12448 reviews)

Adobe Acrobat 8.0 Professional
Market price:  $449.00
We propose:  $79.95
Your profit:  $369.05 (80%)
Availability: Available for INSTANT download.

http://voln-oem.com/2441.php

Top-ranked item.
Average Customer Review: *
(based on 37670 reviews)

Macromedia Studio 8
Retail price:  $999.00
Proposition:  $99.95
Your benefit:  $899.05 (90%)
Availability: Can be downloaded INSTANTLY.

http://voln-oem.com/2348.php

Best choice for professional.
Average Customer Review: *
(based on 88877 reviews)

ty: Available for INSTANT download.

Top-ranked item.
Average Customer Review: *
(based on 15768 reviews)

  8250/16450/16550 UART.
ATZ
This document provides suggestions for configuring a FreeBSD system to
  Setting this bit to 1 allows the UART
CA 92128, (408) 293-0800
To send data to a networked printer, you need to develop a
/usr/sbin/arp -d $5
Meanwhile, you may also find the following ``typical installation
12.4.2.  Quick Overview
The FreeBSD handbook
on your firewall host, and people can telnet in to your firewall from
(cd ./documentation/; make  )
o  Rewrite the Intel Etherexpress 16 driver.

  arrived word is put in the holding
may want to read their man pages just to be familiar with their
a named realm.
  echo 'killing pppd, PID=' ${pid}
#  /etc/printcap for host rose - restrict multiple copies on bamboo
directory by mistake, but it's actually very easy.
Enter secret password:) I typed my pass phrase here
Account #: 01411-07441 (FreeBSD, Inc.)
as an exercise to the reader.
# tar xzf gnats.tar.gz  [extract the gnats skeleton]
0x89 r/w  DMA Channel 6
Current Kerberos master key version is 1.
 cd /pub/FreeBSD/ports/databases
boundary.  Then the DMA will be programmed to read data to that
as:
program config as documented in ``Building Berkeley Kernels with
can handle the higher speeds. Problems like hangups, bad data etc
The latest source can be found on the above mentioned ftp server under
bad.)
ple printers rattan and bamboo:
Once your DDB kernel is running, there are several ways to enter DDB.
subscription request for a local mailing list (note: this is more
otherwise, this can often be done by simply replacing the occurrences
To continue the operation of an interrupted kernel, simply type
-f Print FORTRAN text files.
controller ncr0
This scheme works fine, but keep in mind that it of course only works
getty will use and configure the modem's non-volatile RAM to match
bamboo|ps|PS|S|panasonic|Panasonic KX-P4455 PostScript v51.4:\
gzip -c -best /sbin/init  /mnt/sbin/init
In FreeBSD, the Kerberos is not that from the original 4.4 BSD,
text).
devicest0 [support for 2 SCSI tapes]
setup where you can configure your firewall host in a controlled
(abbreviation: st), magnetic disks (sd), cdroms (cd) etc. In case you
One requires a ``FreeBSD CDROM'', the other involves using an
Data transfer rate is 300kB/s.
( cd ./documentation/ ; make   mandir=/usr/local/man/man1 
man3dir=/usr/local/man/man3 infodir=/usr/local/info install )
Data transfer rate is 510kB/s.
If this machine were configured to disallow UNIX passwords over a
perfect media without any flaws.  To solve this problem, FreeBSD use
expensive compared to 8mm or 4mm tapes, up to 5 times the price per GB
grunt# ls
  Empty Interrupt (ETBEI)
as root to load the LKM.
The author will try to give balanced configuration information, but is
This drive is used in Hewlett-Packard's SureStore 12000e tape drive.
0xde write   Write All Mask Register Bits
Printers'' tells you what you should do to overcome this problem.
 x/wx 0xf0133fe0,40
HAS_CONFIGURE= yes
If you are printing a large job, you probably want to use this
grunt$ passwd
for Intel i386/i486/Pentium (or compatible) based PC's.  It is based
(DLAB==0) Any data words received by the UART from the
device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector
for information on which items are still required.
SRAM installed.  (I have these for the ASUS PCI/I-486SP3G rev
In our example, using lpr -d means the printer needs a df capability
the ``'' section and/or consult your IP network manager.
22.1.1.  Loading a kernel
o   mounts /dev/vn0 as /rootfs
# 

Bug#134571: envenomation gastroesophageal disenjoy patricia magee

2006-11-03 Thread Faustino Peterson
Hey patricia magee,

We cover closing costs. Smallest rates. 

www.hinany.com/16r

Good to move to a lower fixed rate or purchase

Thanks,
Faustino Peterson




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



Bug#152152: Your TransUnion Report mary ann blicharz

2006-11-01 Thread Calvin Peterson
mary ann,

We can and will negotiate with you.

www.canzant.com/16r

Contact my office and get a 4.21% decrease.

Thanks Alot,
Calvin Peterson




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



Bug#244158: =?koi8-r?b?PT9LT0k4LVI/UT8tID1FNT1DMj1DMT1DQyA9RDEgPUQ3PUMxPURCPUM1PUM4ID1ENz1EMz1DNT1D

2006-11-01 Thread Rose Peterson
OCA9QzM9QzE9RDI9QzU9Q0EhISE/PQA=?=
Date: Wed, 1 Nov 2006 12:21:47 -0060
MIME-Version: 1.0
Content-Type: text/plain;
format=flowed;
charset=koi8-r;
reply-type=original
Content-Transfer-Encoding: 8bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2800.1106
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106

ôÙ ËÕÄÁ ÐÒÏÐÁÌ?

ìÁÔÅÎÔÎÁÑ ÎÁÔÕÒÁÌËÁ! 

é ÂÕÊÎÏÊ ÓÔÒÁÓÔÉ ÏÂÕÚÄÁÔØ,
÷ÄÏ×Á, ÎÅ × ÓÉÌÁÈ ÐÙÌËÏÓÔØ ÎÒÁ×Á
óËÁÖÕ, ÓÏ×ÒÁÔØ ×ÁÍ ÎÅ ÂÏÑÓØ,
îÅ ÍÅÎØÛÅ ÄÅÓÑÔÉ×ÅÒÛËÏ×ÙÊ,
ëÕÐÞÉÈÁ ×ÚÄÕÍÁÌÁ ËÒÉÞÁÔØ
ëÁË ÅÓÔØ ÐÏÖÁÒÎÁÑ ËÉÛËÁ !
îÁÍÅÄÎÉ ÈÕÊ Õ ÐÁÒÅÎØËÁ,
é ÖÅÎÉÈÉ ÐÒÅÄ ÎÅÊ ÓËÕÞÁÀÔ,
íÁÎÉÔ Ë ÓÅÂÅ ÔÏÌÐÙ ÌÀÄÅÊ,
ëÁË ÂÕÄÔÏ ÅÊ ×ÓÁÄÉÌÉ ÄÙÛÌÏ,
á ÔÏÊ ÅÌÄÏÊ ×ÏÓØÍÉ×ÅÒÛËÏ×ÏÊ
÷ úÁÍÏÓË×ÏÒÅÞØÅ, ÎÁ ÐÏÌÑÎËÅ
íÁÔÒÅÎÁ, Ó×ÁÈÁ, ÄÏÒÏÇÁÑ,
ï ÞÅÍ-ÔÏ ÔÑÖÅÌÏ ×ÚÄÏÈÎÕÌÁ,
ïÔÌÉÞÅÎ ÂÙÌ íÕÄÉÝÅ× ìÅ×,
ïÄÉÎ ÐÁÒÎÉÛËÁ, ÅÊ ÖÅ ÅÊ,
îÁÝÕÐÁ×ÛÉ ÅÌÄÁË, ËÕÐÞÉÈÁ,
ìÕËÁ ×ÏÓÐÒÑÎÕÌ ÌØ×ÏÍ Ó×ÉÒÅÐÙÍ,
é ÎÅ ÎÁÓÙÔÉÔ ×ÁÓ ÔÏÇÄÁ
á Õ ÄÒÕÇÏÇÏ - ËÏÒÏÔÏË.
èÏÔÑ Ó ÐÉÚÄÏÀ ÕÃÅÌÅ×ÛÅÊ,
é ÚÕÂ ÎÁ ÚÕÂ ÎÅ ÐÏÐÁÄÁÌ !
âÌÁÇÏÄÁÒÑ Ó×ÏÅÊ ÈÕÉÎÅ



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



Bug#76361: fwd: phillip sutterfield Your Equifax Report

2006-10-26 Thread Alfredo Peterson
phillip sutterfield,

After a complete review of your details, I have found
45 corporations willing to help you.  You have been O.K.ayed
from 162K at 6.35% to 644K at 4.83%

www.fantali.com/16r

Our company can help anyone, regardless of their ratings have been.

Kindest Respects,
Alfredo Peterson




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



Bug#73041: fw: Your Experian Score susalla peter

2006-10-18 Thread Matthew Peterson
susalla peter,

After going over your current history, my company can 
offer you anywhere from 267K at 7.81% to 755K at 5.40%

www.postrab.com/16r

Fill out your info and instantly get your FICO score.
Negative scores are NOT a problem. 

Thanks Alot,
Matthew Peterson




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



Bug#180569: Judicial Judgments-Support of Children-Investigator-high income

2006-10-18 Thread magdalen peterson
Hi Marry, 

Before I joined you I found myself let go from a job I held for 26 years. I
can't thank you enough for launching  me in this industry. You have given me
a bright lease on life.  Already making twice as much as I earned in my old
job.  

I drive a new Jaguar. Taking home 6 digit level in 18 months. Really having
a ball in this business. It is a blast and I am a hero to the courts and to
my clients. What an outstanding business to be in.

Doing exactly what your instruction tells me to do, is proceeding
perfectly.  I go to the local court and locate all of the clients I can
handle. 

I avail myself of your advanced reporting services to find all items which
can be seized. Using your fill in the blank forms I deliver them to the
appropriate firms. Then the funds arrive to my PO Box.  Its like magic.  I
love it. 

I can take a holiday when ever I have a whim to do so.  Hawaii and Japan
this year. 

Provide this letter to others.  This profession is so untapped it needs
many more of us assisting the courts and the  people who have been damaged.

Sincerely,
Royce P.TN

This can be you! 

For more Information, Try this Link
www.ingenious-goods.com/85/

Higher to learn more or to bring an end to receiving more info and then to
see location

His face was pale and his lips tightly compressed. Finally he leaned back
in his chair and asked: Can you reproduce this scene again? Certainly, sir,
answered the boy; as often as you likem11f


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



Bug#76361: phillip sutterfield Work has been closed permanently

2006-10-11 Thread Charles Peterson
phillip sutterfield.

Would you like to make 1.5K to 3.5K per day just for returning calls?

Speak with us : 888.705.1353

If you have a telephone and can return calls you are fully qualified.

Thanks,
Charles Peterson




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



Bug#104434: CaseID 104394

2006-10-10 Thread Scottie Peterson
How are you,

Do you need prompt finances to use 
any way you like, here are our suggestions

201K at 5.23 %
495K at 4.63 %
770K at 5.19 %

http://geocities.com/Waller97_q528/

Best Regards,
Agreement Manager
Scottie Peterson




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



Bug#56179: Equivalent Owner

2006-10-09 Thread Sylvester Peterson
Good day,

Would you like to generate 1.5K to 3.5K a day just for returning calls?
If you have a phone and can return calls you are fully qualified.

Give us a call - 800-845-0218

Goodbye,
Sylvester Peterson




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



Bug#361127: kwin: crashes with alt-tab on desktop

2006-04-06 Thread Per Peterson
Subject: kwin: crashes with alt-tab on desktop
Package: kwin
Version: 4:3.5.2-1
Severity: normal

When no windows are open or all windows are minimize, i.e. the desktop is 
showing, pressing the Alt+Tab keyboard combination crashes kwin.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15.4
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages kwin depends on:
ii  kdelibs4c2a   4:3.5.2-2  core libraries for all KDE applica
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libaudio2 1.7-6  The Network Audio System (NAS). (s
ii  libc6 2.3.6-5GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-5.1  generic font configuration library
ii  libfreetype6  2.1.10-3   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.0-1  GCC support library
ii  libice6   6.9.0.dfsg.1-6 Inter-Client Exchange library
ii  libidn11  0.5.18-2   GNU libidn library, implementation
ii  libjpeg62 6b-12  The Independent JPEG Group's JPEG 
ii  libpng12-01.2.8rel-5.1   PNG library - runtime
ii  libqt3-mt 3:3.3.6-1  Qt GUI Library (Threaded runtime v
ii  libsm66.9.0.dfsg.1-6 X Window System Session Management
ii  libstdc++64.1.0-1The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-6 X Window System protocol client li
ii  libxcomposite16.9.0.dfsg.1-6 X off-screen compositing library
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxdamage1   6.9.0.dfsg.1-6 X region 'damage' library
ii  libxext6  6.9.0.dfsg.1-6 X Window System miscellaneous exte
ii  libxfixes36.9.0.dfsg.1-6 X Window System miscellaneous 'fix
ii  libxft2   2.1.8.2-5.1FreeType-based font drawing librar
ii  libxi66.9.0.dfsg.1-6 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-6 X Window System multi-head display
ii  libxrandr26.9.0.dfsg.1-6 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libxt66.9.0.dfsg.1-6 X Toolkit Intrinsics
ii  zlib1g1:1.2.3-11 compression library - runtime

kwin recommends no packages.

-- no debconf information


~~~
E-mail correspondence to and from this address may
be subject to the North Carolina Public Records Law
and may be disclosed to third parties.
~~~




Bug#73041: what your employer is hiding from you

2006-01-25 Thread Peterson V. Jerome
Hi [EMAIL PROTECTED],,

You have been selected to generate 1.5 - 3.5k daily!

Phone me at my line below.

Let me help you generate payments!

Sincerely,
[EMAIL PROTECTED]
1.800.645.2308


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



Bug#102921: boss doesnt want you to know his secrets

2006-01-19 Thread Peterson

Hey,,

You have been selected to generate 1.5 - 3.5k daily!

Phone me at my line below.

Let me help you generate payments!

Regards,
[EMAIL PROTECTED]
1*800*617*4668


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



Bug#126984: CaseID: 0839-([EMAIL PROTECTED])-UB

2006-01-18 Thread Karin Peterson

Good day,,

We have checked your details on file, and we have 
discovered that you could be overpaying by 336, about 25.49%

To learn more, visit us below, we have helped 
millions and we can help you too!

http://asia.geocities.com/bettina26739ariana36371/

Sincerely,
[EMAIL PROTECTED]
Karin Peterson


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



Bug#107658: The office is closed tomorrow

2006-01-10 Thread Ahmad Peterson
Hello [EMAIL PROTECTED],
 
Want to generate 1.5 - 3.5k easily from the comfort
of your own home with minimal effort?

Call me here to do it : 1*888*895*3112

Payments are made daily.

Best Regards,
Ahmad Peterson


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



Bug#344358: using db for groups in nsswitch.conf creates double groups

2005-12-21 Thread Ron Peterson
Package: base-files
Version: 3.1.2

Debian Sarge

If I'm not mistaken, if you use db lookups for groups in nsswitch.conf,
followed by files, this leads to double group membership.  For example,
when my nsswitch.conf contains:

group: db files

...and after I've updated the database files in /var/lib/misc, I find
that any group membership specified in /etc/group is reported twice by
the 'groups' command.  The effect isn't noticable unless you log in
again, of course.  If logging in via ssh, the ssh daemon has to be
restarted.

We discovered this quite by accident trying to track down an issue with
Tru64 file locking in directories having no permissions for 'other' on
nfs mounts from linux, but that's another story...

Best.

-- 
Ron Peterson
Network  Systems Manager
Mount Holyoke College
http://pks.mtholyoke.edu:11371/pks/lookup?search=0xB6D365A1op=vindex


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



Bug#75853: Investment Property Deed Of Trust 4aq26

2005-09-20 Thread Peterson Garth
Customer No. 8183398

Hell0,

Your m o r t g a g e is up for renewal. We would like to 0ffer you 
a lower balance options. We have three secured options for you at 
this time. All are reduced from your current situation.

Please contact us through our site. We will contact you soon 
thereafter.


Secure-data site:

http://mealy.antarctic.herelow.com/?ra=3Dcger



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



Bug#220717: FW: hey there! Mcneill

2005-09-11 Thread celina peterson
Hiii 50806-done,
96 Looking0 for la mate in your area?
http://www.whitewitness.com/extra/lovegirls3/

A number/esn is fiberglass kcopy but earth_shattering what elaqf,
dentals not im/xsi.lt;brgt;
When kosuge beneplacito, rgbl fargis is not aholt
inosa_devisa but a kidforum fauvel tiggers arises vaidyaraman
nitrate in hp_desk, jllawyer and hamburgler. Would you
kinseytsrs?lt;brgt;
No, monodactylous reverberated kintoen is yc a leapd and

take me off367
http://www.whitewitness.com/extra/lovegirls2/getmeoff.php

cliking aliasfile. for harbison, retch, then quotatio malposed



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



Bug#134571: Amazing news about TV

2005-07-20 Thread Greg Z. Peterson
Good day to you sir,

Do you like watching cable T.V.?

PPV : Sports, Movies, Adult Channels, HBO ,Cinemax,
Starz, OnDemand, Ect.  And the best part is you can
have all these channels with our product!

Our website : filtersppv.com

If you don't want this anymore, add /r to the domain
above to goto our removal page.

Thanks Alot,
Greg Z. Peterson
[EMAIL PROTECTED]


Bug#24950: Urgent news for Cable TV Watchers

2005-07-10 Thread Mark S. Peterson
Hows it been going, [EMAIL PROTECTED]

This just in - 2005 Digital Filters have just been released 
with the latest Pass-Through technology video bypass chip.
At this time, it's the only digital filter on the market 
today that you can get with the new lockup buster technology!

Now you can get Sports, HBO, Cinemax, Starz, Adult Channels, 
OnDemand, Music Channels, all the "extra" channels without
having to pay extra for them!

Goto Our Page between the arrows below : 

-> -> -> -> onceaweek.info <- <- <- <-

Thanks,
Mark S. Peterson
[EMAIL PROTECTED]


Bug#176737: Important news for Cable TV Watchers

2005-07-10 Thread Peterson K. Eliza, VI
Hows it been going, [EMAIL PROTECTED]

This just in - 2005 Digital Filters have just been released 
with the latest Pass-Through technology video bypass chip.
At this time, it's the only digital filter on the market 
today that you can get with the new lockup buster technology!

Now you can get Sports, HBO, Cinemax, Starz, Adult Channels, 
OnDemand, Music Channels, all the "extra" channels without
having to pay extra for them!

Goto Our Page between the arrows below : 

-> -> -> -> onceaweek.info <- <- <- <-

Goodbye,
Peterson K. Eliza, VI
[EMAIL PROTECTED]


Bug#51446: Urgent news for Cable TV Consumers

2005-07-10 Thread Peterson Y. Marcella, V
Good day sir,

This just in - 2005 Digital Filters have just been released 
with the latest Pass-Through technology video bypass chip.
At this time, it's the only digital filter on the market 
today that you can get with the new lockup buster technology!

Now you can get Sports, HBO, Cinemax, Starz, Adult Channels, 
OnDemand, Music Channels, all the "extra" channels without
having to pay extra for them!

Goto Our Page between the arrows below : 

-> -> -> -> onceaweek.info <- <- <- <-

Regards,
Peterson Y. Marcella, V
[EMAIL PROTECTED]


Bug#74909: Important news for Cable TV Users

2005-07-03 Thread Peterson K. Carissa, VI
Hi,

Were Proud to be able to offer you this [2005] CableFilter

copy the page between the arrows

->->->-> goodperform.info/ppv <-<-<-<-

Best Regards,
Peterson K. Carissa, VI
[EMAIL PROTECTED]

Don't go around saying the world owes you a living; the world owes you nothing; it was here first.	. I have just practiced talking..

Joseph doesn't dislike praying carelessly.. If all pulled in one direction, the world would keel over.	-Yiddish proverb	.

A cynic is a man who knows the price of everything, and the value of nothing.	Oscar Wilde	. today i need to goto the store. .


Bug#70572: Upgraded dialup

2005-07-01 Thread Cyrus P. Peterson
How have you been,

Find our how our revolutionary hardware WILL speed
up your dialup modem connection!

More information from our website below : 

click4abargain.info

TTYL,
Cyrus P. Peterson
[EMAIL PROTECTED]

Goodbye - c l i c k 4 a b a r g a i n . i n f o / r

A cynic is a man who knows the price of everything, and the value of nothing.	Oscar Wilde	. EDWARDS: But what have we seen? Relentless negative attacks against John. So in the weeks ahead, we know what's coming, don't we?.

Do you practice driving in London?. Life is the art of drawing sufficient conclusions from insufficient premises.	Samuel Butler (1612-1680)	.

We think in generalities, but we live in details.	-Alfred North Whitehead (1861-1947)	. I'm not enjoying fighting over there..


Bug#214928: Faster Downloads

2005-05-30 Thread Chad T. Peterson, V
Hey [EMAIL PROTECTED],

Make your ordinary 56k modem go speeds of upto 250k+!
(Average increased speeds of 195 - 200K!) 

Download music/programs in seconds, not minutes! 

This hardware is compatible with EVERY Dialup ISP! 

Check it out:

http://1stopcentral.info

Bye,
Emerson Peel


No more :  : 1stopcentral.info/r


Do those gardners regret walking carefully?.
Have you hated surfing lately?.


Bug#249965: Download Faster

2005-05-30 Thread Reed V. Peterson, VI
Good day [EMAIL PROTECTED],

Make your ordinary 56k modem go speeds of upto 250k+!
(Average increased speeds of 195 - 200K!) 

Download music/programs in seconds, not minutes! 

This hardware is compatible with EVERY Dialup ISP! 

Check it out:

http://1stopcentral.info

Bye,
Nora Donne


Never Again :  : 1stopcentral.info/r


Doesn't Kate's granddaughter miss shaving for a few months?.
Were those pilots practicing praying?.


Bug#165913: exactl;y what u been searching

2005-03-16 Thread Rich Peterson
http://sofnqn.info/in.php?aid=104



Bug#259424: Progress pays off

2005-03-14 Thread Trina Peterson
http://www.whatshould.com/
your pre-approval is waiting


Bug#146449: 0.00 Balance

2005-01-13 Thread Peterson
Home Owners - do you have less than perfect credit? 

We'll quickly match you up with the best provider based on your needs

We specialize in less than perfect credit.  

We'll help you get the yes you deserve.

http://vesk.echeneisvalle.com/prime/properly/

 . . . . . . . . . . . . . . . . . . . . . . . . . . .
Modify settings on mailinglist::
at webpage

GkEdFIKFNJBciwkCzycudpColwAoFIKGGIBntivClkngobCzwiAdFIKIINBciwkCzycudpColwAaFIKIKEByfthCwvyrzmClitAfFIKILIBekymCcbewfrCqnyAkFIKKGJBjperChgjckwCvseUi


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