wok diff mmv/receipt @ rev 22042
gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Oct 22 12:55:54 2019 +0300 (2019-10-22) |
parents | 76d0acbe919d |
children | b78e79c31b1f |
line diff
1.1 --- a/mmv/receipt Mon Jan 18 21:43:09 2016 +0100 1.2 +++ b/mmv/receipt Tue Oct 22 12:55:54 2019 +0300 1.3 @@ -9,6 +9,7 @@ 1.4 WEB_SITE="https://packages.debian.org/sid/mmv" 1.5 TARBALL="${PACKAGE}_${VERSION%-*}.orig.tar.gz" 1.6 WGET_URL="http://http.debian.net/debian/pool/main/m/mmv/$TARBALL" 1.7 +EXTRA_SOURCE_FILES="${PACKAGE}_$VERSION.debian.tar.gz" 1.8 1.9 DEPENDS="" 1.10 BUILD_DEPENDS="" 1.11 @@ -16,8 +17,9 @@ 1.12 # Rules to configure and make the package. 1.13 compile_rules() 1.14 { 1.15 - wget http://http.debian.net/debian/pool/main/m/mmv/${PACKAGE}_$VERSION.debian.tar.gz 1.16 - tar -xzf ${PACKAGE}_$VERSION.debian.tar.gz debian/patches/ 1.17 + wget -O "$SOURCES_REPOSITORY/${PACKAGE}_$VERSION.debian.tar.gz" \ 1.18 + http://http.debian.net/debian/pool/main/m/mmv/${PACKAGE}_$VERSION.debian.tar.gz 1.19 + tar -xzf $SOURCES_REPOSITORY/${PACKAGE}_$VERSION.debian.tar.gz debian/patches/ 1.20 cat debian/patches/series | while read file; do 1.21 patch -p1 < debian/patches/$file 1.22 done