Thank you all for your reply,
I'm not familiar with this process , but I will try to find out how this works. Do I have to install git en download the complete source of the website, or can I only download the download.template change that and submit that somewhere ?
Marco
On 06-05-10 17:57, James Mckenzie wrote:
Hi WineDevs,
If make the packages for mandriva on sourceforge. And the text on the download page on the website (winehq,org) for mandriva is getting old. Who can I write a mail to change the text ? I already tried web-admin ad winehq.org some weeks ago but no reaction so far.
The source code for winehq is available. You then make the changes you feel are necessary to the source code, create a difference file and submit this to wine-patches.
Are you familiar with this process?
James McKenzie
On 05/09/2010 03:50 PM, marco wrote:
Thank you all for your reply,
Do I have to install git en download the complete source of the website?
Yes and yes. Here is the page with lots of details: http://wiki.winehq.org/GitWine
All you really need to do is: 1. Install git 2. Get WineHQ's source (assuming you want to put it into your home directory): $ cd ~ $ git clone git://source.winehq.org/git/website.git $ cd website.git 3. Set your complete name and e-mail address as it would appear on all your patches: $ git config --global user.name "Your Name" $ git config --global user.email "me@example.com" 4. Edit files as required 5. Make sure everything works. 6. Commit changes with: $ git commit -a 7. Create a patch to be sent to wine-patches mailing list: $ git format-patch --keep-subject HEAD^
Vitaliy.
Thank you,
That looks not very difficult. I think I can do it.
Marco
Op 10-5-10 5:22, Vitaliy Margolen schreef:
On 05/09/2010 03:50 PM, marco wrote:
Thank you all for your reply,
Do I have to install git en download the complete source of the website?
Yes and yes. Here is the page with lots of details: http://wiki.winehq.org/GitWine
All you really need to do is:
- Install git
- Get WineHQ's source (assuming you want to put it into your home directory): $ cd ~ $ git clone git://source.winehq.org/git/website.git $ cd website.git
- Set your complete name and e-mail address as it would appear on all your
patches: $ git config --global user.name "Your Name" $ git config --global user.email "me@example.com" 4. Edit files as required 5. Make sure everything works. 6. Commit changes with: $ git commit -a 7. Create a patch to be sent to wine-patches mailing list: $ git format-patch --keep-subject HEAD^
Vitaliy.