Re: How to install ReviewBoard from github source code?

2023-11-08 Thread David Trowbridge
You should not be using "setup.py install" from within a source tree.
Either set up a development environment as per the instructions and then
use "setup.py bdist_wheel" in order to build a package that is installable
in your production environment using pip, or install our pre-built packages.

David

On Wed, Nov 8, 2023 at 11:43 AM Work Bot  wrote:

> Hi,
>
> The doc is very helpful. Thanks for that! Beyond that, I want to check if
> my workflow is correct:
>
> I git cloned repository from ReviewBoard(ex. GitHub -
> reviewboard/reviewboard at release-5.0.x
> ), "cd"
> into the corresponding directory, and then "pip install ." there. It seems
> like pip is able to use the setup.py(from ReviewBoard) to complete the
> installation, and I can see ReviewBoard module is installed successfully
> with "pip show reviewboard". Is this considered to be a "correct" workflow?
> Since I do encounter a lot of python problems later when I try to bring up
> reviewboard page, so I want to make sure my initial setups are correct.
>
> Meanwhile, when I tried the same steps on another Debian machine, I
> received "Error: failed buiding wheel for RewiewBoard" and "Legacy
> install failure" errors. Do you have any suggestions for these?
>
>
> Thanks a lot!!
>
> On Thursday, November 2, 2023 at 12:47:10 PM UTC-4 Work Bot wrote:
>
>> Thanks! I will spend some time on these two docs.
>>
>> On Thursday, November 2, 2023 at 11:54:58 AM UTC-4 David Trowbridge wrote:
>>
>>> Hi,
>>>
>>> We do have a guide for this at
>>> https://www.notion.so/reviewboard/Getting-Started-da208d46de1d47d8b38e8b5ddcb3dd44
>>>
>>> That said, I highly recommend that you use the extension framework to
>>> make any "adjustments" you need, rather than modify Review Board itself.
>>> Custom patches make it very difficult to perform any upgrades in the
>>> future, and make it hard for us to diagnose or assist with any issues you
>>> may encounter. Documentation for that can be found at
>>> https://www.reviewboard.org/docs/manual/latest/extending/
>>>
>>> David
>>>
>>> On Thu, Nov 2, 2023 at 9:35 AM Work Bot  wrote:
>>>
 Hi David,

 I rethink & planned my requirements and I think I do need to build from
 source because I need to work on Review Board itself, adjusting multiple
 things. In that case, can you point me to a place that I can follow to
 build & install from your Review Board source code?

 Thanks so much!

 On Monday, October 30, 2023 at 7:08:47 PM UTC-4 David Trowbridge wrote:

> You can use pip to install a specific version:
>
> pip3 install ReviewBoard==5.0.5
>
> Building from source is a much more complicated thing, and would only
> be necessary if you were working on Review Board itself.
>
> David
>
> On Mon, Oct 30, 2023 at 5:01 PM Work Bot  wrote:
>
>> Yes, I plan to install a specific version of RB (for example 5.0.5)
>> instead of the latest one. I think I figured out a workaround through
>> python setup.py file,
>>
>> On Thursday, October 12, 2023 at 2:34:15 PM UTC-4 David Trowbridge
>> wrote:
>>
>>> Hi,
>>>
>>> Is there a reason why you're looking to install from the git
>>> repository instead of the published releases? The install documentation 
>>> you
>>> linked to should be the correct process for most people.
>>>
>>> David
>>>
>>> On Thu, Oct 12, 2023 at 12:30 PM Work Bot 
>>> wrote:
>>>
 Hi,

 I am trying to find instructions to install ReviewBoard 5 on a
 Linux machine through source code. For instance, I want to 
 clone/download
 ReviewBoard from following links:
 - GitHub - reviewboard/reviewboard: An extensible and friendly
 code review tool for projects and companies of all sizes.
 
 - Index of /releases/ReviewBoard/5.0/
 
 and install them accordingly.

 However, I can only find this (Installing on Linux | Review Board
 latest Documentation | Review Board
 )
 instruction which tells me to install through "*pip3 install
 ReviewBoard"*.

 Are there any other more information that can help me success the
 installation process? Thanks!

 --
 Supercharge your Review Board with Power Pack:
 https://www.reviewboard.org/powerpack/
 Want us to host Review Board for you? Check out RBCommons:
 https://rbcommons.com/
 Happy user? Let us know! https://www.reviewboard.org/users/
 ---
 You received this message because you are subscribed to the Google
 Groups "Review Board Community" group.

Re: How to install ReviewBoard from github source code?

2023-11-08 Thread Work Bot
Hi,

The doc is very helpful. Thanks for that! Beyond that, I want to check if 
my workflow is correct:

I git cloned repository from ReviewBoard(ex. GitHub - 
reviewboard/reviewboard at release-5.0.x 
), "cd" into 
the corresponding directory, and then "pip install ." there. It seems like 
pip is able to use the setup.py(from ReviewBoard) to complete the 
installation, and I can see ReviewBoard module is installed successfully 
with "pip show reviewboard". Is this considered to be a "correct" workflow? 
Since I do encounter a lot of python problems later when I try to bring up 
reviewboard page, so I want to make sure my initial setups are correct. 

Meanwhile, when I tried the same steps on another Debian machine, I 
received "Error: failed buiding wheel for RewiewBoard" and "Legacy install 
failure" errors. Do you have any suggestions for these?
 

Thanks a lot!!

On Thursday, November 2, 2023 at 12:47:10 PM UTC-4 Work Bot wrote:

> Thanks! I will spend some time on these two docs.
>
> On Thursday, November 2, 2023 at 11:54:58 AM UTC-4 David Trowbridge wrote:
>
>> Hi,
>>
>> We do have a guide for this at 
>> https://www.notion.so/reviewboard/Getting-Started-da208d46de1d47d8b38e8b5ddcb3dd44
>>
>> That said, I highly recommend that you use the extension framework to 
>> make any "adjustments" you need, rather than modify Review Board itself. 
>> Custom patches make it very difficult to perform any upgrades in the 
>> future, and make it hard for us to diagnose or assist with any issues you 
>> may encounter. Documentation for that can be found at 
>> https://www.reviewboard.org/docs/manual/latest/extending/
>>
>> David
>>
>> On Thu, Nov 2, 2023 at 9:35 AM Work Bot  wrote:
>>
>>> Hi David,
>>>
>>> I rethink & planned my requirements and I think I do need to build from 
>>> source because I need to work on Review Board itself, adjusting multiple 
>>> things. In that case, can you point me to a place that I can follow to 
>>> build & install from your Review Board source code?
>>>
>>> Thanks so much!
>>>
>>> On Monday, October 30, 2023 at 7:08:47 PM UTC-4 David Trowbridge wrote:
>>>
 You can use pip to install a specific version:

 pip3 install ReviewBoard==5.0.5

 Building from source is a much more complicated thing, and would only 
 be necessary if you were working on Review Board itself.

 David

 On Mon, Oct 30, 2023 at 5:01 PM Work Bot  wrote:

> Yes, I plan to install a specific version of RB (for example 5.0.5) 
> instead of the latest one. I think I figured out a workaround through 
> python setup.py file,
>
> On Thursday, October 12, 2023 at 2:34:15 PM UTC-4 David Trowbridge 
> wrote:
>
>> Hi,
>>
>> Is there a reason why you're looking to install from the git 
>> repository instead of the published releases? The install documentation 
>> you 
>> linked to should be the correct process for most people.
>>
>> David
>>
>> On Thu, Oct 12, 2023 at 12:30 PM Work Bot  
>> wrote:
>>
>>> Hi, 
>>>
>>> I am trying to find instructions to install ReviewBoard 5 on a Linux 
>>> machine through source code. For instance, I want to clone/download 
>>> ReviewBoard from following links: 
>>> - GitHub - reviewboard/reviewboard: An extensible and friendly code 
>>> review tool for projects and companies of all sizes. 
>>> 
>>> - Index of /releases/ReviewBoard/5.0/ 
>>> 
>>> and install them accordingly.
>>>
>>> However, I can only find this (Installing on Linux | Review Board 
>>> latest Documentation | Review Board 
>>> )
>>>  
>>> instruction which tells me to install through "*pip3 install 
>>> ReviewBoard"*.
>>>
>>> Are there any other more information that can help me success the 
>>> installation process? Thanks!
>>>
>>> -- 
>>> Supercharge your Review Board with Power Pack: 
>>> https://www.reviewboard.org/powerpack/
>>> Want us to host Review Board for you? Check out RBCommons: 
>>> https://rbcommons.com/
>>> Happy user? Let us know! https://www.reviewboard.org/users/
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Review Board Community" group.
>>> To unsubscribe from this group and stop receiving emails from it, 
>>> send an email to reviewboard...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com
>>>  
>>> 

Re: How to install ReviewBoard from github source code?

2023-11-07 Thread Work Bot
Hi,

The doc is very helpful. Thanks for that! Beyond that, I want to check if 
my workflow is correct:

I git cloned repository from ReviewBoard(ex. GitHub - 
reviewboard/reviewboard at release-5.0.x 
), "cd" into 
the corresponding directory, and then "pip install ." there. It seems like 
pip is able to use the setup.py(from ReviewBoard) to complete the 
installation, and I can see ReviewBoard module is installed successfully 
with "pip show reviewboard". Is this considered to be a "correct" workflow? 
Since I do encounter a lot of python problems later when I try to bring up 
reviewboard page, so I want to make sure my initial setups are correct. 

Thanks a lot!!

On Thursday, November 2, 2023 at 12:47:10 PM UTC-4 Work Bot wrote:

> Thanks! I will spend some time on these two docs.
>
> On Thursday, November 2, 2023 at 11:54:58 AM UTC-4 David Trowbridge wrote:
>
>> Hi,
>>
>> We do have a guide for this at 
>> https://www.notion.so/reviewboard/Getting-Started-da208d46de1d47d8b38e8b5ddcb3dd44
>>
>> That said, I highly recommend that you use the extension framework to 
>> make any "adjustments" you need, rather than modify Review Board itself. 
>> Custom patches make it very difficult to perform any upgrades in the 
>> future, and make it hard for us to diagnose or assist with any issues you 
>> may encounter. Documentation for that can be found at 
>> https://www.reviewboard.org/docs/manual/latest/extending/
>>
>> David
>>
>> On Thu, Nov 2, 2023 at 9:35 AM Work Bot  wrote:
>>
>>> Hi David,
>>>
>>> I rethink & planned my requirements and I think I do need to build from 
>>> source because I need to work on Review Board itself, adjusting multiple 
>>> things. In that case, can you point me to a place that I can follow to 
>>> build & install from your Review Board source code?
>>>
>>> Thanks so much!
>>>
>>> On Monday, October 30, 2023 at 7:08:47 PM UTC-4 David Trowbridge wrote:
>>>
 You can use pip to install a specific version:

 pip3 install ReviewBoard==5.0.5

 Building from source is a much more complicated thing, and would only 
 be necessary if you were working on Review Board itself.

 David

 On Mon, Oct 30, 2023 at 5:01 PM Work Bot  wrote:

> Yes, I plan to install a specific version of RB (for example 5.0.5) 
> instead of the latest one. I think I figured out a workaround through 
> python setup.py file,
>
> On Thursday, October 12, 2023 at 2:34:15 PM UTC-4 David Trowbridge 
> wrote:
>
>> Hi,
>>
>> Is there a reason why you're looking to install from the git 
>> repository instead of the published releases? The install documentation 
>> you 
>> linked to should be the correct process for most people.
>>
>> David
>>
>> On Thu, Oct 12, 2023 at 12:30 PM Work Bot  
>> wrote:
>>
>>> Hi, 
>>>
>>> I am trying to find instructions to install ReviewBoard 5 on a Linux 
>>> machine through source code. For instance, I want to clone/download 
>>> ReviewBoard from following links: 
>>> - GitHub - reviewboard/reviewboard: An extensible and friendly code 
>>> review tool for projects and companies of all sizes. 
>>> 
>>> - Index of /releases/ReviewBoard/5.0/ 
>>> 
>>> and install them accordingly.
>>>
>>> However, I can only find this (Installing on Linux | Review Board 
>>> latest Documentation | Review Board 
>>> )
>>>  
>>> instruction which tells me to install through "*pip3 install 
>>> ReviewBoard"*.
>>>
>>> Are there any other more information that can help me success the 
>>> installation process? Thanks!
>>>
>>> -- 
>>> Supercharge your Review Board with Power Pack: 
>>> https://www.reviewboard.org/powerpack/
>>> Want us to host Review Board for you? Check out RBCommons: 
>>> https://rbcommons.com/
>>> Happy user? Let us know! https://www.reviewboard.org/users/
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Review Board Community" group.
>>> To unsubscribe from this group and stop receiving emails from it, 
>>> send an email to reviewboard...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>> -- 
> Supercharge your Review Board with Power Pack: 
> https://www.reviewboard.org/powerpack/
> Want us to host Review Board for you? Check out RBCommons: 

