I’m just trying an mtrack installation of Linux-Magic-Trackpad-2 because the libinput with dkms was a total flop (I couldn’t move, only click and drag).
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.1 LTS
Release: 18.04
Codename: bionic
$ uname -r
4.18.5-041805-generic
$ sudo apt install libmtdev-dev
Reading package lists… Done
Building dependency tree
Reading state information… Done
libmtdev-dev is already the newest version (1.1.5-1ubuntu3).
$ dkg-buildpackage
dpkg-buildpackage: info: source package xserver-xorg-input-mtrack
dpkg-buildpackage: info: source version 0.5.0
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Paweł Turkowski p2rkw0@gmail.com
dpkg-buildpackage: info: host architecture amd64
dpkg-source —before-build xf86-input-mtrack
fakeroot debian/rules clean
dh_testdir
dh_testroot
/usr/bin/make clean
make[1]: Entering directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
test -z «mtrack_drv.la» || rm -f mtrack_drv.la
rm -f ./so_locations
rm -rf .libs _libs
rm -rf driver/.libs driver/_libs
rm -rf src/.libs src/_libs
rm -f mtrack-test
rm -f .o
rm -f driver/.o
rm -f driver/.lo
rm -f src/.o
rm -f src/.lo
rm -f tools/.o
rm -f *.lo
make[1]: Leaving directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
dh_clean
dh_clean: Compatibility levels before 9 are deprecated (level 5 in use)
dpkg-source -b xf86-input-mtrack
dpkg-source: warning: no source format specified in debian/source/format, see dpkg-source(1)
dpkg-source: info: using source format ‘1.0’
dpkg-source: warning: source directory ‘xf86-input-mtrack’ is not — ‘xserver-xorg-input-mtrack-0.5.0’
dpkg-source: info: building xserver-xorg-input-mtrack in xserver-xorg-input-mtrack_0.5.0.tar.gz
dpkg-source: info: building xserver-xorg-input-mtrack in xserver-xorg-input-mtrack_0.5.0.dsc
debian/rules build
dh_testdir
/usr/bin/make
make[1]: Entering directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
/usr/bin/make all-am
make[2]: Entering directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
CC src/capabilities.lo
CC src/gestures.lo
CC src/hwstate.lo
CC src/mconfig.lo
CC src/mtouch.lo
CC src/mtstate.lo
CC src/trig.lo
CC driver/mtrack.lo
CC driver/mprops.lo
CCLD mtrack_drv.la
CC src/mtrack_test-capabilities.o
CC src/mtrack_test-gestures.o
CC src/mtrack_test-hwstate.o
CC src/mtrack_test-mconfig.o
CC src/mtrack_test-mtouch.o
CC src/mtrack_test-mtstate.o
CC src/mtrack_test-trig.o
CC tools/mtrack_test-mtrack-test.o
CCLD mtrack-test
src/mtrack_test-hwstate.o: In function hwstate_modify': /home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack/src/hwstate.c:126: undefined reference to mtdev_get’
src/mtrack_test-mtouch.o: In function mtouch_open': /home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack/src/mtouch.c:42: undefined reference to mtdev_open’
src/mtrack_test-mtouch.o: In function mtouch_close': /home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack/src/mtouch.c:70: undefined reference to mtdev_close’
collect2: error: ld returned 1 exit status
Makefile:565: recipe for target ‘mtrack-test’ failed
make[2]: *** [mtrack-test] Error 1
make[2]: Leaving directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
Makefile:419: recipe for target ‘all’ failed
make[1]: *** [all] Error 2
make[1]: Leaving directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
debian/rules:8: recipe for target ‘build-arch’ failed
make: *** [build-arch] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
What’s the problem, I wonder?
I have tried to build the package using the command
sudo fakeroot dpkg-buildpackage -F.
And encountered these result in the ternimal.
dpkg-buildpackage: source package calender
dpkg-buildpackage: source version 1.5-1
dpkg-buildpackage: source distribution unstable
dpkg-buildpackage: source changed by Nandaraj <nandaraj.ks@marlabs.com>
dpkg-buildpackage: host architecture amd64
dpkg-source --before-build calender-1.5
debian/rules clean
debian/rules:18: *** missing separator. Stop.
dpkg-buildpackage: error: debian/rules clean gave error exit status 2
My rules file is:
#!/usr/bin/make -f
icon=$(CURDIR)/calender.png
script=$(CURDIR)/calender.py
launcher=$(CURDIR)/calender.desktop
links=$(CURDIR)/links.txt
DEST1=$(CURDIR)/debian/calender/usr/share/calender
DEST2=$(CURDIR)/debian/calender/usr/share/applications
build: build-stamp
build-stamp:
dh_testdir
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp
dh_clean
install: build clean $(icon) $(script) $(links) $(launcher)
dh_testdir
dh_testroot
dh_prep
dh_installdirs
mkdir -m 755 -p $(DEST1)
mkdir -m 755 -p $(DEST2)
install -m 666 $(icon) $(DEST1)
install -m 777 $(script) $(DEST1)
install -m 666 $(links) $(DEST1)
install -m 777 $(launcher) $(DEST2)
binary-indep: build install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installexamples
dh_installman
dh_link
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
# Build architecture-dependent files here.
binary-arch: build install
# We have nothing to do by default.
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
And my .desktop file is:
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Icon[en_IN]=/
Name[en_IN]=calender
Exec=/usr/share/applications/calender.py
Comment[en_IN]=program prints calender
Name=calender
Comment=program prints calender
Icon=/usr/share/calender/cal.png
Categories=Network;GTK;GNOME
Not able to build the package issue is
debian/rules:18: *** missing separator. Stop.
dpkg-buildpackage: error: debian/rules clean gave error exit status 2
Содержание
- unixforum.org
- Не собирается пакет
- Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Re: Не собирается пакет
- Thread: dpkg-buildpackage error !
- dpkg-buildpackage error !
- Re: dpkg-buildpackage error !
- Re: dpkg-buildpackage error !
- Re: dpkg-buildpackage error !
- Compiling kernel [debian/rules:6: build] Error 2 #593
- Comments
- dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2 #76
- Comments
- debian/rules build gave error exit status 2 #1309
- Comments
- at ../perl/NGCP/Rtpengine/AutoTest.pm line 190.
- doesn’t match ‘(?^s:^▒ ▒▒▒Ud▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒,▒»▒ ▒% ▒▒t▒▒q▒▒8/▒▒*▒▒▒t▒5▒q4▒▒s▒|sw▒▒p▒.▒4▒▒▒▒pt-▒$)’
- Failed test ‘received packet matches’
- at ../perl/NGCP/Rtpengine/AutoTest.pm line 190.
- ‘▒ ▒ ▒Ud▒▒P▒/▒▒^1+▒▒▒▒▒▒)▒8g▒▒▒▒.j▒ul▒▒.▒▒▒/▒>▒7s▒▒▒7l▒m▒O1▒▒.▒▒/▒Wh▒▒▒2o▒▒vu▒|g▒o▒▒q▒t▒l▒?▒▒u▒x*▒▒3>z▒qیu▒▒▒S3y▒])▒▒l▒▒>▒P2,▒v▒x▒=o▒l▒k▒?▒X▒%|▒U▒xYwYZ[_’
- doesn’t match ‘(?^s:^▒ ▒ ▒Ud▒▒▒▒+▒▒▒r3]6▒▒▒▒)▒r4▒▒t▒▒nq▒▒▒v0▒▒p▒▒▒,▒t2▒t6y▒▒▒2r]2▒▒4▒▒-▒x▒*▒yp▒▒▒ou▒▒xx▒t,▒1▒▒0▒su.▒7▒▒<▒y,▒▒p▒4v▒t▒▒rs▒▒▒ty▒▒▒,▒.17▒z▒▒s+z7▒7u|1
- Looks like you failed 3 tests of 59.
unixforum.org
Форум для пользователей UNIX-подобных систем
- Темы без ответов
- Активные темы
- Поиск
- Статус форума
Не собирается пакет
Не собирается пакет
Сообщение bluesman » 14.02.2009 13:34
Пробую собрать .deb пакет
После ввода команды
идет сборка но в конце логов выдает вот такое:
В результате .deb пакет не собирается
Собираю вот эту программу — тыц
Re: Не собирается пакет
Сообщение ZZaiatSS » 14.02.2009 13:55
Re: Не собирается пакет
Re: Не собирается пакет
Сообщение KernelPanic » 16.02.2009 06:12
Re: Не собирается пакет
Re: Не собирается пакет
Сообщение KernelPanic » 16.02.2009 12:12
Re: Не собирается пакет
Re: Не собирается пакет
Сообщение bluesman » 16.02.2009 14:28
Только вот мне не понятно, для чего нужна команда make -f Makefile.cvs и не знаю правильно ли я все сделал, несмотря на то что пакет собрался. Жду мнения коллег.
Re: Не собирается пакет
Сообщение KernelPanic » 16.02.2009 14:44
Re: Не собирается пакет
Сообщение bluesman » 16.02.2009 15:09
Re: Не собирается пакет
Сообщение KernelPanic » 16.02.2009 15:13
Re: Не собирается пакет
Сообщение bluesman » 16.02.2009 17:15
нужно деабинизировать с помощью dh_make
ЗЫ, извиняюсь, думал что указал ссылку на хау-ту, по которому собирал, вот оно — тыц
Вообщем делал все как в хау-ту, только там строчка есть:
Re: Не собирается пакет
Сообщение KernelPanic » 16.02.2009 17:17
Re: Не собирается пакет
Сообщение bluesman » 16.02.2009 17:21
Re: Не собирается пакет
Re: Не собирается пакет
Сообщение bluesman » 16.02.2009 18:56
Re: Не собирается пакет
Сообщение кодировщик » 16.02.2009 19:18
Re: Не собирается пакет
Re: Не собирается пакет
Сообщение bluesman » 16.02.2009 21:17
Re: Не собирается пакет
Сообщение KernelPanic » 16.02.2009 21:22
Источник
Thread: dpkg-buildpackage error !
Thread Tools
Display
dpkg-buildpackage error !
I am using Ubuntu 10.10. Today, I had successfully compiled the latest version of Gambas 3.3.1 and installed with the command:
Now, I want to make a debian file and upload it in my PPA here:
But, the dpkg-buildpackage is showing me the error:
I had used the command:
to build the debian file.
Please help friends, I am really new in creating DEB files and uploading to PPAs.
Re: dpkg-buildpackage error !
Have you tried using debuild or bzr builddeb?:
Re: dpkg-buildpackage error !
debuild is giving me the following error:
If i am using debuild as
then the following error is coming:
Last edited by etdsbastar; May 3rd, 2012 at 11:41 AM .
Re: dpkg-buildpackage error !
You need the ‘upstream’ tarball for debuild to make diffs against. This has to be in the directory above your project directory and named according to the Debian upstream version standard, e.g. gambas_3.3.1.orig.tar.gz. This is the raw archive that doesn’t include your packaging information or packaging modifications.
Also, if you want to upload this to a PPA, you need to sign the package with your GPG key. So don’t use the -us and -uc options — they mean ‘unsigned’.
Источник
Compiling kernel [debian/rules:6: build] Error 2 #593
I’m pretty green at this, but I’ve been on Linux a couple of years so help and patience would be really appreciated.
I’m trying to build Qzed’s kernel on Debian testing as per the instructions, but I keep getting a [debian/rules:6: build] Error 2. No errors applying the patches or anything.
When I ran make -j getconf _NPROCESSORS_ONLN deb-pkg LOCALVERSION=-linux-surface for the first time it asked me dozens of questions about what support to include, so I tried generating the .config file using make ARCH=x86_64 defconfig and then make menuconfig. In both cases compiling seemed to finish and give me .debs which installed, but after loading the installed kernels with grub, the screen went blank.
If anyone could point me in the right direction I’d be grateful.
git checkout v5.3.6
cd linux-stable/
for i in
/linux-surface/patches/5.3/*.patch; do patch -p1 getconf _NPROCESSORS_ONLN deb-pkg LOCALVERSION=-linux-surface
AR drivers/net/built-in.a
AR drivers/built-in.a
make[2]: *** [debian/rules:6: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
make[1]: *** [scripts/package/Makefile:75: deb-pkg] Error 2
make: *** [Makefile:1451: deb-pkg] Error 2
The text was updated successfully, but these errors were encountered:
Источник
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2 #76
I’m just trying an mtrack installation of Linux-Magic-Trackpad-2 because the libinput with dkms was a total flop (I couldn’t move, only click and drag).
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.1 LTS
Release: 18.04
Codename: bionic
$ uname -r
4.18.5-041805-generic
$ sudo apt install libmtdev-dev
Reading package lists. Done
Building dependency tree
Reading state information. Done
libmtdev-dev is already the newest version (1.1.5-1ubuntu3).
$ dkg-buildpackage
dpkg-buildpackage: info: source package xserver-xorg-input-mtrack
dpkg-buildpackage: info: source version 0.5.0
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Paweł Turkowski p2rkw0@gmail.com
dpkg-buildpackage: info: host architecture amd64
dpkg-source —before-build xf86-input-mtrack
fakeroot debian/rules clean
dh_testdir
dh_testroot
/usr/bin/make clean
make[1]: Entering directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
test -z «mtrack_drv.la» || rm -f mtrack_drv.la
rm -f ./so_locations
rm -rf .libs _libs
rm -rf driver/.libs driver/_libs
rm -rf src/.libs src/_libs
rm -f mtrack-test
rm -f .o
rm -f driver/.o
rm -f driver/.lo
rm -f src/.o
rm -f src/.lo
rm -f tools/.o
rm -f *.lo
make[1]: Leaving directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
dh_clean
dh_clean: Compatibility levels before 9 are deprecated (level 5 in use)
dpkg-source -b xf86-input-mtrack
dpkg-source: warning: no source format specified in debian/source/format, see dpkg-source(1)
dpkg-source: info: using source format ‘1.0’
dpkg-source: warning: source directory ‘xf86-input-mtrack’ is not — ‘xserver-xorg-input-mtrack-0.5.0’
dpkg-source: info: building xserver-xorg-input-mtrack in xserver-xorg-input-mtrack_0.5.0.tar.gz
dpkg-source: info: building xserver-xorg-input-mtrack in xserver-xorg-input-mtrack_0.5.0.dsc
debian/rules build
dh_testdir
/usr/bin/make
make[1]: Entering directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
/usr/bin/make all-am
make[2]: Entering directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
CC src/capabilities.lo
CC src/gestures.lo
CC src/hwstate.lo
CC src/mconfig.lo
CC src/mtouch.lo
CC src/mtstate.lo
CC src/trig.lo
CC driver/mtrack.lo
CC driver/mprops.lo
CCLD mtrack_drv.la
CC src/mtrack_test-capabilities.o
CC src/mtrack_test-gestures.o
CC src/mtrack_test-hwstate.o
CC src/mtrack_test-mconfig.o
CC src/mtrack_test-mtouch.o
CC src/mtrack_test-mtstate.o
CC src/mtrack_test-trig.o
CC tools/mtrack_test-mtrack-test.o
CCLD mtrack-test
src/mtrack_test-hwstate.o: In function hwstate_modify’: /home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack/src/hwstate.c:126: undefined reference to mtdev_get’
src/mtrack_test-mtouch.o: In function mtouch_open’: /home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack/src/mtouch.c:42: undefined reference to mtdev_open’
src/mtrack_test-mtouch.o: In function mtouch_close’: /home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack/src/mtouch.c:70: undefined reference to mtdev_close’
collect2: error: ld returned 1 exit status
Makefile:565: recipe for target ‘mtrack-test’ failed
make[2]: *** [mtrack-test] Error 1
make[2]: Leaving directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
Makefile:419: recipe for target ‘all’ failed
make[1]: *** [all] Error 2
make[1]: Leaving directory ‘/home/azatar/Engineering/ubuntu/touchpad/xf86-input-mtrack’
debian/rules:8: recipe for target ‘build-arch’ failed
make: *** [build-arch] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
What’s the problem, I wonder?
The text was updated successfully, but these errors were encountered:
Источник
debian/rules build gave error exit status 2 #1309
Im trying to install rtpengine in Debian 9 but i cant seem to get through.
i used dpkg-checkbuilddeps to make sure that there are all the dependencies that i need.
and then dpkg-buildpackage to build them.
but i got this at the end:
test «$(ls fake-daemon-tests-main-sockets)» = «»
rmdir fake-daemon-tests-main-sockets
make[4]: Leaving directory ‘/usr/src/rtpengine/t’
Makefile:111: recipe for target ‘daemon-tests’ failed
make[3]: * [daemon-tests] Error 2
rm sdp.strhash.c control_ng.strhash.c test-const_str_hash.strhash.c call_interfaces.strhash.c
make[3]: Leaving directory ‘/usr/src/rtpengine/t’
../lib/common.Makefile:4: recipe for target ‘all’ failed
make[2]: * [all] Error 2
make[2]: Leaving directory ‘/usr/src/rtpengine/t’
Makefile:54: recipe for target ‘check’ failed
make[1]: * [check] Error 2
make[1]: Leaving directory ‘/usr/src/rtpengine’
dh_auto_test: make -j4 check returned exit code 2
debian/rules:35: recipe for target ‘build’ failed
make: * [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
Any clue of what can i look for?
The text was updated successfully, but these errors were encountered:
One of the tests is failing. You need to look further up to see the actual error.
This is the error that appears
Failed test ‘received packet matches’
at ../perl/NGCP/Rtpengine/AutoTest.pm line 190.
doesn’t match ‘(?^s:^▒ ▒\▒▒Ud▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒,▒»▒ ▒% ▒▒t▒▒q▒▒8/▒▒*▒▒▒t▒5▒q4▒▒s▒|sw▒▒p▒.▒4▒▒▒▒pt-▒$)’
rtp in 0 2003 4800 22136
ok 660 — received packet matches
rtp in 8 4008 9280 25923
rtp recv 9 2004 4640 3528811756 d150d62faf8e5e312bfaf6dcced6d2299f3867978d5cfbcc2e6a96d47f756c96ce2effd2d42ff97dea8f3773fc9ed9d9376c9f6dd84f31fed62e985cd12f9d576890dcd0326f91de7675907c67936f9c8c71fc74ed6c983fface75d2782a9e8c337d7af09371db8c75eedad4533379fc945d2999dd6ceef38f3ed350322cf176f8788f3d6fd96cbe6b933fda58d91d257cd755d01d7859775d7f595c5a5c5b5f
800907d400001220d25564ecd150d62faf8e5e312bfaf6dcced6d2299f3867978d5cfbcc2e6a96d47f756c96ce2effd2d42ff97dea8f3773fc9ed9d9376c9f6dd84f31fed62e985cd12f9d576890dcd0326f91de7675907c67936f9c8c71fc74ed6c983fface75d2782a9e8c337d7af09371db8c75eedad4533379fc945d2999dd6ceef38f3ed350322cf176f8788f3d6fd96cbe6b933fda58d91d257cd755d01d7859775d7f595c5a5c5b5f
not ok 46 — received packet matches
Failed test ‘received packet matches’
at ../perl/NGCP/Rtpengine/AutoTest.pm line 190.
‘▒ ▒ ▒Ud▒▒P▒/▒▒^1+▒▒▒▒▒▒)▒8g▒▒▒▒.j▒ul▒▒.▒▒▒/▒>▒7s▒▒▒7l▒m▒O1▒▒.▒▒/▒Wh▒▒▒2o▒▒vu▒|g▒o▒▒q▒t▒l▒?▒▒u▒x*▒▒3>z▒qیu▒▒▒S3y▒])▒▒l▒▒>▒P2,▒v▒x▒=o▒l▒k▒?▒X▒%|▒U▒xYwYZ[_’
doesn’t match ‘(?^s:^▒ ▒\ ▒Ud▒▒▒▒+▒▒▒r3]6▒▒▒▒)▒r4▒▒t▒▒nq▒▒▒v0▒▒p▒▒▒,▒t2▒t6y▒▒▒2r]2▒▒4▒▒-▒x▒*▒yp▒▒▒ou▒▒xx▒t,▒1▒▒0▒su.▒7▒▒<▒y,▒▒p▒4v▒t▒▒rs▒▒▒ty▒▒▒,▒.17▒z▒▒s+z78▒7u|1
ok 47 — G.722 DTX — ‘delete’ status
new call 12-test-callID-0.150404823312687
ok 48 — G.722 reverse DTX — ‘offer’ status
ok 49 — G.722 reverse DTX — output ‘offer’ SDP
ok 50 — G.722 reverse DTX — ‘answer’ status
ok 51 — G.722 reverse DTX — output ‘answer’ SDP
Looks like you failed 3 tests of 59.
Makefile:141: recipe for target ‘daemon-tests-dtx-cn’ failed
make[4]: *** [daemon-tests-dtx-cn] Error 3
rtp recv 0 4006 8960 841096064 0e0c1db89da2bef9b4a0a33f140c14bd8e89934915121fe7b5d93c7ca19397d513090e45938b93c4201d2e6b46261f3d9d8d8eae17090d2c9c9098ba363dc7c42e1713279e8b8b9f1e0c0e25aa9ca5c8e8aea0aa2d100c1ba68c8a9a2c121327c3b3ed3ec89d939b380f0913ba8f8b984a1d1e34f93e2423ea988c92df10090f4d97909cd2313fc5d628161639978a8daf170b1032a29ba8d6d9aca1b3220e0e
make[4]: *** Waiting for unfinished jobs.
ok 688 — received packet matches
rtp in 0 4007 9120 25923
est «$(ls fake-daemon-tests-main-sockets)» = «»
rmdir fake-daemon-tests-main-sockets
make[4]: Leaving directory ‘/usr/src/rtpengine/t’
Makefile:111: recipe for target ‘daemon-tests’ failed
make[3]: *** [daemon-tests] Error 2
rm sdp.strhash.c control_ng.strhash.c test-const_str_hash.strhash.c call_interfaces.strhash.c
make[3]: Leaving directory ‘/usr/src/rtpengine/t’
../lib/common.Makefile:4: recipe for target ‘all’ failed
make[2]: *** [all] Error 2
make[2]: Leaving directory ‘/usr/src/rtpengine/t’
Makefile:54: recipe for target ‘check’ failed
make[1]: *** [check] Error 2
make[1]: Leaving directory ‘/usr/src/rtpengine’
dh_auto_test: make -j4 check returned exit code 2
debian/rules:35: recipe for target ‘build’ failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
I saw an old thread with a case that looks like this one #950 but then im using a virtual machine in openstack.
Post the output of dpkg -l libav* | cat please

| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-====================================-=======================-=======================-=============================================================================
ii libavcodec-dev:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg library with de/encoders for audio/video codecs — development files
un libavcodec-extra57 (no description available)
ii libavcodec57:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg library with de/encoders for audio/video codecs — runtime files
ii libavfilter-dev:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg library containing media filters — development files
un libavfilter-extra6 (no description available)
ii libavfilter6:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg library containing media filters — runtime files
ii libavformat-dev:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg library with (de)muxers for multimedia containers — development files
ii libavformat57:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg library with (de)muxers for multimedia containers — runtime files
ii libavresample-dev:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg compatibility library for resampling — development files
ii libavresample3:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg compatibility library for resampling — runtime files
ii libavutil-dev:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg library with functions for simplifying programming — development files
ii libavutil55:amd64 7:3.2.15-0+deb9u2 amd64 FFmpeg library with functions for simplifying programming — runtime files
Looks like it’s a matter of the DTX tests being unstable, and for some reason only(?) on jessie. I’m guessing it’s because they’re timing sensitive but don’t really have an explanation beyond that. It’s probably best to disable these tests for now. Try with 7e7b597 and see if that works for you.
Thank u @rfuchs i was able to get over that steep but then i met another problem
dpkg -i ngcp-rtpengine-daemon_10.0.0.0+0 mr10.0.0.0_amd64.deb
Selecting previously unselected package ngcp-rtpengine-daemon.
(Reading database . 75021 files and directories currently installed.)
Preparing to unpack ngcp-rtpengine-daemon_10.0.0.0+0 mr10.0.0.0_amd64.deb .
Unpacking ngcp-rtpengine-daemon (10.0.0.0+0 mr10.0.0.0) .
Setting up ngcp-rtpengine-daemon (10.0.0.0+0 mr10.0.0.0) .
invoke-rc.d: syntax error: unknown option «—skip-systemd-native»
dpkg: error processing package ngcp-rtpengine-daemon (—install):
subprocess installed post-installation script returned error exit status 1
Processing triggers for systemd (232-25+deb9u12) .
Processing triggers for man-db (2.7.6.1-2) .
Errors were encountered while processing:
ngcp-rtpengine-daemon
i found this issue #848 but i had init-system-helpers already installed.
the solution was really in #848 all i had to to was to update the init-system-helper i added deb http://ftp.de.debian.org/debian stretch-backports main to the source list to get a new version.
and then again i met another problem
I launched another machine all the errors that i faced before but in this opportunity i didnt upgraded the kernel and at the end got the same problem. I was trying to use dkms autoinstall but i got this:
DKMS make.log for ngcp-rtpengine-10.0.0.0+0 mr10.0.0.0 for kernel 4.9.0-14-amd64 (x86_64)
Sun Jul 18 03:37:22 UTC 2021
make: Entering directory ‘/usr/src/linux-headers-4.9.0-14-amd64’
LD /var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build/built-in.o
CC [M] /var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build/xt_RTPENGINE.o
/var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build/xt_RTPENGINE.c: In function ‘send_proxy_packet4’:
/var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build/xt_RTPENGINE.c:3560:44: error: missing binary operator before token «(»
RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(8,4)
^
/var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build/xt_RTPENGINE.c: In function ‘send_proxy_packet6’:
/var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build/xt_RTPENGINE.c:3663:44: error: missing binary operator before token «(»
RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(8,4)
^
/usr/src/linux-headers-4.9.0-14-common/scripts/Makefile.build:318: recipe for target ‘/var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build/xt_RTPENGINE.o’ failed
make[3]: *** [/var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build/xt_RTPENGINE.o] Error 1
/usr/src/linux-headers-4.9.0-14-common/Makefile:1560: recipe for target ‘module/var/lib/dkms/ngcp-rtpengine/10.0.0.0+0 mr10.0.0.0/build’ failed
make[2]: *** [module/var/lib/dkms/ngcp-rtpengine/10.0.0.0+0
mr10.0.0.0/build] Error 2
Makefile:152: recipe for target ‘sub-make’ failed
make[1]: *** [sub-make] Error 2
Makefile:8: recipe for target ‘all’ failed
make: *** [all] Error 2
make: Leaving directory ‘/usr/src/linux-headers-4.9.0-14-amd64’
root@rtpenginepro:/usr/src#
Idk tho why it give that error : «. RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(8,4)» if this a Debian machine
Источник
Не собирается пакет
Модераторы: Warderer, Модераторы разделов
-
bluesman
- Сообщения: 2137
- Статус: Блюзмен
- ОС: Ubuntu 9.10
Не собирается пакет
Пробую собрать .deb пакет
После ввода команды
идет сборка но в конце логов выдает вот такое:
Код: Выделить всё
make[1]: *** [config.status] Ошибка 2
make[1]: Leaving directory `~/src/kosd/0.2.3/kosd-0.2.3'
make: *** [clean] Ошибка 2
dpkg-buildpackage: сбой: fakeroot debian/rules clean возвратил код ошибки 2
В результате .deb пакет не собирается
Собираю вот эту программу — тыц
-
KernelPanic
- Бывший модератор
- Сообщения: 2060
- Статус: Brain Атаке
- ОС: Debian squeeze/sid/exp
-
bluesman
- Сообщения: 2137
- Статус: Блюзмен
- ОС: Ubuntu 9.10
Re: Не собирается пакет
Сообщение
bluesman » 16.02.2009 14:28
Решено: перед сборкой в пакет, нужно еще до команд
выполнить команду
Тоесть последовательность такая:
А потом уже:
Только вот мне не понятно, для чего нужна команда make -f Makefile.cvs и не знаю правильно ли я все сделал, несмотря на то что пакет собрался. Жду мнения коллег.
-
KernelPanic
- Бывший модератор
- Сообщения: 2060
- Статус: Brain Атаке
- ОС: Debian squeeze/sid/exp
Re: Не собирается пакет
Сообщение
KernelPanic » 16.02.2009 14:44
Скачал исходники. Чего-то не пойму, каким образом Вы применяете dpkg-buildpackage над обычными исходниками и для чего?
Последовательность действий описана на самой странице проекта и имеет вид:
Код: Выделить всё
make -f Makefile.cvs
./configure
make
make install (as root)
-
bluesman
- Сообщения: 2137
- Статус: Блюзмен
- ОС: Ubuntu 9.10
Re: Не собирается пакет
Сообщение
bluesman » 16.02.2009 17:15
KernelPanic
Нет, после
нужно деабинизировать с помощью dh_make
ЗЫ, извиняюсь, думал что указал ссылку на хау-ту, по которому собирал, вот оно — тыц
Вообщем делал все как в хау-ту, только там строчка есть:
Далее конфигурируем, делаем как обычно ./configure –prefix=/usr && make
Вместо этого я конфигурировал вот так:
-
bluesman
- Сообщения: 2137
- Статус: Блюзмен
- ОС: Ubuntu 9.10
Re: Не собирается пакет
Сообщение
bluesman » 16.02.2009 17:21
KernelPanic
Да я просто хотел в первом посте дать ссылку на инструкцию по сборке, но забыл, и все это время думал что ссылка там есть. Сам запутался
Получается что правильно собрал? Кстати, как вам программка? Мне понравилась, как в гноме показывает громкость при изменении.
- Forum
- The Ubuntu Forum Community
- Ubuntu Specialised Support
- Development & Programming
- Packaging and Compiling Programs
- [SOLVED] dpkg-buildpackage error !
-
dpkg-buildpackage error !
Hello friends,
I am using Ubuntu 10.10. Today, I had successfully compiled the latest version of Gambas 3.3.1 and installed with the command:
Now, I want to make a debian file and upload it in my PPA here:
Code:
ppa:khmedia/gambas-3
But, the dpkg-buildpackage is showing me the error:
Code:
dpkg-buildpackage: error: fakeroot debian/rules binary-arch gave error exit status 2
I had used the command:
Code:
dpkg-buildpackage -rfakeroot -D -B -us -uc
to build the debian file.
Please help friends, I am really new in creating DEB files and uploading to PPAs…
Controlling complexity is the essence of computer programming. — Brian
-
Re: dpkg-buildpackage error !
-
Re: dpkg-buildpackage error !
Dear,
debuild is giving me the following error:
Code:
dpkg-source: error: can't build with source format '3.0 (quilt)': no orig.tar file found dpkg-buildpackage: error: dpkg-source -b gambas-3.3.1~3.3.1 gave error exit status 255 debuild: fatal error at line 1337: dpkg-buildpackage -rfakeroot -D -us -uc failed
If i am using debuild asthen the following error is coming:
Code:
dh_auto_build: make -j1 returned exit code 2 make: *** [build] Error 2 dpkg-buildpackage: error: debian/rules build gave error exit status 2 debuild: fatal error at line 1337: dpkg-buildpackage -rfakeroot -D -us -uc -B failed
Last edited by etdsbastar; May 3rd, 2012 at 11:41 AM.
Controlling complexity is the essence of computer programming. — Brian
-
Re: dpkg-buildpackage error !
You need the ‘upstream’ tarball for debuild to make diffs against. This has to be in the directory above your project directory and named according to the Debian upstream version standard, e.g. gambas_3.3.1.orig.tar.gz. This is the raw archive that doesn’t include your packaging information or packaging modifications.
Also, if you want to upload this to a PPA, you need to sign the package with your GPG key. So don’t use the -us and -uc options — they mean ‘unsigned’.
The command to use is ‘debuild -S’ from your project directory. If it is successful, it will create a *source.changes file alongside the upstream tarball, i.e. a level above your project directory, and it’s that file that you submit with dput.
-
Re: dpkg-buildpackage error !
Dear friend,
.orig.tar error has been rectified as per your solution. Thanks for that. But now the terminal is filled up with these:
Code:
dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/opengl/.libs/gb.qt4.opengl.so.0.0.0: binary file contents changed dpkg-source: error: add gb.qt4/src/opengl/.libs/gb.qt4.opengl.so.0.0.0 in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/opengl/.libs/gb.qt4.opengl.la: dpkg-source: error: new version is symlink to ../gb.qt4.opengl.la dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/opengl/.libs/CGLarea_moc.o: binary file contents changed dpkg-source: error: add gb.qt4/src/opengl/.libs/CGLarea_moc.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/gb.qt4/gb.qt4.gambas: binary file contents changed dpkg-source: error: add gb.qt4/src/gb.qt4/gb.qt4.gambas in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/cwebframe_moc.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/cwebframe_moc.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/gb.qt4.webkit.so.0.0.0: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/gb.qt4.webkit.so.0.0.0 in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/cwebdownload_moc.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/cwebdownload_moc.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/cwebview.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/cwebview.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/cwebview_moc.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/cwebview_moc.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/cwebhittest.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/cwebhittest.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/ccookiejar.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/ccookiejar.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/gb.qt4.webkit.so.0: dpkg-source: error: new version is symlink to gb.qt4.webkit.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/cwebdownload.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/cwebdownload.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/gb.qt4.webkit.la: dpkg-source: error: new version is symlink to ../gb.qt4.webkit.la dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/main.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/main.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/ccookiejar_moc.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/ccookiejar_moc.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/cwebframe.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/cwebframe.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/gb.qt4.webkit.so: dpkg-source: error: new version is symlink to gb.qt4.webkit.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.qt4/src/webkit/.libs/cwebsettings.o: binary file contents changed dpkg-source: error: add gb.qt4/src/webkit/.libs/cwebsettings.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/gb.image.h: dpkg-source: error: new version is symlink to ../main/lib/image/gb.image.h dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.desktop/warnings.log' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.desktop/ltmain.sh' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.desktop/install-sh' will not be represented in diff dpkg-source: warning: newly created empty file 'gb.desktop/README' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/COPYING: dpkg-source: error: new version is symlink to ../COPYING dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/gb_list.h: dpkg-source: error: new version is symlink to ../main/share/gb_list.h dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0755 of 'gb.desktop/config.sub' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/reconf: dpkg-source: error: new version is symlink to ../reconf dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.desktop/AUTHORS' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/missing: dpkg-source: error: new version is symlink to ../missing dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/INSTALL: dpkg-source: error: new version is symlink to ../INSTALL dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/component.am: dpkg-source: error: new version is symlink to ../component.am dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.desktop/NEWS' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.desktop/config.guess' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.desktop/configure' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/gb_list_temp.h: dpkg-source: error: new version is symlink to ../main/share/gb_list_temp.h dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/acinclude.m4: dpkg-source: error: new version is symlink to ../acinclude.m4 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/gb_common.h: dpkg-source: error: new version is symlink to ../main/share/gb_common.h dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/gambas.h: dpkg-source: error: new version is symlink to ../main/share/gambas.h dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0755 of 'gb.desktop/depcomp' will not be represented in diff dpkg-source: warning: newly created empty file 'gb.desktop/ChangeLog' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gb.desktop.component: dpkg-source: error: new version is symlink to gb.desktop/.component dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/.libs/desktop.o: binary file contents changed dpkg-source: error: add gb.desktop/src/.libs/desktop.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/.libs/gb_list.o: binary file contents changed dpkg-source: error: add gb.desktop/src/.libs/gb_list.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/.libs/gb.desktop.so.0.0.0: binary file contents changed dpkg-source: error: add gb.desktop/src/.libs/gb.desktop.so.0.0.0 in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/.libs/x11.o: binary file contents changed dpkg-source: error: add gb.desktop/src/.libs/x11.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/.libs/gb.desktop.so.0: dpkg-source: error: new version is symlink to gb.desktop.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/.libs/main.o: binary file contents changed dpkg-source: error: add gb.desktop/src/.libs/main.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/.libs/gb.desktop.so: dpkg-source: error: new version is symlink to gb.desktop.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/.libs/gb.desktop.la: dpkg-source: error: new version is symlink to ../gb.desktop.la dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gb.desktop/.icon.png: binary file contents changed dpkg-source: error: add gb.desktop/src/gb.desktop/.icon.png in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gb.desktop/gb.desktop.gambas: binary file contents changed dpkg-source: error: add gb.desktop/src/gb.desktop/gb.desktop.gambas in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: warning: executable mode 0775 of 'gb.desktop/src/gb.desktop/.hidden/xdg-utils-1.0.2/scripts/xdg-email' will not be represented in diff dpkg-source: warning: executable mode 0775 of 'gb.desktop/src/gb.desktop/.hidden/xdg-utils-1.0.2/scripts/xdg-mime' will not be represented in diff dpkg-source: warning: executable mode 0775 of 'gb.desktop/src/gb.desktop/.hidden/xdg-utils-1.0.2/scripts/xdg-desktop-icon' will not be represented in diff dpkg-source: warning: executable mode 0775 of 'gb.desktop/src/gb.desktop/.hidden/xdg-utils-1.0.2/scripts/xdg-open' will not be represented in diff dpkg-source: warning: executable mode 0775 of 'gb.desktop/src/gb.desktop/.hidden/xdg-utils-1.0.2/scripts/xdg-icon-resource' will not be represented in diff dpkg-source: warning: executable mode 0775 of 'gb.desktop/src/gb.desktop/.hidden/xdg-utils-1.0.2/scripts/xdg-desktop-menu' will not be represented in diff dpkg-source: warning: executable mode 0775 of 'gb.desktop/src/gb.desktop/.hidden/xdg-utils-1.0.2/scripts/xdg-screensaver' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gb.desktop/.hidden/control/desktopwatcher.png: binary file contents changed dpkg-source: error: add gb.desktop/src/gb.desktop/.hidden/control/desktopwatcher.png in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gnome/.libs/gb.desktop.gnome.so.0.0.0: binary file contents changed dpkg-source: error: add gb.desktop/src/gnome/.libs/gb.desktop.gnome.so.0.0.0 in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gnome/.libs/gb.desktop.gnome.la: dpkg-source: error: new version is symlink to ../gb.desktop.gnome.la dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gnome/.libs/keyring.o: binary file contents changed dpkg-source: error: add gb.desktop/src/gnome/.libs/keyring.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gnome/.libs/main.o: binary file contents changed dpkg-source: error: add gb.desktop/src/gnome/.libs/main.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gnome/.libs/gb.desktop.gnome.so: dpkg-source: error: new version is symlink to gb.desktop.gnome.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.desktop/src/gnome/.libs/gb.desktop.gnome.so.0: dpkg-source: error: new version is symlink to gb.desktop.gnome.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.compress.zlib/warnings.log' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/gb.compress.h: dpkg-source: error: new version is symlink to ../main/lib/compress/gb.compress.h dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0755 of 'gb.compress.zlib/ltmain.sh' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.compress.zlib/install-sh' will not be represented in diff dpkg-source: warning: newly created empty file 'gb.compress.zlib/README' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/COPYING: dpkg-source: error: new version is symlink to ../COPYING dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0755 of 'gb.compress.zlib/config.sub' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/reconf: dpkg-source: error: new version is symlink to ../reconf dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.compress.zlib/AUTHORS' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/missing: dpkg-source: error: new version is symlink to ../missing dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/INSTALL: dpkg-source: error: new version is symlink to ../INSTALL dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.compress.zlib/NEWS' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.compress.zlib/config.guess' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.compress.zlib/configure' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/acinclude.m4: dpkg-source: error: new version is symlink to ../acinclude.m4 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/gb_common.h: dpkg-source: error: new version is symlink to ../main/share/gb_common.h dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/gambas.h: dpkg-source: error: new version is symlink to ../main/share/gambas.h dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/depcomp: dpkg-source: error: new version is symlink to ../depcomp dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.compress.zlib/ChangeLog' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/src/.libs/gb.compress.zlib.so: dpkg-source: error: new version is symlink to gb.compress.zlib.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/src/.libs/gb.compress.zlib.la: dpkg-source: error: new version is symlink to ../gb.compress.zlib.la dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/src/.libs/main.o: binary file contents changed dpkg-source: error: add gb.compress.zlib/src/.libs/main.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/src/.libs/gb.compress.zlib.so.0.0.0: binary file contents changed dpkg-source: error: add gb.compress.zlib/src/.libs/gb.compress.zlib.so.0.0.0 in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.compress.zlib/src/.libs/gb.compress.zlib.so.0: dpkg-source: error: new version is symlink to gb.compress.zlib.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/gb.image.h: dpkg-source: error: new version is symlink to ../main/lib/image/gb.image.h dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.pdf/warnings.log' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/gb.gtk.h: dpkg-source: error: new version is symlink to ../gb.gtk/src/gb.gtk.h dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0755 of 'gb.pdf/ltmain.sh' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.pdf/install-sh' will not be represented in diff dpkg-source: warning: newly created empty file 'gb.pdf/README' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/COPYING: dpkg-source: error: new version is symlink to ../COPYING dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0755 of 'gb.pdf/config.sub' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/reconf: dpkg-source: error: new version is symlink to ../reconf dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.pdf/AUTHORS' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/missing: dpkg-source: error: new version is symlink to ../missing dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/INSTALL: dpkg-source: error: new version is symlink to ../INSTALL dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/component.am: dpkg-source: error: new version is symlink to ../component.am dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.pdf/NEWS' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.pdf/config.guess' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.pdf/configure' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/acinclude.m4: dpkg-source: error: new version is symlink to ../acinclude.m4 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/gb_common.h: dpkg-source: error: new version is symlink to ../main/share/gb_common.h dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/gambas.h: dpkg-source: error: new version is symlink to ../main/share/gambas.h dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/depcomp: dpkg-source: error: new version is symlink to ../depcomp dpkg-source: error: old version is nonexistent dpkg-source: warning: file gambas_3.3.1~maverick/gb.pdf/ChangeLog has no final newline (either original or modified version) dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/src/.libs/gb.pdf.la: dpkg-source: error: new version is symlink to ../gb.pdf.la dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/src/.libs/gb.pdf.so: dpkg-source: error: new version is symlink to gb.pdf.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/src/.libs/gb.pdf.so.0: dpkg-source: error: new version is symlink to gb.pdf.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/src/.libs/CPdfDocument.o: binary file contents changed dpkg-source: error: add gb.pdf/src/.libs/CPdfDocument.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/src/.libs/main.o: binary file contents changed dpkg-source: error: add gb.pdf/src/.libs/main.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.pdf/src/.libs/gb.pdf.so.0.0.0: binary file contents changed dpkg-source: error: add gb.pdf/src/.libs/gb.pdf.so.0.0.0 in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/gb.db.proto.h: dpkg-source: error: new version is symlink to ../main/lib/db/gb.db.proto.h dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.db.sqlite2/warnings.log' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.db.sqlite2/ltmain.sh' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.db.sqlite2/install-sh' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/COPYING: dpkg-source: error: new version is symlink to ../COPYING dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0755 of 'gb.db.sqlite2/config.sub' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/reconf: dpkg-source: error: new version is symlink to ../reconf dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.db.sqlite2/AUTHORS' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/missing: dpkg-source: error: new version is symlink to ../missing dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/INSTALL: dpkg-source: error: new version is symlink to ../INSTALL dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/component.am: dpkg-source: error: new version is symlink to ../component.am dpkg-source: error: old version is nonexistent dpkg-source: warning: newly created empty file 'gb.db.sqlite2/NEWS' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/gb.db.h: dpkg-source: error: new version is symlink to ../main/lib/db/gb.db.h dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0755 of 'gb.db.sqlite2/config.guess' will not be represented in diff dpkg-source: warning: executable mode 0755 of 'gb.db.sqlite2/configure' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/acinclude.m4: dpkg-source: error: new version is symlink to ../acinclude.m4 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/gb_common.h: dpkg-source: error: new version is symlink to ../main/share/gb_common.h dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/gambas.h: dpkg-source: error: new version is symlink to ../main/share/gambas.h dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/depcomp: dpkg-source: error: new version is symlink to ../depcomp dpkg-source: error: old version is nonexistent dpkg-source: warning: executable mode 0775 of 'gb.db.sqlite2/src/Makefile.am' will not be represented in diff dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-main.o: binary file contents changed dpkg-source: error: add gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-main.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb.db.sqlite2.so.0: dpkg-source: error: new version is symlink to gb.db.sqlite2.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-sqlitedataset.o: binary file contents changed dpkg-source: error: add gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-sqlitedataset.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-stringhelper.o: binary file contents changed dpkg-source: error: add gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-stringhelper.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb.db.sqlite2.so: dpkg-source: error: new version is symlink to gb.db.sqlite2.so.0.0.0 dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb.db.sqlite2.la: dpkg-source: error: new version is symlink to ../gb.db.sqlite2.la dpkg-source: error: old version is nonexistent dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-qry_dat.o: binary file contents changed dpkg-source: error: add gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-qry_dat.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-dataset.o: binary file contents changed dpkg-source: error: add gb.db.sqlite2/src/.libs/gb_db_sqlite2_la-dataset.o in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: cannot represent change to gambas_3.3.1~maverick/gb.db.sqlite2/src/.libs/gb.db.sqlite2.so.0.0.0: binary file contents changed dpkg-source: error: add gb.db.sqlite2/src/.libs/gb.db.sqlite2.so.0.0.0 in debian/source/include-binaries if you want to store the modified binary in the debian tarball dpkg-source: error: unrepresentable changes to source dpkg-buildpackage: error: dpkg-source -b gambas_3.3.1~maverick gave error exit status 2 debuild: fatal error at line 1337: dpkg-buildpackage -rfakeroot -d -us -uc -S failed
Please help…
Controlling complexity is the essence of computer programming. — Brian
-
Re: dpkg-buildpackage error !
Looks like you didn’t clean the project before you made the source tarball. It’s full of .o files. The source tarball must be a clean archive of sources only — what you would expect to find in version control.
-
Re: dpkg-buildpackage error !
Now this error with debuild -B:
Code:
make: *** [binary-arch] Error 2 dpkg-buildpackage: error: fakeroot debian/rules binary-arch gave error exit status 2 debuild: fatal error at line 1337: dpkg-buildpackage -rfakeroot -D -us -uc -B failed
and this with debuild -S:
Code:
dpkg-source: error: unrepresentable changes to source dpkg-buildpackage: error: dpkg-source -b gambas-3.3.1 gave error exit status 2 debuild: fatal error at line 1337: dpkg-buildpackage -rfakeroot -d -us -uc -S failed
Please help senior ! I don’t know actually where i am wrong.
Last edited by etdsbastar; May 3rd, 2012 at 03:14 PM.
Controlling complexity is the essence of computer programming. — Brian
-
Re: dpkg-buildpackage error !
Let me try it. Could you post the contents of the files from the debian directory you created for packaging? I’ve downloaded the source and I’m just compiling it.
-
Re: dpkg-buildpackage error !
Here are the contents in zip format.
Anyhow managed with following errors:
Code:
gpg: /tmp/debsign.HPcsz8w5/gambas_3.3.1-1.dsc: clearsign failed: secret key not available debsign: gpg error occurred! Aborting.... debuild: fatal error at line 1258: running debsign failed
Last edited by etdsbastar; May 3rd, 2012 at 03:30 PM.
Controlling complexity is the essence of computer programming. — Brian
-
Re: dpkg-buildpackage error !
After a few attempts I got to that same point.
You probably found that the trick was not to compile it. Just unpack the pure source tarball, add the debian directory and run debuild -S.
To solve the signing issue, which you need to do to upload, you need to set up your GPG key as set out in http://developer.ubuntu.com/packagin…ng-set-up.html. This needs to match what you have in debian/changelog, i.e. same name and email address.
Tags for this Thread
Bookmarks
Bookmarks

Posting Permissions
Пытаюсь собрать последнюю версию bashdb, но получаю ошибку:
Логи сборки
dpkg-buildpackage -rfakeroot -uc -us
dpkg-buildpackage: инфо: пакет исходного кода bashdb
dpkg-buildpackage: инфо: версия исходного кода 5.0.1.1.2-1.1ubuntu1
dpkg-buildpackage: инфо: дистрибутив исходного кода focal
dpkg-buildpackage: инфо: исходный код изменён Sabir Abdurakhmanov <nihi1ist@nixway.org>
dpkg-buildpackage: инфо: архитектура узла amd64
dpkg-source --before-build .
dpkg-source: инфо: используются параметры из bashdb-5.0.1.1.2/debian/source/options: --extend-diff-ignore=(^|/)(config.sub|config.guess|bashdb.html|doc/bashdb.info)$
dpkg-source: инфо: using patch list from debian/patches/series
dpkg-source: инфо: накладывается gpl.texi.patch
fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp
rm -f doc/pod2htmd.tmp doc/pod2htmi.tmp
[ ! -f Makefile ] || /usr/bin/make distclean
cp -f /usr/share/misc/config.sub config.sub
cp -f /usr/share/misc/config.guess config.guess
dh_clean
dh_clean: error: Please specify the compatibility level in debian/compat or via Build-Depends: debhelper-compat (= X)
make: *** [debian/rules:41: clean] Ошибка 255
dpkg-buildpackage: ошибка: fakeroot debian/rules clean subprocess returned exit status 2
Ругается на жесткую зависимость debhelper-compat (= X), хотя в control указана debhelper >= 13:
control
Source: bashdb
Section: devel
Priority: optional
Maintainer: Oleksandr Moskalenko <malex@debian.org>
Build-Depends: debhelper (>= 13), texi2html, texinfo
Standards-Version: 3.9.2
Vcs-Git: git://git.debian.org/collab-maint/bashdb.git
Vcs-Browser: http://git.debian.org/?p=collab-maint/bashdb.git
Package: bashdb
Architecture: all
Depends: bash ( >= 5.4 ), python, ${misc:Depends}
Description: BASH debugger
Искал в тексте упоминания debhelper-compat, но не нашел.
-
Вопрос задан30 авг. 2022
-
62 просмотра
Решилось созданием файла debian/compat с числом 10. Я так понимаю, это уровень совместимости.
Пригласить эксперта
Please specify the compatibility level in debian/compat or via Build-Depends: debhelper-compat (= X)Искал в тексте упоминания debhelper-compat, но не нашел.
Насколько я понял этот документ, рекомендуется указывать зависимость от debhelper-compat вместо зависимости от debhelper. Т.е. надо самому написать
Build-Depends: debhelper-compat (= 13), texi2html, texinfo
-
Показать ещё
Загружается…
09 февр. 2023, в 13:09
5000 руб./за проект
09 февр. 2023, в 13:08
1000 руб./за проект
09 февр. 2023, в 13:05
1000 руб./за проект
Минуточку внимания
-
moonss1300
- Posts: 12
- Joined: Sun Jul 18, 2021 12:21 pm
ffmpeg : How to fix dpkg-buildpackage build errors
This error appears when ffmpeg is built with the dpkg-buildpackage command.
How do I fix this error?
Code: Select all
...
/usr/bin/ld: /usr/local/lib/libvpx.a(onyx_if.c.o): in function `vp8_reverse_trans':
(.text+0x1cc8): dangerous relocation: unsupported relocation
/usr/bin/ld: /usr/local/lib/libvpx.a(onyx_if.c.o): in function `vp8_change_config':
(.text+0x1e94): dangerous relocation: unsupported relocation
/usr/bin/ld: (.text+0x1e98): dangerous relocation: unsupported relocation
/usr/bin/ld: (.text+0x1e9c): dangerous relocation: unsupported relocation
/usr/bin/ld: (.text+0x1ea0): dangerous relocation: unsupported relocation
/usr/bin/ld: (.text+0x1ea4): dangerous relocation: unsupported relocation
/usr/bin/ld: (.text+0x1ea8): dangerous relocation: unsupported relocation
/usr/bin/ld: /usr/local/lib/libvpx.a(onyx_if.c.o)(.text+0x3ae8): unresolvable R_ARM_CALL relocation against symbol `gettimeofday@@GLIBC_2.4'
/usr/bin/ld: final link failed: symbol needs debug section which does not exist
collect2: error: ld returned 1 exit status
make[2]: *** [/home/pi/vvmpeg/ffmpeg-4.1.6/ffbuild/library.mak:103: libavcodec/libavcodec.so.58] Error 1
make[2]: Leaving directory '/home/pi/vvmpeg/ffmpeg-4.1.6/debian/standard'
dh_auto_build: error: cd debian/standard && make -j4 "INSTALL=install --strip-program=true" returned exit code 2
cat: debian/standard/config.log: No such file or directory
make[1]: *** [debian/rules:289: override_dh_auto_build-arch] Error 1
make[1]: Leaving directory '/home/pi/vvmpeg/ffmpeg-4.1.6'
make: *** [debian/rules:265: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
debuild: fatal error at line 1182:
dpkg-buildpackage -us -uc -ui -b failed
Return to “Beginners”




