digitalmars.D - dbuilder, pakage manager, dget
- bioinfornatics (21/21) May 26 2012 Dear,=20
- Jacob Carlborg (8/29) May 26 2012 I don't think a built tool and package manager should be in the same
- bioinfornatics (4/39) May 26 2012 pypy from python do both http://pypy.org/ get dependencies, build from
- bioinfornatics (1/1) May 26 2012 Fix link: http://pypi.python.org/pypi that is pypi and not pypy
- David (3/4) May 27 2012 Wrong it's PIP, http://pypi.python.org/pypi/pip/1.1
- Jacob Carlborg (5/7) May 27 2012 What does a python tool need to build, external libraries?
- Russel Winder (14/22) May 27 2012 pip (and easy_install) are package downloaders and installers, invoke
- Russel Winder (15/18) May 27 2012 I guess I should have added that because C and C++ can be used to
- =?UTF-8?B?Ik1pY2hhw6ts?= Larouche" (10/49) May 26 2012 Yes they should be separate tools but that's doesn't mean they
- Jacob Carlborg (4/6) May 27 2012 Of course they should work together.
Dear,=20 dbuilder: https://github.com/dbuilder-developers/dbuilder currently dbuilder works on Linux, Apple, Windows platform (at least) this tool allow to us to build easily lib, or desktop application It support // build, // install i think i will improve this tool to be use as a package manager, for this add to supported config file a new section --- [[dependenies]] [[[xxx] version_type=3D[version, tag, revision] repo_url=3Dhttps://github ...https://bitbucket ... tool=3D[git, hg, svn] version=3Dxx tag=3Dxx revision=3Dxx --- put the config file at root of repo for detect this file and use it if this config is not enough for to be used as config said to me what need to be added anyone is welcome
May 26 2012
On 2012-05-26 13:34, bioinfornatics wrote:Dear, dbuilder: https://github.com/dbuilder-developers/dbuilder currently dbuilder works on Linux, Apple, Windows platform (at least) this tool allow to us to build easily lib, or desktop application It support // build, // install i think i will improve this tool to be use as a package manager, for this add to supported config file a new section --- [[dependenies]] [[[xxx] version_type=[version, tag, revision] repo_url=https://github ...https://bitbucket ... tool=[git, hg, svn] version=xx tag=xx revision=xx --- put the config file at root of repo for detect this file and use it if this config is not enough for to be used as config said to me what need to be added anyone is welcomeI don't think a built tool and package manager should be in the same tool. A built tool works with individual files. A package manager works with package, i.e. complete libraries/tools/applications. I also think that in the long run both a build tool and a package manager needs to use a full programming language as their config files. -- /Jacob Carlborg
May 26 2012
Le samedi 26 mai 2012 =C3=A0 17:33 +0200, Jacob Carlborg a =C3=A9crit :On 2012-05-26 13:34, bioinfornatics wrote:=20Dear, dbuilder: https://github.com/dbuilder-developers/dbuilder currently dbuilder works on Linux, Apple, Windows platform (at least) this tool allow to us to build easily lib, or desktop application It support // build, // install i think i will improve this tool to be use as a package manager, for this add to supported config file a new section --- [[dependenies]] [[[xxx] version_type=3D[version, tag, revision] repo_url=3Dhttps://github ...https://bitbucket ... tool=3D[git, hg, svn] version=3Dxx tag=3Dxx revision=3Dxx --- put the config file at root of repo for detect this file and use it if this config is not enough for to be used as config said to me what need to be added anyone is welcome=20 I don't think a built tool and package manager should be in the same=20 tool. A built tool works with individual files. A package manager works=with package, i.e. complete libraries/tools/applications. =20 I also think that in the long run both a build tool and a package=20 manager needs to use a full programming language as their config files. =20pypy from python do both http://pypy.org/ get dependencies, build from setup script
May 26 2012
Fix link: http://pypi.python.org/pypi that is pypi and not pypy
May 26 2012
Am 26.05.2012 19:42, schrieb bioinfornatics:Fix link: http://pypi.python.org/pypi that is pypi and not pypyWrong it's PIP, http://pypi.python.org/pypi/pip/1.1 PyPi is just the index.
May 27 2012
On 2012-05-26 19:40, bioinfornatics wrote:pypy from python do both http://pypy.org/ get dependencies, build from setup scriptWhat does a python tool need to build, external libraries? In comparison Rubygems and Rake are to separate tools. -- /Jacob Carlborg
May 27 2012
On Sun, 2012-05-27 at 12:18 +0200, Jacob Carlborg wrote:On 2012-05-26 19:40, bioinfornatics wrote: =20pip (and easy_install) are package downloaders and installers, invoke bytecode generation of the installed, they are not build tools. The offerings for build tools from the Python arena are SCons and Waf. --=20 Russel. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D Dr Russel Winder t: +44 20 7585 2200 voip: sip:russel.winder ekiga.n= et 41 Buckmaster Road m: +44 7770 465 077 xmpp: russel winder.org.uk London SW11 1EN, UK w: www.russel.org.uk skype: russel_winderpypy from python do both http://pypy.org/ get dependencies, build from setup script=20 What does a python tool need to build, external libraries? =20 In comparison Rubygems and Rake are to separate tools.
May 27 2012
On Sun, 2012-05-27 at 13:33 +0100, Russel Winder wrote:pip (and easy_install) are package downloaders and installers, invoke bytecode generation of the installed, they are not build tools. The offerings for build tools from the Python arena are SCons and Waf.I guess I should have added that because C and C++ can be used to realize CPython PVM extensions, Python package installers have to know how to compile C and C++ code to shared objects / dynamically linked libraries. =20 --=20 Russel. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D Dr Russel Winder t: +44 20 7585 2200 voip: sip:russel.winder ekiga.n= et 41 Buckmaster Road m: +44 7770 465 077 xmpp: russel winder.org.uk London SW11 1EN, UK w: www.russel.org.uk skype: russel_winder
May 27 2012
On Saturday, 26 May 2012 at 15:33:27 UTC, Jacob Carlborg wrote:On 2012-05-26 13:34, bioinfornatics wrote:Yes they should be separate tools but that's doesn't mean they can't work together. Let's say you have a build configuration file and an package manager configuration file in the same folder. When you call the build process, if the dependencies aren't there, it calls the package manager to fetch all your dependencies and then it adds the required include and lib path in your build configuration. Adding an dependency to your project is now easier and doesn't require manual management.Dear, dbuilder: https://github.com/dbuilder-developers/dbuilder currently dbuilder works on Linux, Apple, Windows platform (at least) this tool allow to us to build easily lib, or desktop application It support // build, // install i think i will improve this tool to be use as a package manager, for this add to supported config file a new section --- [[dependenies]] [[[xxx] version_type=[version, tag, revision] repo_url=https://github ...https://bitbucket ... tool=[git, hg, svn] version=xx tag=xx revision=xx --- put the config file at root of repo for detect this file and use it if this config is not enough for to be used as config said to me what need to be added anyone is welcomeI don't think a built tool and package manager should be in the same tool. A built tool works with individual files. A package manager works with package, i.e. complete libraries/tools/applications. I also think that in the long run both a build tool and a package manager needs to use a full programming language as their config files.
May 26 2012
On 2012-05-27 03:22, "Michaƫl Larouche" <michael.larouche gmail.com>"Yes they should be separate tools but that's doesn't mean they can't work together.Of course they should work together. -- /Jacob Carlborg
May 27 2012