1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
Description: 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.
Forwarded: not-needed
---
--- /dev/null
+++ libmedia-convert-perl-1.4.1/.gitlab-ci.yml
@@ -0,0 +1,77 @@
+---
+variables:
+ SALSA_CI_DISABLE_BUILD_PACKAGE_ANY: 1
+ SALSA_CI_DISABLE_BUILD_PACKAGE_I386: 1
+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:
+ - if [ ! -z "$NEEDS_ARCHIVE" ]; then sed -i -e 's/deb.debian.org/archive.debian.org/' /etc/apt/sources.list; fi
+ - cpanm --notest ExtUtils::Depends Devel::Cover TAP::Harness::JUnit Devel::Cover::Report::Cobertura
+ - 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
+ - cover -report cobertura
+ artifacts:
+ paths:
+ - cover_db
+ reports:
+ junit: junit_output.xml
+ coverage_report:
+ path: cover_db/cobertura.xml
+ coverage_format: cobertura
+
+perl:latest:
+ <<: *test
+
+perl:5.28:
+ variables:
+ <<: *test
+
+test:committed:
+ stage: upstream
+ image: perl:latest
+ before_script:
+ - apt-get update && apt-get -y --no-install-recommends install git ffmpeg
+ - cpanm --notest ExtUtils::Depends
+ - cpanm --notest --installdeps .
+ - perl Makefile.PL
+ script:
+ - make manifest
+ - git diff --exit-code
+
+test:critic:
+ stage: upstream
+ image: perl:latest
+ before_script:
+ - cpanm --notest Perl::Critic
+ script:
+ - perlcritic .
+
+dput:
+ stage: publish
+ image: debian:stable
+ dependencies:
+ - build
+ allow_failure: true
+ before_script:
+ - apt-get update
+ - apt-get -y install dput-ng curl
+ - echo -e "[gitlab]\nmethod=https\nfqdn=https://gitlab-runner:$CI_JOB_TOKEN@$CI_SERVER_HOST\nincoming=/api/v4/projects/$CI_PROJECT_ID/packages/debian\n" > dput.cf
+ script:
+ - dput --config=dput.cf --unchecked --no-upload-log gitlab debian/output/*.changes
--- libmedia-convert-perl-1.4.1.orig/MANIFEST
+++ libmedia-convert-perl-1.4.1/MANIFEST
@@ -40,5 +40,3 @@ 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)
|