* Python3 @ 2017-01-23 15:17 Jonatan Schlag 2017-01-23 15:17 ` [PATCH 1/2] Prepare for python3 Jonatan Schlag 2017-01-27 12:33 ` Python3 Michael Tremer 0 siblings, 2 replies; 6+ messages in thread From: Jonatan Schlag @ 2017-01-23 15:17 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 314 bytes --] Hi, the following patches include python3 in ipfire. Unfortunately, the flash image build no more. The build fails with a tar error complaining about to less disk space. I did not found out what the problem is, so somebody else has to investigate time into this problem to find a solution. Regards Jonatan ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] Prepare for python3 2017-01-23 15:17 Python3 Jonatan Schlag @ 2017-01-23 15:17 ` Jonatan Schlag 2017-01-27 12:33 ` Python3 Michael Tremer 1 sibling, 0 replies; 6+ messages in thread From: Jonatan Schlag @ 2017-01-23 15:17 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 795 bytes --] The build of ipaadr fails with python3 because two possibilities of /usr/lib/python* are availible. This patch set the path to /usr/lib/python2* to make the path clear. Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org> --- lfs/ipaddr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/ipaddr b/lfs/ipaddr index 4b74e02..186141c 100644 --- a/lfs/ipaddr +++ b/lfs/ipaddr @@ -70,7 +70,7 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && install -m 0644 ipaddr.py /usr/lib/python* + cd $(DIR_APP) && install -m 0644 ipaddr.py /usr/lib/python2* /usr/bin/python -c "import ipaddr" @rm -rf $(DIR_APP) @$(POSTBUILD) -- 2.1.4 ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Python3 2017-01-23 15:17 Python3 Jonatan Schlag 2017-01-23 15:17 ` [PATCH 1/2] Prepare for python3 Jonatan Schlag @ 2017-01-27 12:33 ` Michael Tremer 2017-01-28 8:33 ` Python3 Matthias Fischer 1 sibling, 1 reply; 6+ messages in thread From: Michael Tremer @ 2017-01-27 12:33 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 1186 bytes --] Hi, thank you for submitting this. I merged this and for me, the flash image couldn't be generated either. The reason for that is that we allocate a partition of a fixed size (which is ~700MB) right now. The system is extracted onto that partition and all is put into the image which then is small enough to fit on a 1GB storage device. As soon as the system boots up for the first time, it increases the partition to maximum size. However, with adding Python 3 to the core system, it didn't fit into the 700MB any more. I therefore made it an add-on package which is still rather huge (~20MB). Is there any requirement this should be in the core distribution? AFAIK nothing is using this by default, hence it could easily be an add-on. Best, -Michael On Mon, 2017-01-23 at 16:17 +0100, Jonatan Schlag wrote: > Hi, > the following patches include python3 in ipfire. > > Unfortunately, the flash image build no more. The build fails with a > tar > error complaining about to less disk space. I did not found out what the > problem is, so somebody else has to investigate time into this problem > to find a solution. > > Regards Jonatan > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Python3 2017-01-27 12:33 ` Python3 Michael Tremer @ 2017-01-28 8:33 ` Matthias Fischer 2017-01-28 17:48 ` Python3 Matthias Fischer 0 siblings, 1 reply; 6+ messages in thread From: Matthias Fischer @ 2017-01-28 8:33 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 2443 bytes --] Hi, sorry guys, but this won't build here: Its always (_build.packages.log): ... Jan 28 00:04:45: Building python3 Python-3.6.0.tar.xz checksum OK + cd /usr/src/lfs + make -f python3 LFS_BASEDIR=/usr/src dist '/usr/src/config/rootfiles/packages/i586/python3' -> '/install/packages/package/ROOTFILES' tar: usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc: Cannot stat: No such file or directory tar: usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-2.pyc: Cannot stat: No such file or directory tar: usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.pyc: Cannot stat: No such file or directory tar: usr/lib/python3.6/_sysconfigdata_m_linux_x86_64-linux-gnu.py: Cannot stat: No such file or directory ... and so on ... E.g., script is searching for: _sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc ^^^^^^ It builds: _sysconfigdata_m_linux_i386-linux-gnu.cpython-36.opt-1.pyc ^^^^ "Fixes for rootfile" (or something similar?) needed!? Best, Matthias On 27.01.2017 13:33, Michael Tremer wrote: > Hi, > > thank you for submitting this. > > I merged this and for me, the flash image couldn't be generated either. The > reason for that is that we allocate a partition of a fixed size (which is > ~700MB) right now. The system is extracted onto that partition and all is put > into the image which then is small enough to fit on a 1GB storage device. As > soon as the system boots up for the first time, it increases the partition to > maximum size. > > However, with adding Python 3 to the core system, it didn't fit into the 700MB > any more. I therefore made it an add-on package which is still rather huge > (~20MB). Is there any requirement this should be in the core distribution? AFAIK > nothing is using this by default, hence it could easily be an add-on. > > Best, > -Michael > > On Mon, 2017-01-23 at 16:17 +0100, Jonatan Schlag wrote: >> Hi, >> the following patches include python3 in ipfire. >> >> Unfortunately, the flash image build no more. The build fails with a >> tar >> error complaining about to less disk space. I did not found out what the >> problem is, so somebody else has to investigate time into this problem >> to find a solution. >> >> Regards Jonatan >> > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Python3 2017-01-28 8:33 ` Python3 Matthias Fischer @ 2017-01-28 17:48 ` Matthias Fischer 2017-01-29 19:24 ` Python3 Michael Tremer 0 siblings, 1 reply; 6+ messages in thread From: Matthias Fischer @ 2017-01-28 17:48 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 2854 bytes --] Hi, Ok, got it: "x86_64 refers to 64-bit processors. i386 refers to 32-bit processors." Replaced all "x86_64" in ".../config/rootfiles/packages/i586/python3" with "i386" and this seemed to work. Sent rootfile... Best, Matthias On 28.01.2017 09:33, Matthias Fischer wrote: > Hi, > > sorry guys, but this won't build here: > > Its always (_build.packages.log): > > ... > Jan 28 00:04:45: Building python3 Python-3.6.0.tar.xz checksum OK > + cd /usr/src/lfs > + make -f python3 LFS_BASEDIR=/usr/src dist > '/usr/src/config/rootfiles/packages/i586/python3' -> > '/install/packages/package/ROOTFILES' > tar: > usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc: > Cannot stat: No such file or directory > tar: > usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-2.pyc: > Cannot stat: No such file or directory > tar: > usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.pyc: > Cannot stat: No such file or directory > tar: usr/lib/python3.6/_sysconfigdata_m_linux_x86_64-linux-gnu.py: > Cannot stat: No such file or directory > ... and so on ... > > E.g., script is searching for: > > _sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc > ^^^^^^ > It builds: > > _sysconfigdata_m_linux_i386-linux-gnu.cpython-36.opt-1.pyc > ^^^^ > "Fixes for rootfile" (or something similar?) needed!? > > Best, > Matthias > > On 27.01.2017 13:33, Michael Tremer wrote: >> Hi, >> >> thank you for submitting this. >> >> I merged this and for me, the flash image couldn't be generated either. The >> reason for that is that we allocate a partition of a fixed size (which is >> ~700MB) right now. The system is extracted onto that partition and all is put >> into the image which then is small enough to fit on a 1GB storage device. As >> soon as the system boots up for the first time, it increases the partition to >> maximum size. >> >> However, with adding Python 3 to the core system, it didn't fit into the 700MB >> any more. I therefore made it an add-on package which is still rather huge >> (~20MB). Is there any requirement this should be in the core distribution? AFAIK >> nothing is using this by default, hence it could easily be an add-on. >> >> Best, >> -Michael >> >> On Mon, 2017-01-23 at 16:17 +0100, Jonatan Schlag wrote: >>> Hi, >>> the following patches include python3 in ipfire. >>> >>> Unfortunately, the flash image build no more. The build fails with a >>> tar >>> error complaining about to less disk space. I did not found out what the >>> problem is, so somebody else has to investigate time into this problem >>> to find a solution. >>> >>> Regards Jonatan >>> >> > > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Python3 2017-01-28 17:48 ` Python3 Matthias Fischer @ 2017-01-29 19:24 ` Michael Tremer 0 siblings, 0 replies; 6+ messages in thread From: Michael Tremer @ 2017-01-29 19:24 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 3338 bytes --] Thanks. I assume that we will have the same issue with ARM but I could not download a rootfile from a nightly build at the moment... Best, -Michael On Sat, 2017-01-28 at 18:48 +0100, Matthias Fischer wrote: > Hi, > > Ok, got it: > > "x86_64 refers to 64-bit processors. i386 refers to 32-bit > processors." > > Replaced all "x86_64" in ".../config/rootfiles/packages/i586/python3" > with "i386" and this seemed to work. > > Sent rootfile... > > Best, > Matthias > > On 28.01.2017 09:33, Matthias Fischer wrote: > > Hi, > > > > sorry guys, but this won't build here: > > > > Its always (_build.packages.log): > > > > ... > > Jan 28 00:04:45: Building python3 Python-3.6.0.tar.xz checksum OK > > + cd /usr/src/lfs > > + make -f python3 LFS_BASEDIR=/usr/src dist > > '/usr/src/config/rootfiles/packages/i586/python3' -> > > '/install/packages/package/ROOTFILES' > > tar: > > usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux- > > gnu.cpython-36.opt-1.pyc: > > Cannot stat: No such file or directory > > tar: > > usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux- > > gnu.cpython-36.opt-2.pyc: > > Cannot stat: No such file or directory > > tar: > > usr/lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux- > > gnu.cpython-36.pyc: > > Cannot stat: No such file or directory > > tar: usr/lib/python3.6/_sysconfigdata_m_linux_x86_64-linux-gnu.py: > > Cannot stat: No such file or directory > > ... and so on ... > > > > E.g., script is searching for: > > > > _sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc > > ^^^^^^ > > It builds: > > > > _sysconfigdata_m_linux_i386-linux-gnu.cpython-36.opt-1.pyc > > ^^^^ > > "Fixes for rootfile" (or something similar?) needed!? > > > > Best, > > Matthias > > > > On 27.01.2017 13:33, Michael Tremer wrote: > > > Hi, > > > > > > thank you for submitting this. > > > > > > I merged this and for me, the flash image couldn't be generated > > > either. The > > > reason for that is that we allocate a partition of a fixed size > > > (which is > > > ~700MB) right now. The system is extracted onto that partition > > > and all is put > > > into the image which then is small enough to fit on a 1GB storage > > > device. As > > > soon as the system boots up for the first time, it increases the > > > partition to > > > maximum size. > > > > > > However, with adding Python 3 to the core system, it didn't fit > > > into the 700MB > > > any more. I therefore made it an add-on package which is still > > > rather huge > > > (~20MB). Is there any requirement this should be in the core > > > distribution? AFAIK > > > nothing is using this by default, hence it could easily be an > > > add-on. > > > > > > Best, > > > -Michael > > > > > > On Mon, 2017-01-23 at 16:17 +0100, Jonatan Schlag wrote: > > > > Hi, > > > > the following patches include python3 in ipfire. > > > > > > > > Unfortunately, the flash image build no more. The build fails > > > > with a > > > > tar > > > > error complaining about to less disk space. I did not found out > > > > what the > > > > problem is, so somebody else has to investigate time into this > > > > problem > > > > to find a solution. > > > > > > > > Regards Jonatan > > > > > > > > > > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-01-29 19:24 UTC | newest] Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2017-01-23 15:17 Python3 Jonatan Schlag 2017-01-23 15:17 ` [PATCH 1/2] Prepare for python3 Jonatan Schlag 2017-01-27 12:33 ` Python3 Michael Tremer 2017-01-28 8:33 ` Python3 Matthias Fischer 2017-01-28 17:48 ` Python3 Matthias Fischer 2017-01-29 19:24 ` Python3 Michael Tremer
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox