OLD | NEW |
1 Name: sqlite | 1 Name: sqlite |
2 URL: http://sqlite.org/ | 2 URL: http://sqlite.org/ |
3 Version: 3.7.6.3 | 3 Version: 3.7.6.3 |
4 Included In Release: Yes | 4 Included In Release: Yes |
5 Security Critical: Yes | 5 Security Critical: Yes |
6 License: Public domain | 6 License: Public domain |
7 | 7 |
8 1) Managing differences between SQLite core and Chromium's version. | 8 1) Managing differences between SQLite core and Chromium's version. |
9 2) Making changes to Chromium SQLite. | 9 2) Making changes to Chromium SQLite. |
10 3) Import new release of SQLite. | 10 3) Import new release of SQLite. |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 # Unzip it and pull it into the repo. | 138 # Unzip it and pull it into the repo. |
139 wget http://www.sqlite.org/2014/sqlite-src-${VERSION}.zip | 139 wget http://www.sqlite.org/2014/sqlite-src-${VERSION}.zip |
140 unzip sqlite-src-${VERSION}.zip | 140 unzip sqlite-src-${VERSION}.zip |
141 rm sqlite-src-${VERSION}.zip | 141 rm sqlite-src-${VERSION}.zip |
142 # -f includes ignored files, of which there are a couple. | 142 # -f includes ignored files, of which there are a couple. |
143 git add -f sqlite-src-${VERSION}/ | 143 git add -f sqlite-src-${VERSION}/ |
144 # Sometimes DOS line endings sneak into the source code. This command works on | 144 # Sometimes DOS line endings sneak into the source code. This command works on |
145 # OSX and Linux and fixes those files, but double-check the results before | 145 # OSX and Linux and fixes those files, but double-check the results before |
146 # committing: | 146 # committing: |
147 egrep --exclude="*.eps" --exclude="*.ico" --exclude="*.jpg" \ | 147 egrep --exclude="*.eps" --exclude="*.ico" --exclude="*.jpg" \ |
148 --exclude="*.gif" --exclude="*.tiff" -URl '\r' . | \ | 148 --exclude="*.gif" --exclude="*.tiff" --exclude="*.vsix" -URl '\r' . | \ |
149 LANG=C xargs sed -i~ -e $'s/\r$//' | 149 LANG=C xargs sed -i~ -e $'s/\r$//' |
150 git commit -m "Begin import of sqlite-src-${VERSION}" sqlite-src-${VERSION} | 150 git commit -m "Begin import of sqlite-src-${VERSION}"es |
| 151 sqlite-src-${VERSION} |
151 rm -rf src | 152 rm -rf src |
152 cp -a sqlite-src-${VERSION} src | 153 cp -a sqlite-src-${VERSION} src |
153 # -f includes ignored files, of which there are a couple. | 154 # -f includes ignored files, of which there are a couple. |
154 git add -f src/ | 155 git add -f src/ |
155 git commit -m "Update src to sqlite-src-${VERSION}" src/ | 156 git commit -m "Update src to sqlite-src-${VERSION}" src/ |
156 # This branch is unlikely to build. | 157 # This branch is unlikely to build. |
157 | 158 |
158 #### Create a branch for merging the CLs to the new SQLite. | 159 #### Create a branch for merging the CLs to the new SQLite. |
159 git checkout -b sqlite_${VERSION}_patched master | 160 git checkout -b sqlite_${VERSION}_patched master |
160 git rebase sqlite_${VERSION} | 161 git rebase sqlite_${VERSION} |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 NOTE(shess): On Ubuntu it is possible to run the tests in a tmpfs something | 246 NOTE(shess): On Ubuntu it is possible to run the tests in a tmpfs something |
246 like: | 247 like: |
247 | 248 |
248 TMPFS=/dev/shm/sqlite_build | 249 TMPFS=/dev/shm/sqlite_build |
249 BUILD=$PWD | 250 BUILD=$PWD |
250 mkdir $TMPFS | 251 mkdir $TMPFS |
251 (cd $TMPFS ; $BUILD/testfixture $BUILD/../test/veryquick.test >/tmp/test.log) | 252 (cd $TMPFS ; $BUILD/testfixture $BUILD/../test/veryquick.test >/tmp/test.log) |
252 | 253 |
253 This is faster, but it is plausible that different things are being tested than | 254 This is faster, but it is plausible that different things are being tested than |
254 real-world use. | 255 real-world use. |
OLD | NEW |