summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)AuthorFilesLines
2012-05-02correctly set install path in java-set-classpathPetr Mladek1-1/+1
2012-05-02really put SDK documentation into the doc subpackagePetr Mladek1-4/+4
2012-04-27convwatch.py: subprocess.check_output only in Python 2.7+Michael Stahl1-1/+4
2012-04-19rearrange orderCaolán McNamara1-7/+7
2012-04-19we're more interested in getting emf/wmf samples than pdfCaolán McNamara1-10/+14
2012-04-19sigh, need import sysCaolán McNamara1-0/+1
2012-04-18use stdout for errors like everything elseCaolán McNamara1-1/+1
2012-04-18continue in the face of adversaryCaolán McNamara1-1/+5
2012-04-17Fix handling of deleted bugzilla attachmentsGökçen Eraslan1-0/+5
As in https://bugs.kde.org/show_bug.cgi?ctype=xml&id=53343 <data> tag may not have a value if the attachment is deleted.
2012-04-17attachmentid should be stable across mime-type changesCaolán McNamara1-7/+9
2012-04-17fdo#46538 Easyhack: Add support for more bug trackers to ↵Gökçen Eraslan1-87/+191
get-bugzilla-attachments-by-mimetype This adds support for Novell, KDE (for KOffice/Calligra), GNOME (for Gnumeric), AbiSource (for AbiWord) bugzillas and Launchpad to bin/get-bugzilla-attachments-by-mimetype script as required by easyhack#46538. However, there two glitches and workarounds: 1- As stated in the code, Novell bugzilla requires users to log in to bugzilla in order to get full information about the bugs such as attachment bodies etc. Since Novell bugzilla uses some proprietary login extensions it's hard to implement log in mechanism and use it via xmlrpc API. python-bugzilla claims that it supports Novell bugzilla login but I could not make it work. As a workaround, comments containing "Created an attachment (id=xxxxxxx)" pattern are parsed and attachments are downloaded using urllib. Attachments are filtered using mimetype info obtained from http headers. 2- For launchpad, launchpadlib python module is used. But currently launchpad api does not support really advanced search like bugzilla. For example, it's not possible to search for bugs having application/pdf attachments. So, again a workaround is used. Code iterates over all the bugs of the *libreoffice* source package and check their attachments.
2012-04-16allow to download main source tarballs againPetr Mladek2-9/+7
The file "core.ver" was removed in configure together with other "core.*" files. It was ugly name. Better to use "sources.ver" and the variable "lo_sources_ver=..." The source version is not used in "unpack-sources", so do not source the .ver file at all. The source tarballs are put into "major.minor.micro" version subdirectory on the download site now.
2012-04-13distro-install-file-lists: handle new file lists that appeared for LO-3.5Petr Mladek1-13/+17
Process the newly added file lists: + Script_Provider_For_Javascript + Script_Provider_For_Beanshell + PostgresqlSdbc + Files_Images
2012-04-13distro-install-file-lists: mark javasettingsunopkginstall.xml as %configPetr Mladek1-0/+1
2012-04-13unpack-sources, download: update for .xz source tarballsPetr Mladek1-8/+9
2012-03-20download some unusual image mimetypes by defaultCaolán McNamara1-3/+4
2012-03-20update to point to moved openoffice.org bugzillaCaolán McNamara1-1/+1
2012-03-20cgms are image/cgmCaolán McNamara1-0/+1
2012-03-14Add options to bin/find-german-comments to help weed out false positivesTom Thorogood1-1/+43
2012-03-07attachmentid should be stable across mime-type changesCaolán McNamara1-1/+1
2012-03-07Add option to only list filenamesPhilipp Weissenbacher1-3/+15
This adds the argument -f (--filenames-only), which only prints the filenames of files containing German comments. I personally scan the whole file for German strings anyway, as we do not find German strings with less than 4 chars. So there's not so much use in printing the found strings.
2012-02-29bin/distro-install*: source config_host.mk instead of Env.Host.shPetr Mladek4-4/+28
thanks Stefan Bergman for improving the sed pattern
2012-02-27add convwatch.pyMichael Stahl1-0/+424
2012-02-13get-bugzilla-attachments-by-mimetype: add retry:Michael Stahl1-2/+13
Sadly the Apache OO bugzilla is rather unreliable and connections time out a lot; retry connections to work around that.
2012-02-13get-bugzilla-attachments-by-mimetype: don't do images:Michael Stahl1-0/+4
What a stupid idea; what the heck do i do now with 5G of jpegs and pngs on my disk?
2012-02-13get-bugzilla-attachments-by-mimetype: more mimetypesMichael Stahl1-2/+104
2012-02-13get-bugzilla-attachments-by-mimetype: deduplicateMichael Stahl1-15/+14
2012-02-13get-bugzilla-attachments-by-mimetype: fix itMichael Stahl1-1/+2
2012-02-08Surely these are mostly *not* used during the buildTor Lillqvist1-2/+2
2012-02-08Add and expand more readme files for module documentationMichael Meeks1-0/+9
2011-12-19lo-pack-sources: do not duplicate the generated files in the archive dirPetr Mladek1-83/+26
the storing in archive directory was non-standard solution => gets removed also the code was simplified and clean up a bit
2011-12-19lo-pack-sources: generate cleaner source tarballs using "git archive"Petr Mladek1-56/+8
there is not longer needed the manualy created blacklist of copied files; also no need to remove symlinks from clone subdir use "tar --checkpoint-action=exec="echo -n \".\"" instead of "awk '{ ORS=\"\" ; if (++nlines\%50 == 0) printf \".\"; fflush() }'"; we are interested into the return code from tar, e.g. not-enough disk space
2011-12-16trivial pkgconfig fixesMichael Meeks1-2/+2
2011-12-16when creating linked clone with branch, make sure to ff to the current stateChristian Lohmaier1-0/+4
the git-new-workdir helper is mostly useful to have one pristine clone where the updates get pulled into & from that you create working copies. As pulling to that master copy only updates the current branch (usually master), checking out a different branch using git-new-workdir will result in "your branch is behind the remote branch by xx commits" when there have been commits after the branch was first checked out locally. Thus this change adds a fast-forwarding merge when a branch is given.
2011-12-13lo-pack-sources: allow to generate .xz source tarballs by defaultPetr Mladek1-55/+79
Add --bzip2 and --xz options to select the compression. Both options can be used togetger to generate both types of tarballs in one call. XZ compession is used by default. Also renamed "lo*build" strings to "lo*core" to fit the current name of the top level source directory.
2011-12-09horrendous hack to stubify a libraryMichael Meeks1-0/+262
We dump the library's symbols we're trying to stubify, and then assemble another library that looks just like it, except with all of it's innards sucked out. We also use pkgconfig to find all the relevant dependencies and to build an entire library tree.
2011-12-07Remove testtoolloaderAugust Sodora1-4/+0
2011-12-06normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara1-8/+4
2011-12-03lo-pack-sources: unused function set_config_version()Miklos Vajna1-38/+0
2011-12-01typo fix: explicitely -> explicitlyLior Kaplan1-1/+1
2011-11-29fix test: s/==/=/Rene Engelhard1-1/+1
2011-11-14Remove basisVERSION from distro scripts as it is not used anymore.Tomas Chvatal4-106/+106
2011-11-14add script to download documents from various bugzillasCaolán McNamara1-0/+141
2011-11-07gtk: move the file-picker into vcl/ and add Application:: factory hooksMichael Meeks1-3/+0
drop un-necessary uno service related fluff, and component instantiation. nominal move to XMultiComponentFactory from XMultiServiceFactory Include fpicker in compilation for gtk3, but more work required here Simplify setting up transient parents for picker dialogs
2011-10-27lo-pack-sources: update for the current list of repositoriesPetr Mladek1-13/+14
2011-10-27lo-pack-sources: remove unused functionsMiklos Vajna1-60/+0
2011-10-24Undo basis/brand split: Move SDK and ure-link, remove OOO_BASE_DIR and ↵Stephan Bergmann1-1/+0
BaseInstallation.
2011-10-20Undo basis/brand split: moved ini files from basis program/ to brand program/.Stephan Bergmann1-1/+1
Moved uno ini, folded fundamentalbasis ini into fundamental ini, merged version inis.
2011-10-19define bash completion also for 'loffice' wrapper (bnc#719656)Petr Mladek1-23/+29
2011-10-15add lo-xlate-lang (formerly openoffice-xlate-lang in libreoffice-build)Rene Engelhard1-0/+210