summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)AuthorFilesLines
2017-02-16bin/get-fixes-pick-list.sh: add new scriptEmil Velikov1-0/+61
The script parses the "Fixes" tags and nominates respective commit if applicable. Cc: "13.0 17.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2017-02-16bin/get-pick-list.sh: remove ancient way of nominating patchesEmil Velikov1-1/+1
The old way of nominating patches [NOTE: .*[Cc]andidate] was deprecated and has been unused for approx. 3 years. Cc: "13.0 17.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2017-02-16bin/get-pick-list.sh: limit `git grep ...' only as neededEmil Velikov1-2/+5
Analogous to previous commit. Cc: "13.0 17.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2017-02-16bin/get-typod-pick-list.sh: limit `git grep ...' to only as neededEmil Velikov1-2/+5
The currently used range HEAD..origin/master is far too broad. It looks for nominations within the already_landed list (branchpoint..HEAD). Similarly we look for already_landed whiting the [possible] nominations Rand branchpoint..origin/master. Improve things by limiting the look ups to the branch point. Cc: "13.0 17.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2017-02-16bin/get-extra-pick-list: rework to use already_picked listEmil Velikov1-8/+11
Currently we loop (git log --grep) to check if the fix has landed. We can simplify and make things faster by storing the already_picked list and grep ping through it. Slim down the message while we're here. Cc: "13.0 17.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2017-02-16bin/get-extra-pick-list: use git merge-base to get the branchpointEmil Velikov1-2/+1
Since mesa development history is linear and the only diversion is at the branchpoint. Thus we can drop the ad-hoc parsing and use git merge-base to retrieve it. Cc: "13.0 17.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
2017-01-13get-typod-pick-list.sh: add new scriptEmil Velikov1-0/+39
Typos do happen as people nominate patches for stable. This script aims to catch most of those. Due to the subtle nature of things, one has to pay special attention to the output, similar to get-extra-pick-list.sh. At the moment only the following is handled: grep -i "CC:.*mesa-dev" Cc: 12.0 13.0 <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
2016-08-31Introduce .editorconfigEric Engestrom1-0/+3
A few weeks ago, Jose Fonseca suggested [0] we use .editorconfig files to try and enforce the formatting of the code, to which Michel Dänzer suggested [1] we start by importing the existing .dir-locals.el settings. The first draft was discussed in the RFC [2]. These .editorconfig are a first step, one that has the advantage of requiring little to no intervention from the devs once the settings files are in place, but the settings are very limited. This does have the advantage of applying while the code is being written. This doesn't replace the need for more comprehensive formatting tools such as clang-format & clang-tidy, but those reformat the code after the fact. [0] https://lists.freedesktop.org/archives/mesa-dev/2016-June/121545.html [1] https://lists.freedesktop.org/archives/mesa-dev/2016-June/121639.html [2] https://lists.freedesktop.org/archives/mesa-dev/2016-July/123431.html Acked-by: Nicolai Hähnle <nicolai.haehnle@amd.com> Acked-by: Eric Anholt <eric@anholt.net> Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
2016-07-07bugzilla_mesa.sh: Drop "Bug " from sed commandEmil Velikov1-1/+1
After a recent Bugzilla update the word is no longer in the title. Thus the script ended up producing bogus HTML. Cc: "11.2 12.0" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
2016-02-29mesa; add get-extra-pick-list.sh script into bin/Emil Velikov1-0/+35
This is a very rudimentary script that checks if any of the applied cherry-picks have been referenced (fixed?) by another patch. With the latter either missing the stable tag or hasn't yet been picked. Cc: "11.1 11.2" <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2015-07-13bugzilla_mesa.sh: sort the bugs list by numberEmil Velikov1-8/+5
v2: Use change sed/sort based on Ilia's suggestion. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2013-07-31get-pick-list: Allow for non-whitespace between "CC:" and "mesa-stable"Carl Worth1-1/+1
We recently proposed a new syntax for stable-patch nominations such as: CC: "9.2 and 9.1" <mesa-stable@lists.freedesktop.org> and this has already appeared in the wild. So we extend the regular expression to pick this up as well.
2013-07-30get-pick-list.sh: Include commits mentionining "CC: mesa-stable..." in pick listCarl Worth1-1/+1
We recently adopted a new convention that patches can be nominated for the stable branch by including a line in the commit message as follows: CC: mesa-stable@lists.freedesktop.org This is a convenient syntax as "git send-email" will notice this line and automatically copy the resulting patch email to the mesa-stable mailing list. Here we extend the regular expression in the get-pick-list.sh script to also notice this pattern, (as well as the traditional "NOTE: This patch is a candidate..." form.
2013-05-01mesa: add usage examples to get-pick-list and shortlog scriptsAndreas Boll2-0/+12
NOTE: This is a candidate for the stable branches.
2013-05-01mesa: Add a script to generate the list of fixed bugsAndreas Boll1-0/+52
This list appears in the fixed bugs section of the release notes. v2: Add usage examples NOTE: This is a candidate for the stable branches.
2013-04-17gallivm: JIT symbol resolution with linux perf.José Fonseca1-0/+251
Details on docs/llvmpipe.html Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com>
2013-03-05mesa: Modify candidate search stringIan Romanick1-1/+1
Several commits on master for the 9.1 branch had "NOTE" messages in a slightly different format. NOTE: This is a candidate for stable branches Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2013-01-10Remove installmesaMatt Turner1-74/+0
2013-01-10Remove minstallMatt Turner1-112/+0
2013-01-10Remove mklibMatt Turner1-1043/+0
2013-01-03Add new .gitignore entries for Automake 1.13 testsPaul Berry1-0/+1
Automake 1.13 creates a bunch of new build artefacts: - bin/test-driver, a script for running tests. - *.trs files for every "make check" test result. - *.log files containing the output of every test run by "make check". Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2012-11-14mesa: use .cherry-ignore in the get-pick-list.sh scriptAndreas Boll1-2/+2
NOTE: This is a candidate for the stable branches. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2012-10-23mesa: fix indentation in get-pick-list.sh scriptAndreas Boll1-4/+4
NOTE: This is a candidate for the stable branches. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2012-10-23mesa: grep for commits with cherry picked in commit message only onceAndreas Boll1-2/+9
and save them temporary in already_picked NOTE: This is a candidate for the stable branches. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2012-10-23mesa: optimize get-pick-list.sh scriptAndreas Boll1-4/+3
cuts down the while loop iterations from 4600 to 380 commits at the moment NOTE: This is a candidate for the stable branches. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2012-10-23mesa: simplify get-pick-list.sh scriptAndreas Boll1-1/+3
and add a description for the script NOTE: This is a candidate for the stable branches. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2012-10-23mesa: add get-pick-list.sh script into bin/Ian Romanick1-0/+21
NOTE: This is a candidate for the stable branches.
2012-09-14mklib: clean up abi flags for x86 targetsMike Frysinger1-18/+24
The current code is duplicated in two places and relies on `uname` to detect the flags. This is no good for cross-compiling, and the current logic uses -m64 for the x32 ABI which breaks things. Unify the code in one place, avoid `uname` completely, and add support for the new x32 ABI. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2012-06-20mesa: remove obsolete confdiff.shAndreas Boll1-48/+0
this script is obsolete since 0cc216676c96efacb0e1eb82457e6a83920ae704
2012-06-14mesa: fix html in shortlog_mesa.sh scriptAndreas Boll1-4/+4
Signed-off-by: Brian Paul <brianp@vmware.com>
2012-06-14mesa: added Ian's shortlog_mesa.sh script in bin/Brian Paul1-0/+23
2012-06-11automake: Add AM_PROG_AR before LT_INIT to silence a lot of warnings.Kenneth Graunke1-0/+1
The warnings appear to occur with newer automake (probably 1.12). Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
2012-06-11automake: Move top-level makefile to automake.Eric Anholt1-20/+0
This is part of a series to fix our build issues in the automake case by hooking up the automatic Makefile regeneration support. The extract_git_sha1 is moved into src/mesa/Makefile so that we get correct dependency generation. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2012-06-11mesa: Move the version information right into configure.ac.Eric Anholt1-17/+0
Nothing else called version.mk. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2012-05-08Add bin/compile to .gitignorePaul Berry1-0/+1
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2012-04-23bin/mklib: remove '-m32' for arm linuxHan Shen(沈涵)1-2/+6
-m32 is not a valid option for ARM. NOTE: This is a candidate for the 8.0 branch. Signed-off-by: Brian Paul <brianp@vmware.com>
2012-01-30Remove autoreconf generated filesMatt Turner4-3241/+3
Acked-by: Eric Anholt <eric@anholt.net> Signed-off-by: Matt Turner <mattst88@gmail.com>
2012-01-30autoconf: use AC_PROG_YACC/LEXMatt Turner1-0/+1
Needed for automake. Using AC_PROG_PATH(bison/flex) causes automake to fail to build .y and .l files. It is up to the builder to use bison/flex instead of yacc/lex. Reviewed-by: Eric Anholt <eric@anholt.net> Tested-by: Eric Anholt <eric@anholt.net> Signed-off-by: Matt Turner <mattst88@gmail.com>
2012-01-05Add .gitignore files to exclude unit test build artifacts from gitPaul Berry1-0/+2
With the addition of unit tests in commit 3ef3ba4d2eee36f64062a21ce030c3f4d8c4cac4, several additional build artifacts are created: bin/depcomp bin/missing tests/Makefile tests/Makefile.in tests/glx/Makefile tests/glx/Makefile.in tests/glx/.deps/ tests/glx/.gitignore This patch adds all of these files to .gitignore. Acked-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2011-12-27mklib: tab cleanup, no functional changeAlexander von Gluck1-1/+1
Reviewed-by: Brian Paul <brianp@vmare.com> Signed-off-by: Brian Paul <brianp@vmware.com>
2011-12-26mklib: Add Haiku build supportAlexander von Gluck1-0/+37
Signed-off-by: Brian Paul <brianp@vmware.com>
2011-11-10mklib: fix static lib building by filtering out -L, -l optionsWayne E. Robertz1-1/+1
Signed-off-by: Brian Paul <brianp@vmware.com>
2011-08-26mesa: Remove support for BeOSIan Romanick1-16/+0
Acked-by: Kristian Høgsberg <krh@bitplanet.net> Acked-by: Marek Olšák <maraeo@gmail.com> Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com> Acked-by: Jakob Bornecrantz <jakob@vmware.com> Acked-by: Dave Airlie <airlied@redhat.com> Build-Tested-by: Jakob Bornecrantz <jakob@vmware.com> Tested-by: Eugeni Dodonov <eugeni.dodonov@intel.com>
2011-06-08darwin: mklib: Make the real file match the idJeremy Huddleston1-8/+3
This makes mesa more consistent with glibtool and XCode where the generated file matches the dylib id rather using an extra symlink Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2011-05-05mesa: don't call git if it's not git repositoryMarcin Slusarz1-0/+4
Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2011-05-05mesa: don't touch git_sha1.h if sha1 didn't changeMarcin Slusarz1-2/+8
Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2011-04-05mesa: Include GIT SHA1 in GL version stringIan Romanick1-0/+10
Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> Tested-by: Sedat Dilek <sedat.dilek@gmail.com>
2011-01-06mesa: fix build for NetBSDPierre Allegraud1-15/+1
See http://bugs.freedesktop.org/show_bug.cgi?id=32859 NOTE: This is a candidate for the 7.9 and 7.10 branches. Signed-off-by: Brian Paul <brianp@vmware.com>
2010-09-01Cygwin: Adjust mklib so -linker and -cplusplus options are processed more ↵Jon TURNEY1-6/+10
like they are for linux It looks like we were ignoring -linker when -noprefix wasn't present, and when -noprefix was present, -linker was mandatory and -cplusplus ignored. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Signed-off-by: Brian Paul <brianp@vmware.com>
2010-09-01Cygwin: Teach mklib/minstall to properly install libraries on cygwinJon TURNEY2-1/+25
Teach mklib/minstall more about cygwin so libraries are properly installed Have mklib install the .dll into the lib/ staging directory as well Have minstall install the .dll into PREFIX/bin at the same time as installing the .dll.a link library into PREFIX/lib mklib uses a '-' rather than a '.' as the separator before the version number in library names on cygwin. Change the install globs so they match library names like that. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Signed-off-by: Brian Paul <brianp@vmware.com>