This is an autogenerated patch header for a single-debian-patch file. The
delta against upstream is either kept as a single patch, or maintained
in some VCS, and exported as a single patch instead of more manageable
atomic patches.

--- /dev/null
+++ libmedia-convert-perl-1.0.3/.gitlab-ci.yml
@@ -0,0 +1,47 @@
+---
+include:
+- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
+
+stages:
+- upstream
+- provisioning
+- build
+- publish
+- test
+
+.test: &test
+  stage: upstream
+  image: $CI_JOB_NAME
+  coverage: '/^Total.* (\d+.\d+)$/'
+  before_script:
+  - cpanm ExtUtils::Depends Devel::Cover TAP::Harness::JUnit
+  - apt-get update && apt-get -y --no-install-recommends install ffmpeg
+  - cpanm --notest --installdeps .
+  - perl Makefile.PL
+  script:
+  - cover -delete
+  - HARNESS_PERL_SWITCHES='-MDevel::Cover' prove -v -l -s --harness TAP::Harness::JUnit
+  - cover
+  artifacts:
+    paths:
+    - cover_db
+    reports:
+      junit: junit_output.xml
+
+perl:latest:
+  <<: *test
+
+perl:5.24:
+  <<: *test
+
+test:committed:
+  stage: upstream
+  image: perl:latest
+  before_script:
+  - apt-get update && apt-get -y --no-install-recommends install git ffmpeg
+  - cpanm ExtUtils::Depends
+  - cpanm --notest --installdeps .
+  - perl Makefile.PL
+  script:
+  - make manifest
+  - git diff --exit-code
--- libmedia-convert-perl-1.0.3.orig/MANIFEST
+++ libmedia-convert-perl-1.0.3/MANIFEST
@@ -33,8 +33,7 @@ t/pnggen.t
 t/probe.t
 t/profiles.t
 t/reporting.t
+t/script.t
 t/testvids/bbb.mp4
 t/testvids/m-c.png
 t/testvids/m-c.svg
-META.yml                                 Module YAML meta-data (added by MakeMaker)
-META.json                                Module JSON meta-data (added by MakeMaker)
--- /dev/null
+++ libmedia-convert-perl-1.0.3/t/script.t
@@ -0,0 +1,27 @@
+#!/usr/bin/perl -w
+
+use strict;
+use warnings;
+
+use Test::More;
+
+use feature "signatures";
+no warnings "experimental::signatures";
+
+my $scriptpath;
+
+if(-f "/usr/bin/mc-encode") {
+	$scriptpath = "/usr/bin";
+} else {
+	$scriptpath = "./scripts";
+}
+
+sub run (@command) {
+	print "running: '", join("' '", @command), "'\n";
+	system(@command) == 0 or die "system @command failed: $?";
+}
+
+run("perl", "-I", $INC[0], "$scriptpath/mc-encode", "--input", "t/testvids/bbb.mp4", "--output", "bbb.webm", "--multipass", "--profile", "webm");
+ok(-f "bbb.webm", "mc-encode creates a video");
+
+done_testing;
