Bug#993953: RFS: runit/2.1.2-43 -- system-wide service supervision

2021-09-08 Thread Lorenzo Puliti
Package: sponsorship-requests
Severity: normal
X-Debbugs-Cc: plore...@disroot.org

Dear mentors,

I am looking for a sponsor for my package "runit":

 * Package name: runit
   Version : 2.1.2-43
   Upstream Author : Gerrit Pape 
 * URL : http://smarden.org/runit/
 * License : GPL-3+, BSD-3-clause
 * Vcs : https://salsa.debian.org/debian/runit
   Section : admin

It builds those binary packages:

  runit-init - system-wide service supervision (as init system)
  getty-run - runscripts to supervise getty processes
  runit-systemd - transitional package for runit-systemd users
  runit-run - service supervision (systemd and sysv integration)
  runit - system-wide service supervision

To access further information about this package, please visit the following 
URL:

  https://mentors.debian.net/package/runit/

Alternatively, one can download the package with dget using this command:

  dget -x https://mentors.debian.net/debian/pool/main/r/runit/runit_2.1.2-43.dsc

Git repo:

  https://salsa.debian.org/debian/runit/-/tree/next

Changes since the last upload:

 runit (2.1.2-43) unstable; urgency=medium
 .
   * default-syslog: add a comment in the run file to
  clarify the intended usage.
   * Move the nosync file back to /etc/runit/:
  it was moved to /run by mistake (Closes: #993602)
  + thanks to András Korn
   * Stop using sysv-rc in stage 3: 'run_sysv_scripts' can
  be easily used for shutdown tasks
   * Adjust runit-init Depends:
  - drop sysv-rc: it's still impossible to remove it because
of initscripts
  - add insserv, it's needed to get the right boot sequence
for initscripts and sysvinit scripts
  - bump the minimal required runit version to 2.1.2-43,
because of changes in 'run_sysv_scripts' and stage 3
   * Update runit-init and runit-systemd description
   * source only changes:
  - move all contrib services under debian/sv
  - stop patching upstream stage{1,2}, we already
maintain our version of stage{1,2,3} in d/contrib
  - rename quilt patches to match the order in which
they are applied

Regards,
-- 
  Lorenzo Puliti


Re: r-cran-ncdf4: ftbfs with autoconf 2.70

2021-09-08 Thread Nilesh Patra

Hi Jeremy,

On 9/8/21 8:24 PM, Jeremy Sowden wrote:
>> [1] https://bugs.debian.org/978891
> 
> Try this patch.

Thank you very much, works perfectly!
I just uploaded with your patch applied.

Nilesh



OpenPGP_signature
Description: OpenPGP digital signature


Re: r-cran-ncdf4: ftbfs with autoconf 2.70

2021-09-08 Thread Jeremy Sowden
On 2021-09-08, at 16:06:34 +0200, Andreas Tille wrote:
> Control: tags -1 help
>
> Hi,
>
> I need to admit that from my naive perspective this is a bug in
> autoconf.  In the log that is provided in the bug report[1] you can see
> this here:
>
>dh_autoreconf -O--buildsystem=R
> configure.ac:44: warning: AC_OUTPUT should be used without arguments.
> configure.ac:44: You should run autoupdate.
> configure.ac:44: warning: AC_OUTPUT should be used without arguments.
> configure.ac:44: You should run autoupdate.
>debian/rules override_dh_auto_configure
> make[1]: Entering directory '/<>'
> cd tools && ./regenerate
> rm: cannot remove '../Makefile': No such file or directory
> rm: cannot remove '../src/Makevars': No such file or directory
> configure.ac:44: warning: AC_OUTPUT should be used without arguments.
> configure.ac:44: You should run autoupdate.
> configure.ac:44: warning: AC_OUTPUT should be used without arguments.
> configure.ac:44: You should run autoupdate.
>
>
> This results later in:
>
>
> ** using staged installation
> configure.ac: starting
> ./configure: line 1764: syntax error near unexpected token `;;'
> ./configure: line 1764: ` as_dir=./ ;;'
> ERROR: configuration failed for package ‘ncdf4’
>
>
>
> I checked the resulting configure file and the part in question looks like:
>
>
> echo "configure.ac: starting"
>
>  as_dir=./ ;;
> */) ;;
> *) as_dir=$as_dir/ ;;
>   esac
> for ac_exec_ext in '' $ac_executable_extensions; do
>   if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
> ac_cv_prog_HAS_NC_CONFIG="yes"
> printf "%s\n" "$as_me:${as_lineno-$LINENO}: found 
> $as_dir$ac_word$ac_exec_ext" >&5
> break 2
>   fi
> done
>
>
> It looks like a case statement intended but not injected by autoconf.  I
> have no idea how this can be influenced by some configure.ac statement.
>
> Kind regards
>
>Andreas.
>
> [1] https://bugs.debian.org/978891