Re: How to install ReviewBoard from github source code?

2023-11-02 Thread David Trowbridge
Hi,

We do have a guide for this at
https://www.notion.so/reviewboard/Getting-Started-da208d46de1d47d8b38e8b5ddcb3dd44

That said, I highly recommend that you use the extension framework to make
any "adjustments" you need, rather than modify Review Board itself. Custom
patches make it very difficult to perform any upgrades in the future, and
make it hard for us to diagnose or assist with any issues you may
encounter. Documentation for that can be found at
https://www.reviewboard.org/docs/manual/latest/extending/

David

On Thu, Nov 2, 2023 at 9:35 AM Work Bot  wrote:

> Hi David,
>
> I rethink & planned my requirements and I think I do need to build from
> source because I need to work on Review Board itself, adjusting multiple
> things. In that case, can you point me to a place that I can follow to
> build & install from your Review Board source code?
>
> Thanks so much!
>
> On Monday, October 30, 2023 at 7:08:47 PM UTC-4 David Trowbridge wrote:
>
>> You can use pip to install a specific version:
>>
>> pip3 install ReviewBoard==5.0.5
>>
>> Building from source is a much more complicated thing, and would only be
>> necessary if you were working on Review Board itself.
>>
>> David
>>
>> On Mon, Oct 30, 2023 at 5:01 PM Work Bot  wrote:
>>
>>> Yes, I plan to install a specific version of RB (for example 5.0.5)
>>> instead of the latest one. I think I figured out a workaround through
>>> python setup.py file,
>>>
>>> On Thursday, October 12, 2023 at 2:34:15 PM UTC-4 David Trowbridge wrote:
>>>
 Hi,

 Is there a reason why you're looking to install from the git repository
 instead of the published releases? The install documentation you linked to
 should be the correct process for most people.

 David

 On Thu, Oct 12, 2023 at 12:30 PM Work Bot  wrote:

> Hi,
>
> I am trying to find instructions to install ReviewBoard 5 on a Linux
> machine through source code. For instance, I want to clone/download
> ReviewBoard from following links:
> - GitHub - reviewboard/reviewboard: An extensible and friendly code
> review tool for projects and companies of all sizes.
> 
> - Index of /releases/ReviewBoard/5.0/
> 
> and install them accordingly.
>
> However, I can only find this (Installing on Linux | Review Board
> latest Documentation | Review Board
> )
> instruction which tells me to install through "*pip3 install
> ReviewBoard"*.
>
> Are there any other more information that can help me success the
> installation process? Thanks!
>
> --
> Supercharge your Review Board with Power Pack:
> https://www.reviewboard.org/powerpack/
> Want us to host Review Board for you? Check out RBCommons:
> https://rbcommons.com/
> Happy user? Let us know! https://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google
> Groups "Review Board Community" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to reviewboard...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com
> 
> .
>
 --
>>> Supercharge your Review Board with Power Pack:
>>> https://www.reviewboard.org/powerpack/
>>> Want us to host Review Board for you? Check out RBCommons:
>>> https://rbcommons.com/
>>> Happy user? Let us know! https://www.reviewboard.org/users/
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "Review Board Community" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to reviewboard...@googlegroups.com.
>>>
>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/reviewboard/b28408e0-b4f1-4950-8745-2abe7e6fe780n%40googlegroups.com
>>> 
>>> .
>>>
>> --
> Supercharge your Review Board with Power Pack:
> https://www.reviewboard.org/powerpack/
> Want us to host Review Board for you? Check out RBCommons:
> https://rbcommons.com/
> Happy user? Let us know! https://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups
> "Review Board Community" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to reviewboard+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> 

Re: How to install ReviewBoard from github source code?

2023-11-02 Thread Work Bot
Thanks! I will spend some time on these two docs.

On Thursday, November 2, 2023 at 11:54:58 AM UTC-4 David Trowbridge wrote:

