Bug#928050: wireguard: Remove debhelper-compat-12 dependency. Replace with debian/compat level=5

2019-04-26 Thread Anthony Metzidis
Package: wireguard
Version: 0.0.20190406-1tonymet1
Severity: normal
Tags: patch

Dear Maintainer,

   * Upon attempting a build on raspbian-stretch, the build failed due to
missing debhelper-compat=12 . debhelper-compat=12 is not available on
raspbian
   * As a workaround, I removed the debhelper-compat=12 dependency, and set
debian/compat level=5
   * Without the change, naturally build failed.
   * With this change the build completed, and the binary package installed
properly

To improve compatibility can we make these changes:
* remove dep debhelper-compat=12 from debian/control
* echo 5 > debian/compat


// here is a patch


diff -ur wireguard-0.0.20190406/debian/changelog
../build-20190426-1250/wireguard-0.0.20190406/debian/changelog
--- wireguard-0.0.20190406/debian/changelog 2019-04-08 14:09:41.0
-0700
+++ ../build-20190426-1250/wireguard-0.0.20190406/debian/changelog
2019-04-26 12:33:42.587146169 -0700
@@ -1,3 +1,9 @@
+wireguard (0.0.20190406-1tonymet1) UNRELEASED; urgency=medium
+
+  * built on pi 3b+ for pi zero
+
+ --Fri, 26 Apr 2019 12:33:13 -0700
+
 wireguard (0.0.20190406-1) unstable; urgency=medium

   * New upstream version
Only in ../build-20190426-1250/wireguard-0.0.20190406/debian: compat
diff -ur wireguard-0.0.20190406/debian/control
../build-20190426-1250/wireguard-0.0.20190406/debian/control
--- wireguard-0.0.20190406/debian/control 2019-01-28 12:30:00.0
-0800
+++ ../build-20190426-1250/wireguard-0.0.20190406/debian/control 2019-04-26
12:41:51.061495718 -0700
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Daniel Kahn Gillmor 
 Build-Depends:
- debhelper-compat (= 12),
+ debhelper,
  dkms,
  libmnl-dev,
  pkg-config,
@@ -12,7 +12,6 @@
 Homepage: https://www.wireguard.com
 Vcs-Git: https://salsa.debian.org/debian/wireguard.git
 Vcs-Browser: https://salsa.debian.org/debian/wireguard
-Rules-Requires-Root: no

 Package: wireguard
 Architecture: all


-- System Information:
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 9.8 (stretch)
Release: 9.8
Codename: stretch
Architecture: armv7l

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

Versions of packages wireguard depends on:
ii  wireguard-dkms   0.0.20190406-1tonymet1
ii  wireguard-tools  0.0.20190406-1tonymet1

wireguard recommends no packages.

wireguard suggests no packages.

-- no debconf information


Bug#1095688: tldr-py: tdlr update fails ("master" should be "main")

2025-02-10 Thread anthony . metzidis
Followup-For: Bug #1010546
Package: tldr-py
Version: 0.7.0-6

STEPS TO REPEAT
1. git clone g...@github.com:tldr-pages/tldr.git ~/.tldr
2. tldr init (add full path to ~/.tldr)
3. `tldr find awk`


ACTUAL RESULTS
❯ tldr find awk

Traceback (most recent call last):
  File "/usr/bin/tldr", line 33, in 
sys.exit(load_entry_point('tldr.py==0.7.0', 'console_scripts', 'tldr')())
 ^^^
  File "/usr/lib/python3/dist-packages/click/core.py", line 1130, in __call__
return self.main(*args, **kwargs)
   ^^
  File "/usr/lib/python3/dist-packages/click/core.py", line 1055, in main
rv = self.invoke(ctx)
 
  File "/usr/lib/python3/dist-packages/click/core.py", line 1657, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
   ^^^
  File "/usr/lib/python3/dist-packages/click/core.py", line 1404, in invoke
return ctx.invoke(self.callback, **ctx.params)
   ^^^
  File "/usr/lib/python3/dist-packages/click/core.py", line 760, in invoke
return __callback(*args, **kwargs)
   ^^^
  File "/usr/lib/python3/dist-packages/tldr/cli.py", line 103, in find