Try this patch.

J.
From 2e5bda24d3b2799d21b5342290fbeed54cf83101 Mon Sep 17 00:00:00 2001
From: Jeremy Sowden 
Date: Wed, 8 Sep 2021 14:50:40 +
Subject: [PATCH] Quote allowed M4 pattern.

Signed-off-by: Jeremy Sowden 
---
 tools/configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/configure.ac b/tools/configure.ac
index 7d781c514c2e..16579d35a8ab 100644
--- a/tools/configure.ac
+++ b/tools/configure.ac
@@ -2,7 +2,7 @@ AC_INIT(src/Makevars.in)
 
 echo "configure.ac: starting"
 
-m4_pattern_allow(AC_PATH_NETCDF)
+m4_pattern_allow([AC_PATH_NETCDF])
 
 : ${R_HOME=`R RHOME`}
 if test -z "${R_HOME}"; then
-- 
2.33.0



signature.asc
Description: PGP signature


Re: r-cran-ncdf4: ftbfs with autoconf 2.70

2021-09-08 Thread Andreas Tille
Control: tags -1 help

Hi,

I need to admit that from my naive perspective this is a bug in
autoconf.  In the log that is provided in the bug report[1] you can see
this here:

   dh_autoreconf -O--buildsystem=R
configure.ac:44: warning: AC_OUTPUT should be used without arguments.
configure.ac:44: You should run autoupdate.
configure.ac:44: warning: AC_OUTPUT should be used without arguments.
configure.ac:44: You should run autoupdate.
   debian/rules override_dh_auto_configure
make[1]: Entering directory '/<>'
cd tools && ./regenerate
rm: cannot remove '../Makefile': No such file or directory
rm: cannot remove '../src/Makevars': No such file or directory
configure.ac:44: warning: AC_OUTPUT should be used without arguments.
configure.ac:44: You should run autoupdate.
configure.ac:44: warning: AC_OUTPUT should be used without arguments.
configure.ac:44: You should run autoupdate.


This results later in:


** using staged installation
configure.ac: starting
./configure: line 1764: syntax error near unexpected token `;;'
./configure: line 1764: ` as_dir=./ ;;'
ERROR: configuration failed for package ‘ncdf4’



I checked the resulting configure file and the part in question looks like:


echo "configure.ac: starting"

 as_dir=./ ;;
*/) ;;
*) as_dir=$as_dir/ ;;
  esac
for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
ac_cv_prog_HAS_NC_CONFIG="yes"
printf "%s\n" "$as_me:${as_lineno-$LINENO}: found 
$as_dir$ac_word$ac_exec_ext" >&5
break 2
  fi
done


It looks like a case statement intended but not injected by autoconf.  I
have no idea how this can be influenced by some configure.ac statement.

Kind regards

   Andreas.

[1] https://bugs.debian.org/978891

-- 
http://fam-tille.de



Bug#993941: RFS: ntfs2btrfs/20210523-1 [ITP] -- converts NTFS filesystem to BTRFS

2021-09-08 Thread Gürkan Myczko

Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "ntfs2btrfs":

 * Package name: ntfs2btrfs
   Version : 20210523-1
   Upstream Author : Mark Harmstone 
 * URL : https://github.com/maharmstone/ntfs2btrfs
 * License : GPL-2-or-later
 * Vcs : [fill in URL of packaging vcs]
   Section : utils

It builds those binary packages:

  ntfs2btrfs - converts NTFS filesystem to BTRFS

To access further information about this package, please visit the 
following URL:


  https://mentors.debian.net/package/ntfs2btrfs/

Alternatively, one can download the package with dget using this 
command:


  dget -x 
https://mentors.debian.net/debian/pool/main/n/ntfs2btrfs/ntfs2btrfs_20210523-1.dsc