> Hi,
>
> We do have a guide for this at 
> https://www.notion.so/reviewboard/Getting-Started-da208d46de1d47d8b38e8b5ddcb3dd44
>
> That said, I highly recommend that you use the extension framework to make 
> any "adjustments" you need, rather than modify Review Board itself. Custom 
> patches make it very difficult to perform any upgrades in the future, and 
> make it hard for us to diagnose or assist with any issues you may 
> encounter. Documentation for that can be found at 
> https://www.reviewboard.org/docs/manual/latest/extending/
>
> David
>
> On Thu, Nov 2, 2023 at 9:35 AM Work Bot  wrote:
>
>> Hi David,
>>
>> I rethink & planned my requirements and I think I do need to build from 
>> source because I need to work on Review Board itself, adjusting multiple 
>> things. In that case, can you point me to a place that I can follow to 
>> build & install from your Review Board source code?
>>
>> Thanks so much!
>>
>> On Monday, October 30, 2023 at 7:08:47 PM UTC-4 David Trowbridge wrote:
>>
>>> You can use pip to install a specific version:
>>>
>>> pip3 install ReviewBoard==5.0.5
>>>
>>> Building from source is a much more complicated thing, and would only be 
>>> necessary if you were working on Review Board itself.
>>>
>>> David
>>>
>>> On Mon, Oct 30, 2023 at 5:01 PM Work Bot  wrote:
>>>
 Yes, I plan to install a specific version of RB (for example 5.0.5) 
 instead of the latest one. I think I figured out a workaround through 
 python setup.py file,

 On Thursday, October 12, 2023 at 2:34:15 PM UTC-4 David Trowbridge 
 wrote:

> Hi,
>
> Is there a reason why you're looking to install from the git 
> repository instead of the published releases? The install documentation 
> you 
> linked to should be the correct process for most people.
>
> David
>
> On Thu, Oct 12, 2023 at 12:30 PM Work Bot  
> wrote:
>
>> Hi, 
>>
>> I am trying to find instructions to install ReviewBoard 5 on a Linux 
>> machine through source code. For instance, I want to clone/download 
>> ReviewBoard from following links: 
>> - GitHub - reviewboard/reviewboard: An extensible and friendly code 
>> review tool for projects and companies of all sizes. 
>> 
>> - Index of /releases/ReviewBoard/5.0/ 
>> 
>> and install them accordingly.
>>
>> However, I can only find this (Installing on Linux | Review Board 
>> latest Documentation | Review Board 
>> )
>>  
>> instruction which tells me to install through "*pip3 install 
>> ReviewBoard"*.
>>
>> Are there any other more information that can help me success the 
>> installation process? Thanks!
>>
>> -- 
>> Supercharge your Review Board with Power Pack: 
>> https://www.reviewboard.org/powerpack/
>> Want us to host Review Board for you? Check out RBCommons: 
>> https://rbcommons.com/
>> Happy user? Let us know! https://www.reviewboard.org/users/
>> --- 
>> You received this message because you are subscribed to the Google 
>> Groups "Review Board Community" group.
>> To unsubscribe from this group and stop receiving emails from it, 
>> send an email to reviewboard...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com
>>  
>> 
>> .
>>
> -- 
 Supercharge your Review Board with Power Pack: 
 https://www.reviewboard.org/powerpack/
 Want us to host Review Board for you? Check out RBCommons: 
 https://rbcommons.com/
 Happy user? Let us know! https://www.reviewboard.org/users/
 --- 
 You received this message because you are subscribed to the Google 
 Groups "Review Board Community" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to reviewboard...@googlegroups.com.

>>> To view this discussion on the web visit 
 https://groups.google.com/d/msgid/reviewboard/b28408e0-b4f1-4950-8745-2abe7e6fe780n%40googlegroups.com
  
 
 .

>>> -- 
>> Supercharge your Review Board with Power Pack: 
>> https://www.reviewboard.org/powerpack/
>> Want us to host Review Board for you? Check out RBCommons: 
>> https://rbcommons.com/
>> Happy user? Let us know! 

Re: How to install ReviewBoard from github source code?

2023-11-02 Thread Work Bot
Hi David,

I rethink & planned my requirements and I think I do need to build from 
source because I need to work on Review Board itself, adjusting multiple 
things. In that case, can you point me to a place that I can follow to 
build & install from your Review Board source code?

Thanks so much!

On Monday, October 30, 2023 at 7:08:47 PM UTC-4 David Trowbridge wrote:

> You can use pip to install a specific version:
>
> pip3 install ReviewBoard==5.0.5
>
> Building from source is a much more complicated thing, and would only be 
> necessary if you were working on Review Board itself.
>
> David
>
> On Mon, Oct 30, 2023 at 5:01 PM Work Bot  wrote:
>
>> Yes, I plan to install a specific version of RB (for example 5.0.5) 
>> instead of the latest one. I think I figured out a workaround through 
>> python setup.py file,
>>
>> On Thursday, October 12, 2023 at 2:34:15 PM UTC-4 David Trowbridge wrote:
>>
>>> Hi,
>>>
>>> Is there a reason why you're looking to install from the git repository 
>>> instead of the published releases? The install documentation you linked to 
>>> should be the correct process for most people.
>>>
>>> David
>>>
>>> On Thu, Oct 12, 2023 at 12:30 PM Work Bot  wrote:
>>>
 Hi, 

 I am trying to find instructions to install ReviewBoard 5 on a Linux 
 machine through source code. For instance, I want to clone/download 
 ReviewBoard from following links: 
 - GitHub - reviewboard/reviewboard: An extensible and friendly code 
 review tool for projects and companies of all sizes. 
 
 - Index of /releases/ReviewBoard/5.0/ 
 
 and install them accordingly.

 However, I can only find this (Installing on Linux | Review Board 
 latest Documentation | Review Board 
 )
  
 instruction which tells me to install through "*pip3 install 
 ReviewBoard"*.

 Are there any other more information that can help me success the 
 installation process? Thanks!

 -- 
 Supercharge your Review Board with Power Pack: 
 https://www.reviewboard.org/powerpack/
 Want us to host Review Board for you? Check out RBCommons: 
 https://rbcommons.com/
 Happy user? Let us know! https://www.reviewboard.org/users/
 --- 
 You received this message because you are subscribed to the Google 
 Groups "Review Board Community" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to reviewboard...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com
  
 
 .

>>> -- 
>> Supercharge your Review Board with Power Pack: 
>> https://www.reviewboard.org/powerpack/
>> Want us to host Review Board for you? Check out RBCommons: 
>> https://rbcommons.com/
>> Happy user? Let us know! https://www.reviewboard.org/users/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "Review Board Community" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to reviewboard...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/reviewboard/b28408e0-b4f1-4950-8745-2abe7e6fe780n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"Review Board Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/reviewboard/25138e50-89a4-4320-a3ec-619e83038724n%40googlegroups.com.


Re: How to install ReviewBoard from github source code?

2023-10-30 Thread David Trowbridge
You can use pip to install a specific version:

pip3 install ReviewBoard==5.0.5

Building from source is a much more complicated thing, and would only be
necessary if you were working on Review Board itself.

David

On Mon, Oct 30, 2023 at 5:01 PM Work Bot  wrote:

> Yes, I plan to install a specific version of RB (for example 5.0.5)
> instead of the latest one. I think I figured out a workaround through
> python setup.py file,
>
> On Thursday, October 12, 2023 at 2:34:15 PM UTC-4 David Trowbridge wrote:
>
>> Hi,
>>
>> Is there a reason why you're looking to install from the git repository
>> instead of the published releases? The install documentation you linked to
>> should be the correct process for most people.
>>
>> David
>>
>> On Thu, Oct 12, 2023 at 12:30 PM Work Bot  wrote:
>>
>>> Hi,
>>>
>>> I am trying to find instructions to install ReviewBoard 5 on a Linux
>>> machine through source code. For instance, I want to clone/download
>>> ReviewBoard from following links:
>>> - GitHub - reviewboard/reviewboard: An extensible and friendly code
>>> review tool for projects and companies of all sizes.
>>> 
>>> - Index of /releases/ReviewBoard/5.0/
>>> 
>>> and install them accordingly.
>>>
>>> However, I can only find this (Installing on Linux | Review Board
>>> latest Documentation | Review Board
>>> )
>>> instruction which tells me to install through "*pip3 install
>>> ReviewBoard"*.
>>>
>>> Are there any other more information that can help me success the
>>> installation process? Thanks!
>>>
>>> --
>>> Supercharge your Review Board with Power Pack:
>>> https://www.reviewboard.org/powerpack/
>>> Want us to host Review Board for you? Check out RBCommons:
>>> https://rbcommons.com/
>>> Happy user? Let us know! https://www.reviewboard.org/users/
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "Review Board Community" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to reviewboard...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com
>>> 
>>> .
>>>
>> --
> Supercharge your Review Board with Power Pack:
> https://www.reviewboard.org/powerpack/
> Want us to host Review Board for you? Check out RBCommons:
> https://rbcommons.com/
> Happy user? Let us know! https://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups
> "Review Board Community" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to reviewboard+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/reviewboard/b28408e0-b4f1-4950-8745-2abe7e6fe780n%40googlegroups.com
> 
> .
>

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"Review Board Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/reviewboard/CAFS3VNV7f53i%3DtzKAY6XBENF7jFpKQtZNnQuRSFbmvUFHVcjsA%40mail.gmail.com.