output_lines = parse_man_page(command, on)
   ^^^
  File "/usr/lib/python3/dist-packages/tldr/cli.py", line 24, in parse_man_page
page_path = find_page_location(command, platform)
^
  File "/usr/lib/python3/dist-packages/tldr/cli.py", line 36, in
find_page_location
with io.open(path.join(repo_directory, 'pages/index.json'),
 ^^
FileNotFoundError: [Errno 2] No such file or directory:
'/home/tonymet/.tldr/pages/index.json':

❯ tldr update
Check for updates...
fatal: ambiguous argument 'master': unknown revision or path not in
the working tree.
Use '--' to separate paths from revisions, like this:
'git  [...] -- [...]'
Traceback (most recent call last):
  File "/usr/bin/tldr", line 33, in 
sys.exit(load_entry_point('tldr.py==0.7.0', 'console_scripts', 'tldr')())
 ^^^
  File "/usr/lib/python3/dist-packages/click/core.py", line 1130, in __call__
return self.main(*args, **kwargs)
   ^^
  File "/usr/lib/python3/dist-packages/click/core.py", line 1055, in main
rv = self.invoke(ctx)
 
  File "/usr/lib/python3/dist-packages/click/core.py", line 1657, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
   ^^^
  File "/usr/lib/python3/dist-packages/click/core.py", line 1404, in invoke
return ctx.invoke(self.callback, **ctx.params)
   ^^^
  File "/usr/lib/python3/dist-packages/click/core.py", line 760, in invoke
return __callback(*args, **kwargs)
   ^^^
  File "/usr/lib/python3/dist-packages/tldr/cli.py", line 114, in update
local = subprocess.check_output('git rev-parse master'.split()).strip()
^^^
  File "/usr/lib/python3.11/subprocess.py", line 466, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
   ^
  File "/usr/lib/python3.11/subprocess.py", line 571, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['git', 'rev-parse',
'master']' returned non-zero exit status 128.


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

Kernel: Linux 5.15.167.4-microsoft-standard-WSL2 (SMP w/16 CPU threads)
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)

Versions of packages tldr-py depends on:
ii  python33.11.2-1+b1
ii  python3-click  8.1.3-2
ii  python3-pkg-resources  66.1.1-1+deb12u1
ii  python3-yaml   6.0-3+b2

Versions of packages tldr-py recommends:
ii  git  1:2.39.5-0+deb12u2

tldr-py suggests no packages.
Report will be sent to Debian Bug Tracking System <1010...@bugs.debian.org>
Submit this report on tldr-py (e to edit) [Y|n|a|c|e|i|l|m|p|q|d|t|?]? p
Subject: Re: tldr-py: tdlr update fails ("master" should be "main")
Followup-For: Bug #1010546
Package: tldr-py
Version: 0.7.0-6

STEPS TO REPEAT
1. git clone g...@github.com:tldr-pages/tldr.git ~/.tldr
2. tldr init (add full path to ~/.tldr)
3. `tldr find awk`


ACTUAL RESULTS
❯ tldr find awk

Traceback (most recent call last):
  File

Bug#1093710: RFP: docker-dive -- A tool for exploring each layer in a docker image

2025-01-21 Thread Anthony Metzidis
Package: wnpp
Severity: wishlist

* Package name: docker-dive
  Version : 0.12.0
  Upstream Contact: Alex Goodman (author)
* URL : https://github.com/wagoodman/dive
* License : MIT
  Programming Lang: golang
  Description : A tool for exploring each layer in a docker image

 - wagoodman/dive (docker-dive) is a TUI / ncurses tool to explore
   docker images to better define Bill of Materials and identify
   unncessary waste within each image layer
 - I'm looking for a sponsor.  I can be sponsored-maintainer. In
   time, I can take full-maintainer duties
 - Here are other similarly-named package requests
   -  dive https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1089012
 - An autogenerated Deb package exists & some early work was done to
   prepare for deb. I plan to work with those folks to include
   docker-dive in the next stable release
   - https://github.com/wagoodman/dive/issues/62
 -



Bug#1091214: O: logswan -- fast Web log analyzer using probabilistic data structures

2025-01-19 Thread Anthony Metzidis
I would be interested in taking over as maintainer.  I have re-built
and tested the latest dpkg.

-t-