Changes for the initial release:

 ntfs2btrfs (20210523-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #993939)

Regards,
--
  Gürkan Myczko



Bug#993933: RFS: python-gast/0.5.2-1 [ITP] -- compatibility layer for the AST of various Python versions

2021-09-08 Thread Diego M. Rodriguez
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "python-gast":

 * Package name: python-gast
   Version : 0.5.2-1
   Upstream Author : Serge Guelton 
 * URL : https://github.com/serge-sans-paille/gast
 * License : BSD-3-clause-gast
 * Vcs :
https://salsa.debian.org/python-team/packages/python-gast
   Section : python

It builds those binary packages:

  python3-gast - compatibility layer for the AST of various Python
versions (Python3 version)

To access further information about this package, please visit the
following URL:

  https://mentors.debian.net/package/python-gast/

Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/p/python-gast/python-gast_0.5.2-1.dsc

Changes for the initial release:

 python-gast (0.5.2-1) UNRELEASED; urgency=medium
 .
   * Initial release (Closes: #993800)

Regards,
-- 
Diego M. Rodriguez



Bug#993919: RFS: fontmatrix/0.9.100+ds-1 -- featureful personal font manager

2021-09-08 Thread Gürkan Myczko

Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "fontmatrix":

 * Package name: fontmatrix
   Version : 0.9.100+ds-1
   Upstream Author : Frédéric Coiffier
 * URL : https://github.com/fcoiffie/fontmatrix
 * License : GPL-2+, DOJO-MIT or GPL-2-or-later, LGPL-2.1+, MIT
 * Vcs : https://salsa.debian.org/fonts-team/fontmatrix
   Section : graphics

It builds those binary packages:

  fontmatrix - featureful personal font manager

To access further information about this package, please visit the 
following URL:


  https://mentors.debian.net/package/fontmatrix/

Alternatively, one can download the package with dget using this 
command:


  dget -x 
https://mentors.debian.net/debian/pool/main/f/fontmatrix/fontmatrix_0.9.100+ds-1.dsc


Changes since the last upload:

 fontmatrix (0.9.100+ds-1) unstable; urgency=medium
 .
   * New upstream version. (Closes: #579314)
   * d/upstream/metadata: added.
   * d/copyright:
 - update copyright years.
 - added Upstream-Contact.
   * source/lintian-overrides: fix typo.
   * d/changelog: drop trailing whitespace.
   * d/rules: drop trailing whitespace.
   * Bump standards version to 4.5.1.
   * d/watch: updated.
   * d/control:
 - added Rules-Requires-Root.
 - drop duplicate Build-Depends libqt5webkit5-dev.
   * Bump debhelper version to 13, drop d/compat.

Regards,
--
  Gürkan Myczko



Bug#993916: RFS: shotcut/21.08.29+ds-1 [RC] -- video editor

2021-09-08 Thread Gürkan Myczko

Package: sponsorship-requests
Severity: important

Dear mentors,

I am looking for a sponsor for my package "shotcut":

 * Package name: shotcut
   Version : 21.08.29+ds-1
   Upstream Author : Dan Dennedy  and Brian Matherly 


 * URL : https://www.shotcut.org/
 * License : GPL-3+, LGPL-2.1+
 * Vcs : https://salsa.debian.org/multimedia-team/shotcut
   Section : video

It builds those binary packages:

  shotcut-data - video editor data
  shotcut - video editor

To access further information about this package, please visit the 
following URL:


  https://mentors.debian.net/package/shotcut/

Alternatively, one can download the package with dget using this 
command:


  dget -x 
https://mentors.debian.net/debian/pool/main/s/shotcut/shotcut_21.08.29+ds-1.dsc


Changes since the last upload:

 shotcut (21.08.29+ds-1) unstable; urgency=medium
 .
   * New upstream version. (Closes: #993837)
   * Bump standards version to 4.5.1.
   * d/control: add build-depends on libx265-dev.

Regards,
--
  Gürkan Myczko



Bug#993917: RFS: fnt/1.3-1 -- Font downloader/manager

2021-09-08 Thread Gürkan Myczko

Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "fnt":

 * Package name: fnt
   Version : 1.3-1
   Upstream Author : Alex Myczko 
 * URL : https://github.com/alexmyczko/fnt
 * License : MIT
 * Vcs : https://salsa.debian.org/fonts-team/fnt
   Section : fonts

It builds those binary packages:

  fnt - Font downloader/manager

To access further information about this package, please visit the 
following URL:


  https://mentors.debian.net/package/fnt/

Alternatively, one can download the package with dget using this 
command:


  dget -x 
https://mentors.debian.net/debian/pool/main/f/fnt/fnt_1.3-1.dsc


Changes for the initial release:

 fnt (1.3-1) unstable; urgency=medium
 .
   * New upstream version.

Regards,
--
  Gürkan Myczko