[Scons-users] How do I send proposed changes to wiki
William Blevins
wblevins001 at gmail.com
Tue Aug 11 12:47:30 EDT 2015
I assume you have a clone of the BitBucket repository?
You need to make a fork of SCons under your BitBucket account. Commit your
changes plus tests, etc to your fork. Then submit a pull request from your
fork to SCons proper.
V/R,
William
On Tue, Aug 11, 2015 at 12:28 PM, James Rinkevich <rinkevichjm at gmail.com>
wrote:
> They are changes to the auto config recipes for AC_C_SYS_LARGEFILES and
> AC_C_BIGENDIAN
> I can't push them because that would require username and password.
>
> Sent from my iPhone
>
> > On Aug 10, 2015, at 10:46 PM, scons-users-request at scons.org wrote:
> >
> > Send Scons-users mailing list submissions to
> > scons-users at scons.org
> >
> > To subscribe or unsubscribe via the World Wide Web, visit
> > https://pairlist4.pair.net/mailman/listinfo/scons-users
> > or, via email, send a message with subject or body 'help' to
> > scons-users-request at scons.org
> >
> > You can reach the person managing the list at
> > scons-users-owner at scons.org
> >
> > When replying, please edit your Subject line so it is more specific
> > than "Re: Contents of Scons-users digest..."
> >
> >
> > Today's Topics:
> >
> > 1. How do I send proposed changes to wiki (James Rinkevich)
> > 2. Re: How do I send proposed changes to wiki (Bill Deegan)
> > 3. Re: SCons 2.3.6: SharedLibrary + SHLIBVERSION messes up with
> > dependencies (William Blevins)
> >
> >
> > ----------------------------------------------------------------------
> >
> > Message: 1
> > Date: Mon, 10 Aug 2015 08:59:14 -0700
> > From: James Rinkevich <rinkevichjm at gmail.com>
> > To: scons-users at scons.org
> > Subject: [Scons-users] How do I send proposed changes to wiki
> > Message-ID:
> > <CANw3BEf0wk0hi_OauNUWf7SkBfRu8=5C2pcUFch6uRYD_uHHSg at mail.gmail.com>
> > Content-Type: text/plain; charset="utf-8"
> >
> > I cloned the wiki and changed the files. but how do I send them back in?
> > -------------- next part --------------
> > An HTML attachment was scrubbed...
> > URL: <
> https://pairlist4.pair.net/pipermail/scons-users/attachments/20150810/faffa9d6/attachment-0001.html
> >
> >
> > ------------------------------
> >
> > Message: 2
> > Date: Mon, 10 Aug 2015 09:24:35 -0700
> > From: Bill Deegan <bill at baddogconsulting.com>
> > To: SCons users mailing list <scons-users at scons.org>
> > Subject:
> > Message-ID:
> > <CAEyG4CFLJ31uPW6e--hEqwr63zieSQtUE+i+QJC3Fxb0kWYh7Q at mail.gmail.com>
> > Content-Type: text/plain; charset="utf-8"
> >
> > As in hg clone.... ?
> >
> > hg push should do the trick.
> > What changes have you made?
> >
> > -Bill
> >
> > On Mon, Aug 10, 2015 at 8:59 AM, James Rinkevich <rinkevichjm at gmail.com>
> > wrote:
> >
> >> I cloned the wiki and changed the files. but how do I send them back in?
> >>
> >> _______________________________________________
> >> Scons-users mailing list
> >> Scons-users at scons.org
> >> https://pairlist4.pair.net/mailman/listinfo/scons-users
> > -------------- next part --------------
> > An HTML attachment was scrubbed...
> > URL: <
> https://pairlist4.pair.net/pipermail/scons-users/attachments/20150810/1b199243/attachment-0001.html
> >
> >
> > ------------------------------
> >
> > Message: 3
> > Date: Mon, 10 Aug 2015 21:47:16 -0400
> > From: William Blevins <wblevins001 at gmail.com>
> > To: SCons users mailing list <scons-users at scons.org>
> > Subject: Re: [Scons-users] SCons 2.3.6: SharedLibrary + SHLIBVERSION
> > messes up with dependencies
> > Message-ID:
> > <CALJHx114MAB-=nR_rQuDf_Ri8QVnV9A9g2Ac472xZ4mM_Yrp_g at mail.gmail.com>
> > Content-Type: text/plain; charset="utf-8"
> >
> > You still haven't provided much info about your configuration. What
> > platform are you on, etc...
> >
> > On Mon, Aug 10, 2015 at 10:31 AM, Pawe? Tomulik <ptomulik at meil.pw.edu.pl
> >
> > wrote:
> >
> >> W dniu 10.08.2015 o 11:55, Pawe? Tomulik pisze:
> >>> After recent upgrade of SCons my projects can't be built anymore.
> >>>
> >>> I use SharedLibrary builder with SHLIBVERSION argument, but now (2.3.6)
> >>> the softlinks generated by SharedLibrary are not seen as dependency.
> >>>
> >>> I attach a minimal example, that replicates the bug(?). The
> mini-project
> >>> builds one shared library (libfoo.so) and one program (main) which uses
> >>> the library. The Sconstruct is as simple as:
> >>>
> >>> env = Environment()
> >>> env.AppendUnique(CPPPATH = ['.'], LIBPATH = ['.'])
> >>> env.Program('main.cpp', LIBS = ['foo'])
> >>> env.SharedLibrary('foo', 'foo.cpp', SHLIBVERSION = '0.1.2')
> >>>
> >>>
> >>> The dependency tree for this mini-project is the following:
> >>>
> >>> +-.
> >>> +-SConstruct
> >>> +-foo.cpp
> >>> +-foo.hpp
> >>> +-foo.os
> >>> | +-foo.cpp
> >>> | +-/usr/bin/g++
> >>> +-libfoo.so
> >>> +-libfoo.so.0
> >>> | +-libfoo.so.0.1.2
> >>> | +-foo.os
> >>> | +-foo.cpp
> >>> | +-/usr/bin/g++
> >>> +-libfoo.so.0.1
> >>> | +-libfoo.so.0.1.2
> >>> | +-foo.os
> >>> | +-foo.cpp
> >>> | +-/usr/bin/g++
> >>> +-libfoo.so.0.1.2
> >>> | +-foo.os
> >>> | +-foo.cpp
> >>> | +-/usr/bin/g++
> >>> +-main
> >>> | +-main.o
> >>> | | +-main.cpp
> >>> | | +-foo.hpp
> >>> | | +-/usr/bin/g++
> >>> | +-/usr/bin/g++
> >>> +-main.cpp
> >>> +-main.o
> >>> +-main.cpp
> >>> +-foo.hpp
> >>> +-/usr/bin/g++
> >>>
> >>> Without SHLIBVERSION the poject builds without problem, and the
> >>> dependency tree is:
> >>>
> >>> +-.
> >>> +-SConstruct
> >>> +-foo.cpp
> >>> +-foo.hpp
> >>> +-foo.os
> >>> | +-foo.cpp
> >>> | +-/usr/bin/g++
> >>> +-libfoo.so
> >>> | +-foo.os
> >>> | +-foo.cpp
> >>> | +-/usr/bin/g++
> >>> +-main
> >>> | +-main.o
> >>> | | +-main.cpp
> >>> | | +-foo.hpp
> >>> | | +-/usr/bin/g++
> >>> | +-/usr/bin/g++
> >>> | +-libfoo.so
> >>> | +-foo.os
> >>> | +-foo.cpp
> >>> | +-/usr/bin/g++
> >>> +-main.cpp
> >>> +-main.o
> >>> +-main.cpp
> >>> +-foo.hpp
> >>> +-/usr/bin/g++
> >>>
> >>>
> >>> Is this a bug, or am I doing a mistake?
> >>>
> >>>
> >>>
> >>> _______________________________________________
> >>> Scons-users mailing list
> >>> Scons-users at scons.org
> >>> https://pairlist4.pair.net/mailman/listinfo/scons-users
> >>
> >> Dependency tree generated by 2.3.1 with SHLIBVERSION:
> >
> > If this worked on 2.3.4, then why did you need to go back to 2.3.1?
> >
> >
> >>
> >> +-.
> >> +-SConstruct
> >> +-foo.cpp
> >> +-foo.hpp
> >> +-foo.os
> >> | +-foo.cpp
> >> | +-/usr/bin/g++
> >> +-libfoo.so.0.1.2
> >> | +-foo.os
> >> | +-foo.cpp
> >> | +-/usr/bin/g++
> >> +-libfoo.so.0
> >> | +-libfoo.so.0.1.2
> >> | +-foo.os
> >> | +-foo.cpp
> >> | +-/usr/bin/g++
> >> +-libfoo.so.0.1
> >> | +-libfoo.so.0.1.2
> >> | +-foo.os
> >> | +-foo.cpp
> >> | +-/usr/bin/g++
> >> +-libfoo.so.0.1.2
> >> | +-libfoo.so.0.1.2
> >> | +-foo.os
> >> | +-foo.cpp
> >> | +-/usr/bin/g++
> >> +-main
> >> | +-main.o
> >> | | +-main.cpp
> >> | | +-foo.hpp
> >> | | +-/usr/bin/g++
> >> | +-/usr/bin/g++
> >> | +-libfoo.so.0.1.2
> >> | +-foo.os
> >> | +-foo.cpp
> >> | +-/usr/bin/g++
> >> +-main.cpp
> >> +-main.o
> >> +-main.cpp
> >> +-foo.hpp
> >> +-/usr/bin/g++
> >>
> >>
> >> --
> >> Pawel Tomulik
> >> _______________________________________________
> >> Scons-users mailing list
> >> Scons-users at scons.org
> >> https://pairlist4.pair.net/mailman/listinfo/scons-users
> > -------------- next part --------------
> > An HTML attachment was scrubbed...
> > URL: <
> https://pairlist4.pair.net/pipermail/scons-users/attachments/20150810/559b1c82/attachment-0001.html
> >
> >
> > ------------------------------
> >
> > Subject: Digest Footer
> >
> > _______________________________________________
> > Scons-users mailing list
> > Scons-users at scons.org
> > https://pairlist4.pair.net/mailman/listinfo/scons-users
> >
> >
> > ------------------------------
> >
> > End of Scons-users Digest, Vol 42, Issue 22
> > *******************************************
> _______________________________________________
> Scons-users mailing list
> Scons-users at scons.org
> https://pairlist4.pair.net/mailman/listinfo/scons-users
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://pairlist4.pair.net/pipermail/scons-users/attachments/20150811/0ee053e7/attachment.html>
More information about the Scons-users
mailing list