Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dod38fr/dist-zilla-app-command-authordebs
A Dist::Zilla command to list or install author dependencies with Debian perl packages
https://github.com/dod38fr/dist-zilla-app-command-authordebs
Last synced: 2 days ago
JSON representation
A Dist::Zilla command to list or install author dependencies with Debian perl packages
- Host: GitHub
- URL: https://github.com/dod38fr/dist-zilla-app-command-authordebs
- Owner: dod38fr
- Created: 2016-12-10T11:41:10.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-13T18:05:34.000Z (about 1 year ago)
- Last Synced: 2025-01-02T23:57:15.238Z (6 days ago)
- Language: Perl
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- Changelog: Changes
Awesome Lists containing this project
README
* dist-zilla-app-command-authordebs
:PROPERTIES:
:CUSTOM_ID: dist-zilla-app-command-authordebs
:END:** Moved to Debian's gitlab
With version 0.004, I've added a feature to edit =debian/control=
file. This feature relies on =Config::Model::Dpkg= (aka
[[https://salsa.debian.org/perl-team/modules/packages/libconfig-model-dpkg-perl][libconfig-model-dpkg-perl]]) which is only available in Debian.Which means that this module is no longer suitable for CPAN.
For CPAN, I've reverted the Debian only change and released version 0.005.
Any further development of this module will be done
on [[https://salsa.debian.org/perl-team/modules/packages/libdist-zilla-app-command-authordebs-perl][Debian Perl Group / libdist-zilla-app-command-authordebs]].No new release will be done on CPAN.
** What is dist-zilla-app-command-authordebs ?
It's a [[http://dzil.org/][Dist::Zilla]] command to list or install author
dependencies with Debian perl packages.This command is useful to work on the source of a Perl module that
uses =Dist::Zilla=. This list or install missing author dependencies,
i.e. mostly =Dist::Zilla= dependencies.These dependencies can be used in Debian's =BuildDepends= list. Note
that other dependencies (runtime or used in tests) are not handled.To install the author dependencies (i,e, all the =Dist::Zilla= plugins
and extensions) required to build a module, run either:#+begin_src shell
dzil authordebs --install # require sudo to allow apt-get install
#+end_src#+begin_src shell
sudo apt-get install $(dzil authordebs)
#+end_srcThe former command is preferred as only =apt-get= command is run as
root.* Installation
:PROPERTIES:
:CUSTOM_ID: installation
:END:On Debian and derivatives:
#+begin_src shell
sudo apt install libdist-zilla-app-command-authordebs-perl
#+end_src