Your message dated Tue, 11 Jul 2023 18:00:16 +0000
with message-id <e1qjheq-002nel...@fasolo.debian.org>
and subject line Bug#969482: fixed in glab 1.31.0-1
has caused the Debian Bug report #969482,
regarding ITP: glab -- An open-source GitLab command line tool
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
969482: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=969482
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: TODO <profcl...@gmail.com>

* Package name    : glab
  Version         : 1.10.0-1
  Upstream Author : Clement Sam
* URL             : https://github.com/profclems/glab
* License         : Expat
  Programming Lang: Go
  Description     : An open-source GitLab command line tool

 GLab
 .
 All Contributors (#contributors-)
 .
 .
 Go Report Card (https://goreportcard.com/report/github.com/profclems/glab)
 GitHub Workflow Status .github/workflows/build_docs.yml Gitter
 
(https://gitter.im/glabcli/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
 License (LICENSE) Twitter
 
(https://twitter.com/intent/tweet?text=Take%20Gitlab%20to%20the%20command%20line%20with%20%23glab,%20an%20open-source%20GitLab%20CLI%20tool:&url=https%3A%2F%2Fgithub.com%2Fprofclems%2Fglab)
 .
 GLab is an open source Gitlab Cli tool written in Go (golang) to help
 work seamlessly with Gitlab from the command line. Work with issues,
 merge requests, watch running pipelines directly from your CLI among
 other features.
 .
 image Usage bash
   glab <command> <subcommand> [flags]
 .
 Core Commands• glab mr [list, create, close, reopen, delete]• glab
 issue [list, create, close, reopen, delete]• glab pipeline [list,
 delete, ci status, ci view]• glab config• glab helpExamples bash
   $ glab issue create --title="This is an issue title" --description="This
   is a really long description" $ glab issue list --closed $ glab pipeline
   ci view -b master    # to watch the latest pipeline on master $ glab
   pipeline status    # classic ci view
 .
 Learn More Read the documentation (https://clementsam.tech/glab)
 for more information on this tool.  Installation
 Download a binary suitable for your OS at the releases page
 (https://github.com/profclems/glab/releases/latest).  Quick Install (Bash)
 You can install or update glab with: bash curl -sL https://j.mp/glab-i |
 sudo bash
 .
 or bash curl -s
 https://raw.githubusercontent.com/profclems/glab/trunk/scripts/quick_install.sh
 | sudo bash
 .
 Installs into usr/local/bin Windows Available for download
 on scoop or manually as an installable executable file or a
 Portable archived file in tar and zip formats at the releases
 page (https://github.com/profclems/glab/releases/latest).
 Download and install now at the releases page
 (https://github.com/profclems/glab/releases/latest).
 .
 The installable executable file sets the PATH
 automatically.  Scoop sh scoop bucket add profclems-bucket
 https://github.com/profclems/scoop-bucket.git scoop install glab
 .
 Linux Downloads available via linuxbrew (homebrew) and tar balls Linuxbrew
 (Homebrew) sh brew install profclems/tap/glab
 .
 Updating: sh brew upgrade glab
 .
 Arch Linux glab is available through the gitlab-glab-bin
 (https://aur.archlinux.org/packages/gitlab-glab-bin/) package on
 the AUR.  Manual Installation Download the tar ball, untar and
 install: • Download the .tar.gz file from the releases page
 (https://github.com/profclems/glab/releases/latest)• unzip
 glab-*-linux-amd64.tar.gz to unzip the downloaded file• sudo mv
 glab-*-linux-amd64/glab /usr/binMacOS glab is available via Homebrew or
 you can manually install Homebrew sh brew install profclems/tap/glab
 .
 Updating: sh brew upgrade glab
 .
 Installing manually• Download the .tar.gz or .zip file from the releases
 page (https://github.com/profclems/glab/releases/latest) and unzip or
 untar• ls /usr/local/bin/ || sudo mkdir /usr/local/bin/; to make sure
 the bin folder exists• sudo mv glab-*-darwin-amd64/glab /usr/binBuilding
 From Source If a supported binary for your OS is not found at the releases
 page (https://github.com/profclems/glab/releases/latest), you can build
 from source: • Verify that you have Go 1.13.8+ installed sh
    $ go version go version go1.14
 .
 .
 If go is not installed, follow instructions on the Go website
 (https://golang.org/doc/install).  • Clone this repository sh
    $ git clone https://github.com/profclems/glab.git glab-cli $
    cd glab-cli
 .
 .
 or
 .
 sh
    $ git clone https://gitlab.com/profclems/glab.git $ cd glab-cli
 .
 • Build the project
 .
    $ make build
 .
 • Move the resulting bin/glab executable to somewhere in your PATH sh
    $ sudo mv ./bin/glab /usr/local/bin/
 .
    or sh $ sudo mv ./bin/glab /usr/bin/
 .
 • Run glab version to check if it worked and glab config -g to set
 upConfiguration To set configuration for current directory (must be a
 git repository) ```sh glab config  // Will be prompted for details
 .
 or
 .
 glab config --token= --url=https://gitlab.com --remote-var=origin
 .
 **To set configuration globally** sh glab config --global // Will be
 prompted for details
 .
 or
 .
 glab config --global --token= --url=https://gitlab.com
 --remote-var=origin
 .
 **For initial releases up to v1.6.1** sh glab config --token=
 --url=https://gitlab.com --pid= --repo=OWNER/REPO ``` Example sh glab
 config --token=sometoken --url=https://gitlab.com --pid=someprojectid
 --repo=profclems/glab
 .
 NB: Change gitlab.com to company or group's gitlab url if self-hosted
 Environment Variables ``sh
   GITLAB_TOKEN: an authentication token for API requests. Setting this
   avoids being prompted to authenticate and overrides any previously
   stored credentials.  Can be set withglab config --token=`
 .
 GITLAB_REPO: specify the Gitlab repository in "OWNER/REPO" format for
 commands that
   otherwise operate on a local repository. (Depreciated in v1.6.2)
   Can be set with glab config --repo=OWNER/REPO
 .
 GITLAB_URI: specify the url of the gitlab server if self hosted (eg:
 https://gitlab.example.com).
   Default is https://gitlab.com.  Can be set with glab config
   --url=https://gitlab.example.com
 .
 VISUAL, EDITOR (in order of precedence): the editor tool to use for
 authoring text.
 .
 BROWSER: the web browser to use for opening links.
 .
 GLAMOUR_STYLE: environment variable to set your desired markdown
 renderer style
   Available options are (dark|light|notty) or set a custom style
   https://github.com/charmbracelet/glamour#styles ```
 ToDo Aside adding more features, the biggest thing this tool still needs
 is tests 😞 Issues If you have an issue: report it on the issue tracker
 (https://github.com/profclems/glab/issues) Contributions Thanks for
 considering contributing to this project!
 .
 Please read the contributions guide
 (https://github.com/profclems/glab/blob/trunk/.github/CONTRIBUTING.md)
 and Code of conduct
 (https://github.com/profclems/glab/blob/trunk/.github/CODE_OF_CONDUCT.md).
 .
 Feel free to open an issue or submit a pull request!
 Contributors ✨ Thanks goes to these wonderful people (emoji
 key (https://allcontributors.org/docs/en/emoji-key)): <!--
 ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --><!--
 prettier-ignore-start --><!-- markdownlint-disable --><table>
   <tr>
     <td align="center"><a href="https://bredley.co.uk";><img
     src="https://avatars3.githubusercontent.com/u/32489229?v=4";
     width="100px;" alt=""/><br /><sub><b>Bradley Garrod</b></sub></a><br
     /><a href="https://github.com/profclems/glab/commits?author=BreD1810";
     title="Code">💻</a> <a href="#platform-BreD1810"
     title="Packaging/porting to new platform">📦</a> <a
     href="https://github.com/profclems/glab/commits?author=BreD1810";
     title="Documentation">📖</a></td> <td align="center"><a
     href="https://twitter.com/tetheusmeuneto";><img
     src="https://avatars2.githubusercontent.com/u/9063085?v=4";
     width="100px;" alt=""/><br /><sub><b>Matheus Lugon</b></sub></a><br
     /><a href="#design-matheuslugon" title="Design">🎨</a></td>
     <td align="center"><a href="https://github.com/princeselasi";><img
     src="https://avatars2.githubusercontent.com/u/59126177?v=4";
     width="100px;" alt=""/><br
     /><sub><b>Opoku-Dapaah </b></sub></a><br /><a
     href="https://github.com/profclems/glab/commits?author=princeselasi";
     title="Documentation">📖</a> <a href="#design-princeselasi"
     title="Design">🎨</a></td> <td align="center"><a
     href="https://github.com/pgollangi";><img
     src="https://avatars3.githubusercontent.com/u/6123002?v=4";
     width="100px;" alt=""/><br /><sub><b>Prasanna
     Kumar Gollangi</b></sub></a><br /><a
     href="https://github.com/profclems/glab/commits?author=pgollangi";
     title="Code">💻</a> <a href="#maintenance-pgollangi"
     title="Maintenance">🚧</a></td> <td align="center"><a
     href="https://github.com/sirlatrom";><img
     src="https://avatars3.githubusercontent.com/u/425633?v=4";
     width="100px;" alt=""/><br /><sub><b>Sune Keller</b></sub></a><br
     /><a href="#financial-sirlatrom" title="Financial">💵</a> <a
     href="https://github.com/profclems/glab/commits?author=sirlatrom";
     title="Code">💻</a></td> <td
     align="center"><a href="https://sattellite.me";><img
     src="https://avatars1.githubusercontent.com/u/322910?v=4";
     width="100px;" alt=""/><br /><sub><b>sattellite</b></sub></a><br /><a
     href="https://github.com/profclems/glab/commits?author=sattellite";
     title="Code">💻</a> <a
     href="https://github.com/profclems/glab/issues?q=author%3Asattellite";
     title="Bug reports">🐛</a></td> <td
     align="center"><a href="https://github.com/abakermi";><img
     src="https://avatars1.githubusercontent.com/u/60294727?v=4";
     width="100px;" alt=""/><br /><sub><b>Abdelhak Akermi</b></sub></a><br
     /><a href="https://github.com/profclems/glab/commits?author=abakermi";
     title="Code">💻</a></td>
   </tr> <tr>
     <td align="center"><a href="http://patrickmcmichael.org";><img
     src="https://avatars0.githubusercontent.com/u/3779458?v=4";
     width="100px;" alt=""/><br
     /><sub><b>Patrick McMichael</b></sub></a><br /><a
     href="https://github.com/profclems/glab/commits?author=Saturn";
     title="Documentation">📖</a></td> <td
     align="center"><a href="https://github.com/wolffc";><img
     src="https://avatars3.githubusercontent.com/u/1393783?v=4";
     width="100px;" alt=""/><br /><sub><b>Christian Wolff</b></sub></a><br
     /><a href="https://github.com/profclems/glab/commits?author=wolffc";
     title="Documentation">📖</a></td> <td align="center"><a
     href="https://www.linkedin.com/in/lwpamihiranga/";><img
     src="https://avatars3.githubusercontent.com/u/39789194?v=4";
     width="100px;" alt=""/><br
     /><sub><b>Amith Mihiranga</b></sub></a><br /><a
     href="https://github.com/profclems/glab/commits?author=lwpamihiranga";
     title="Documentation">📖</a></td> <td
     align="center"><a href="https://clementsam.tech";><img
     src="https://avatars0.githubusercontent.com/u/41906128?v=4";
     width="100px;" alt=""/><br /><sub><b>Clement Sam</b></sub></a><br /><a
     href="https://github.com/profclems/glab/commits?author=profclems";
     title="Code">💻</a> <a href="#maintenance-profclems"
     title="Maintenance">🚧</a> <a href="#platform-profclems"
     title="Packaging/porting to new platform">📦</a></td> <td
     align="center"><a href="https://github.com/j-mcavoy";><img
     src="https://avatars1.githubusercontent.com/u/17990820?v=4";
     width="100px;" alt=""/><br /><sub><b>John McAvoy</b></sub></a><br /><a
     href="https://github.com/profclems/glab/commits?author=j-mcavoy";
     title="Code">💻</a></td> <td
     align="center"><a href="http://docs.vue2.net";><img
     src="https://avatars1.githubusercontent.com/u/8638857?v=4";
     width="100px;" alt=""/><br /><sub><b>wiwi</b></sub></a><br /><a
     href="https://github.com/profclems/glab/commits?author=Baiang";
     title="Code">💻</a></td> <td align="center"><a
     href="https://github.com/bgraf";><img
     src="https://avatars2.githubusercontent.com/u/2063428?v=4";
     width="100px;" alt=""/><br /><sub><b>Benjamin Graf</b></sub></a><br
     /><a href="https://github.com/profclems/glab/commits?author=bgraf";
     title="Code">💻</a></td>
   </tr>
 </table><!-- markdownlint-enable --><!-- prettier-ignore-end
 --><!-- ALL-CONTRIBUTORS-LIST:END --> This project follows the
 all-contributors (https://github.com/all-contributors/all-contributors)
 specification. Contributions of any kind welcome!  License Copyright ©
 Clement Sam (https://clementsam.tech)
 .
 glab is open-sourced software licensed under the MIT (LICENSE) license.
 Author Built with ❤ by Clement Sam (https://clementsam.tech)
 .
 image (https://www.buymeacoffee.com/profclems)

TODO: perhaps reasoning

--- End Message ---
--- Begin Message ---
Source: glab
Source-Version: 1.31.0-1
Done: Unit 193 <unit...@debian.org>

We believe that the bug you reported is fixed in the latest version of
glab, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 969...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Unit 193 <unit...@debian.org> (supplier of updated glab package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA384

Format: 1.8
Date: Mon, 10 Jul 2023 18:24:09 -0400
Source: glab
Binary: glab glab-dbgsym
Architecture: source amd64
Version: 1.31.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team <team+pkg...@tracker.debian.org>
Changed-By: Unit 193 <unit...@debian.org>
Description:
 glab       - commandline interface for gitlab instances
Closes: 969482
Changes:
 glab (1.31.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #969482)
Checksums-Sha1:
 cdd12efa06a7c8f5725f9bf88f1db9cadc52272b 3379 glab_1.31.0-1.dsc
 810e8257c6b3296caf9d320210048466c4d06a1d 16793798 glab_1.31.0.orig.tar.bz2
 31a87b38512e7b7f0dd8f6f42b25ea93ad99aa24 5428 glab_1.31.0-1.debian.tar.xz
 7ed605f6c5ddd4858ef25c24a4917c53dcfe0857 5231964 glab-dbgsym_1.31.0-1_amd64.deb
 56b58e97e2f5562857ea3955d44b964841bbcbd1 11511 glab_1.31.0-1_amd64.buildinfo
 9ce299ed117b586bd890a786a01479ba17ace840 5808976 glab_1.31.0-1_amd64.deb
Checksums-Sha256:
 06b5ec48e438019b6b353ae46d76dfc0cfacf40b62e73cb159b88cd69da2ac0a 3379 
glab_1.31.0-1.dsc
 82e59181d4cf9e70475b68d8c6efd1b3f0be8822771684cfc544acffb333595a 16793798 
glab_1.31.0.orig.tar.bz2
 42e4a38f834ac9a8c9ce72c8f40366781ac761dde140c337549da507d5f6beba 5428 
glab_1.31.0-1.debian.tar.xz
 75da2200f80ecdfe0d873c7d78ef60e3e61df642be6583b68b398557d02253a1 5231964 
glab-dbgsym_1.31.0-1_amd64.deb
 7685fd0d700067d3d8a36ec62fae099c2da31007c91dd47f4f63ada48a8c7a47 11511 
glab_1.31.0-1_amd64.buildinfo
 48f13aed1a0178d83bae884d4d3289c21ecb6788d0290faa1abc483bdf137f19 5808976 
glab_1.31.0-1_amd64.deb
Files:
 1ce7b281170fbc237cc1a34ab8b660e6 3379 vcs optional glab_1.31.0-1.dsc
 8336a1790f4914e4be715b76ee2b2fd7 16793798 vcs optional glab_1.31.0.orig.tar.bz2
 35dd0b89f13a36779863de839d5539c6 5428 vcs optional glab_1.31.0-1.debian.tar.xz
 5033e6bf70258febc2282e1310ea57e4 5231964 debug optional 
glab-dbgsym_1.31.0-1_amd64.deb
 dbe94d563286420181afd984abcc91d0 11511 vcs optional 
glab_1.31.0-1_amd64.buildinfo
 efdc30dc6d48bb64562e089a91453a00 5808976 vcs optional glab_1.31.0-1_amd64.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCQAdFiEEjbPlhoZdK0orGFpcUAHhsJqjdEsFAmSsiEsACgkQUAHhsJqj
dEsD5g//b0mseeVsEOLtAXTtuIBnCAZ31xWIKl5yMxaERMAD6vtV0RbLwJuuijoY
BI69GzYD0rcUjsML8u2qoz89/zBKGaN3aEeygDL42UoUzOFsk1Z1lxVujBO97Ghc
ZSJ1vyp2TbGoyI1r/PhBrTBAKz4orpl9tojhRCcRwKuyCG5aKXT8Pj2cX3YaFeJA
8UfcAI9RQzIaqDCt869rgOKVa8WWwkTavkkIhdbE3hh6WLgfYy9sBeHX7xW3t7ur
JQWOraMQv0xLOWpIhBXClpJ8ZVrN4+lnGD943hianbKvgDn5q49p/a9SOs9IcWSs
hVcuf3oQy4XucmD6oExq3mcOf3tHy6DnRCuRJ/kLJ4U92z+IMDUA5YCFV61K/cOn
oyce+/ZUFEHgr+JWng7HAWTXAmHhvmyadr1gEr8z8BAwLO5mh7p749fTnUZqplJ5
lxPl3OjBIq28fgGGtZMPZzNoGeI3+w748wkgoWMNuFigwYTKnco2cdqmAPGPMeJS
NtAHt6z4F02J62sm4bjHRjf9ojwAjEJ970ZpuT2zUsQrwxaLuVtQa7fiqP/HrajC
E9f53hhL/eQ/OoB8BlluIvfJ+Rdv2bYdhBcPlCtUhZg1wOW7VhY2eOYhqMy2H0KC
JegxUiNLKmE/r/mXXOQ9I68XMx4lTx6vwhSonX3Oe8H5zx+8/aE=
=q2kQ
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to