Go back to cp-based control archive but right
This commit is contained in:
parent
c478a43fd5
commit
e87a10235b
|
@ -12,7 +12,7 @@ ENV IS_DOCKER=YES
|
||||||
|
|
||||||
# Prepare Debian build environment
|
# Prepare Debian build environment
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv libc6-dev libcurl4-openssl-dev libfontconfig1-dev libfreetype6-dev libssl-dev libssl1.1 liblttng-ust0 git
|
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv libc6-dev libcurl4-openssl-dev libfontconfig1-dev libfreetype6-dev libssl-dev libssl1.1 liblttng-ust0
|
||||||
|
|
||||||
# Install dotnet repository
|
# Install dotnet repository
|
||||||
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
||||||
|
|
|
@ -12,7 +12,7 @@ ENV IS_DOCKER=YES
|
||||||
|
|
||||||
# Prepare Debian build environment
|
# Prepare Debian build environment
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv git
|
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv
|
||||||
|
|
||||||
# Install dotnet repository
|
# Install dotnet repository
|
||||||
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
||||||
|
|
|
@ -12,7 +12,7 @@ ENV IS_DOCKER=YES
|
||||||
|
|
||||||
# Prepare Debian build environment
|
# Prepare Debian build environment
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv git
|
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv
|
||||||
|
|
||||||
# Install dotnet repository
|
# Install dotnet repository
|
||||||
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
||||||
|
|
|
@ -12,7 +12,7 @@ ENV IS_DOCKER=YES
|
||||||
|
|
||||||
# Prepare Debian build environment
|
# Prepare Debian build environment
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv libc6-dev libcurl4-openssl-dev libfontconfig1-dev libfreetype6-dev libssl-dev libssl1.1 liblttng-ust0 git
|
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv libc6-dev libcurl4-openssl-dev libfontconfig1-dev libfreetype6-dev libssl-dev libssl1.1 liblttng-ust0
|
||||||
|
|
||||||
# Install dotnet repository
|
# Install dotnet repository
|
||||||
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
||||||
|
|
|
@ -12,7 +12,7 @@ ENV IS_DOCKER=YES
|
||||||
|
|
||||||
# Prepare Debian build environment
|
# Prepare Debian build environment
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv git
|
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv
|
||||||
|
|
||||||
# Install dotnet repository
|
# Install dotnet repository
|
||||||
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
||||||
|
|
|
@ -12,7 +12,7 @@ ENV IS_DOCKER=YES
|
||||||
|
|
||||||
# Prepare Debian build environment
|
# Prepare Debian build environment
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv git
|
&& apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv
|
||||||
|
|
||||||
# Install dotnet repository
|
# Install dotnet repository
|
||||||
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
|
||||||
|
|
|
@ -10,7 +10,7 @@ pushd ${SOURCE_DIR}
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
||||||
cp debian/control debian/control.orig
|
cp -a debian/control /tmp/control.orig
|
||||||
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ mkdir -p ${ARTIFACT_DIR}/
|
||||||
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
git checkout debian/control
|
cp -a /tmp/control.orig debian/control
|
||||||
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ pushd ${SOURCE_DIR}
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
||||||
cp debian/control debian/control.orig
|
cp -a debian/control /tmp/control.orig
|
||||||
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ mkdir -p ${ARTIFACT_DIR}/
|
||||||
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
git checkout debian/control
|
cp -a /tmp/control.orig debian/control
|
||||||
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ pushd ${SOURCE_DIR}
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
||||||
cp debian/control debian/control.orig
|
cp -a debian/control /tmp/control.orig
|
||||||
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ mkdir -p ${ARTIFACT_DIR}/
|
||||||
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
git checkout debian/control
|
cp -a /tmp/control.orig debian/control
|
||||||
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ pushd ${SOURCE_DIR}
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
||||||
cp debian/control debian/control.orig
|
cp -a debian/control /tmp/control.orig
|
||||||
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ mkdir -p ${ARTIFACT_DIR}/
|
||||||
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
git checkout debian/control
|
cp -a /tmp/control.orig debian/control
|
||||||
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ pushd ${SOURCE_DIR}
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
||||||
cp debian/control debian/control.orig
|
cp -a debian/control /tmp/control.orig
|
||||||
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ mkdir -p ${ARTIFACT_DIR}/
|
||||||
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
git checkout debian/control
|
cp -a /tmp/control.orig debian/control
|
||||||
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ pushd ${SOURCE_DIR}
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
# Remove build-dep for dotnet-sdk-3.1, since it's installed manually
|
||||||
cp debian/control debian/control.orig
|
cp -a debian/control /tmp/control.orig
|
||||||
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
sed -i '/dotnet-sdk-3.1,/d' debian/control
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ mkdir -p ${ARTIFACT_DIR}/
|
||||||
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
mv ../jellyfin[-_]* ${ARTIFACT_DIR}/
|
||||||
|
|
||||||
if [[ ${IS_DOCKER} == YES ]]; then
|
if [[ ${IS_DOCKER} == YES ]]; then
|
||||||
git checkout debian/control
|
cp -a /tmp/control.orig debian/control
|
||||||
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user