Re: How to install ReviewBoard from github source code?

2023-10-30 Thread Work Bot
Yes, I plan to install a specific version of RB (for example 5.0.5) instead 
of the latest one. I think I figured out a workaround through python 
setup.py file,

On Thursday, October 12, 2023 at 2:34:15 PM UTC-4 David Trowbridge wrote:

> Hi,
>
> Is there a reason why you're looking to install from the git repository 
> instead of the published releases? The install documentation you linked to 
> should be the correct process for most people.
>
> David
>
> On Thu, Oct 12, 2023 at 12:30 PM Work Bot  wrote:
>
>> Hi, 
>>
>> I am trying to find instructions to install ReviewBoard 5 on a Linux 
>> machine through source code. For instance, I want to clone/download 
>> ReviewBoard from following links: 
>> - GitHub - reviewboard/reviewboard: An extensible and friendly code 
>> review tool for projects and companies of all sizes. 
>> 
>> - Index of /releases/ReviewBoard/5.0/ 
>> 
>> and install them accordingly.
>>
>> However, I can only find this (Installing on Linux | Review Board latest 
>> Documentation | Review Board 
>> ) 
>> instruction which tells me to install through "*pip3 install 
>> ReviewBoard"*.
>>
>> Are there any other more information that can help me success the 
>> installation process? Thanks!
>>
>> -- 
>> Supercharge your Review Board with Power Pack: 
>> https://www.reviewboard.org/powerpack/
>> Want us to host Review Board for you? Check out RBCommons: 
>> https://rbcommons.com/
>> Happy user? Let us know! https://www.reviewboard.org/users/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "Review Board Community" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to reviewboard...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"Review Board Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/reviewboard/b28408e0-b4f1-4950-8745-2abe7e6fe780n%40googlegroups.com.


Re: How to install ReviewBoard from github source code?

2023-10-12 Thread David Trowbridge
Hi,

Is there a reason why you're looking to install from the git repository
instead of the published releases? The install documentation you linked to
should be the correct process for most people.

David

On Thu, Oct 12, 2023 at 12:30 PM Work Bot  wrote:

> Hi,
>
> I am trying to find instructions to install ReviewBoard 5 on a Linux
> machine through source code. For instance, I want to clone/download
> ReviewBoard from following links:
> - GitHub - reviewboard/reviewboard: An extensible and friendly code
> review tool for projects and companies of all sizes.
> 
> - Index of /releases/ReviewBoard/5.0/
> 
> and install them accordingly.
>
> However, I can only find this (Installing on Linux | Review Board latest
> Documentation | Review Board
> )
> instruction which tells me to install through "*pip3 install ReviewBoard"*
> .
>
> Are there any other more information that can help me success the
> installation process? Thanks!
>
> --
> Supercharge your Review Board with Power Pack:
> https://www.reviewboard.org/powerpack/
> Want us to host Review Board for you? Check out RBCommons:
> https://rbcommons.com/
> Happy user? Let us know! https://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups
> "Review Board Community" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to reviewboard+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com
> 
> .
>

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"Review Board Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/reviewboard/CAFS3VNWZWkVa2iMDxYk90FojrPbPMyVn%2Bh-A9%3DjzrDvjDRHT5A%40mail.gmail.com.


How to install ReviewBoard from github source code?

2023-10-12 Thread Work Bot
Hi, 

I am trying to find instructions to install ReviewBoard 5 on a Linux 
machine through source code. For instance, I want to clone/download 
ReviewBoard from following links: 
- GitHub - reviewboard/reviewboard: An extensible and friendly code review 
tool for projects and companies of all sizes. 

- Index of /releases/ReviewBoard/5.0/ 

and install them accordingly.

However, I can only find this (Installing on Linux | Review Board latest 
Documentation | Review Board 
) 
instruction which tells me to install through "*pip3 install ReviewBoard"*.

Are there any other more information that can help me success the 
installation process? Thanks!

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"Review Board Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/reviewboard/b2f3368c-b97b-4993-9949-01e6ee847e8fn%40googlegroups.com.