Jörg Thalheim
60b588a547
Merge pull request #24867 from canndrew/hivemind
...
hivemind: init at git-2017-04-13
2017-04-13 10:51:20 +02:00
Andrew Cann
42d7fa2c71
hivemind: rename unstable package
2017-04-13 16:40:32 +08:00
Andrew Cann
b306e672a1
hivemind: init at git-2017-04-13
...
Hivemind is a peer-to-peer oracle protocol which absorbs accurate data
into a blockchain so that bitcoin-users can speculate in prediction
markets.
2017-04-13 11:56:06 +08:00
Dan Peebles
1fd7bf9ee3
nano: remove unnecessary Darwin-specific behavior
...
It seems to compile just fine without this now that we're on 2.8.1
2017-04-12 20:30:07 -04:00
Tim Steinbach
416337b95c
atom: 1.15.0 -> 1.16.0
2017-04-12 19:33:03 -04:00
Yann Hodique
5eb098dbd8
hugo: 0.18.1 -> 0.20
2017-04-12 14:33:27 -07:00
Nikolay Amiantov
124e5dd3eb
qutebrowser: cleanup wrappers
2017-04-13 00:07:01 +03:00
Eelco Dolstra
75f1a55fbe
Merge pull request #24851 from laMudri/thunderbird-calendar
...
thunderbird: add option to enable calendar
2017-04-12 20:30:05 +02:00
laMudri
f94e0a0dc7
thunderbird: add option to enable calendar
2017-04-12 19:12:37 +01:00
Lengyel Balázs
f08e89d256
chromium: flashplayer: 25.0.0.127 -> 25.0.0.148
2017-04-12 16:10:46 +02:00
Lancelot SIX
474d112b7a
nano: 2.8.0 -> 2.8.1
...
See http://lists.gnu.org/archive/html/info-gnu/2017-04/msg00005.html
for release announcement
2017-04-12 15:44:18 +02:00
Matthias Beyer
6239da6ade
diamond: init at 0.8.36
2017-04-12 13:05:57 +02:00
Peter Hoeg
ffa2bc2382
terragrunt: 0.11.0 -> 0.11.1
2017-04-12 14:08:53 +08:00
Daiderd Jordan
d55ab1a6b9
Merge pull request #23572 from rycee/fix/gpsbabel-darwin
...
gpsbabel: fix darwin build
2017-04-11 20:40:52 +02:00
Daiderd Jordan
9561fecd02
gpsbabel: fix build with llvm-4
2017-04-11 20:23:43 +02:00
Jörg Thalheim
58771c482c
Merge pull request #24571 from jbgi/kodi-dvdfix
...
Kodi: use kodi fork of libdvdnav/libdvdread. Fix #24153 (dvd playback)
2017-04-11 16:11:17 +02:00
Rok Garbas
8c8942a5e4
firefox-bin: alsaLib.dev is needed
2017-04-11 14:33:54 +02:00
Thomas Tuegel
149ba2e9dc
Merge pull request #24811 from mdorman/emacs-updates
...
Automated emacs package updates
2017-04-11 07:20:10 -05:00
Jörg Thalheim
c84dd4f09e
Merge pull request #24526 from miltador/jetbrains
...
idea: numerous fixes and improvements
2017-04-11 13:56:20 +02:00
Arseniy Seroka
3bbe26cf5f
Merge pull request #24793 from sargon/update/trayer
...
trayer: 1.1.6 -> 1.1.7
2017-04-11 13:09:43 +03:00
Daniel Brockman
c178ee4726
ethabi: 0.2.1 -> 1.0.4
2017-04-11 10:18:16 +02:00
Jörg Thalheim
c03b91cdcf
Merge pull request #24812 from jonafato/keepassx-community-2.1.4
...
keepassx-community: 2.1.3 -> 2.1.4
2017-04-11 09:54:52 +02:00
Daniel Brockman
881595ac03
ethrun: init at 0.1.0
2017-04-11 06:33:16 +02:00
aszlig
7b5263e1a6
tesseract: Package version 4.x from Git master
...
Tesseract 4 has got a new long short-term memory neural networking based
OCR engine which really helps a lot in terms of accuracy and our VM
tests.
I ran the new version across a bunch of different screenshots and
comparing the results to the 3.x branch and it really makes a big
difference, especially with various font rendering settings.
The only downside of this is that version 4 hasn't been released yet and
is in alpha state right now, but it will eventually get there and the
only solutions that came into my mind sticking to version 3 were really
sub-par:
* Use several passes with different color negation on the screenshots.
* Train Tesseract 3 specifically for screenshots. This is sub-par
because we'd need to do it for Tesseract 4 from scratch again.
* Change the test systems so that it specifically uses *only* OCR an
font when displaying. I've actually tried this but this also isn't
accurate enough with our default font rendering setup.
* Turn off special font rendering settings for our tests. In
conjunction with changing to an OCR font this might work but it won't
catch all the cases, because applications might use their own font
rendering.
Given that version 4 is faster[1] when it comes to OCR detection and also
the points just mentioned I think even using the alpha version just for
tests isn't going to hurt anybody.
[1]: https://github.com/tesseract-ocr/tesseract/wiki/4.0-Accuracy-and-Performance
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:46 +02:00
aszlig
c381fa9b63
tesseract: 3.04.01 -> 3.05.00
...
Upstream changelog:
* Made some fine tuning to the hOCR output.
* Added TSV as another optional output format.
* Fixed ABI break introduced in 3.04.00 with the AnalyseLayout()
method.
* text2image tool - Enable all OpenType ligatures available in a font.
This feature requires Pango 1.38 or newer.
* Training tools - Replaced asserts with tprintf() and exit(1).
* Fixed Cygwin compatibility.
* Improved multipage tiff processing.
* Improved the embedded pdf font (pdf.ttf).
* Enable selection of OCR engine mode from command line.
* Changed tesseract command line parameter '-psm' to '--psm'.
* Added new C API for orientation and script detection, removed the old
one.
* Increased minimum autoconf version to 2.59.
* Removed dead code.
* Fixed many compiler warning.
* Fixed memory and resource leaks.
* Fixed some issues with the 'Cube' OCR engine.
* Fixed some openCL issues.
* Added option to build Tesseract with CMake build system.
* Implemented CPPAN support for easy Windows building.
The upstream URL of the change log is:
https://github.com/tesseract-ocr/tesseract/releases/tag/3.05.00
Tested by building against the following packages that directly depend
on it:
* vapoursynth (with ocrSupport = true)
* pyocr (fails)
* vobsub2srt
Also tested against the following NixOS VM tests that have OCR enabled:
* nixos/tests/chromium.nix -A stable
* nixos/tests/emacs-daemon.nix
* nixos/tests/installer.nix -A luksroot
* nixos/tests/lightdm.nix
* nixos/tests/plasma5.nix
* nixos/tests/sddm.nix
All of the packages and tests except pyocr build/succeed on
x86_64-linux.
Fixing pyocr is outside of the scope of this commit and will happen very
soon.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:32 +02:00
aszlig
288a79187c
tesseract: Reintroduce enableLanguages
...
I've removed that attribute in 68bc260ca2
,
because the language files no longer were distributed as seperate files,
but if we for example only want to use the English training data, the
closure size of Tesseract gets quite large (around 1.2 GB), which is a
bit much just to be able to run NixOS VM tests.
For this reason I've also switched the VM tests back to using only the
English language.
Tested using the following VM tests (the ones that have OCR enabled) on
x86_64-linux:
* nixos/tests/chromium.nix -A stable
* nixos/tests/emacs-daemon.nix
* nixos/tests/installer.nix -A luksroot
* nixos/tests/lightdm.nix
* nixos/tests/plasma5.nix
* nixos/tests/sddm.nix
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2017-04-11 03:21:26 +02:00
Jon Banafato
4a4719c6ec
keepassx-community: 2.1.3 -> 2.1.4
...
KeePassXC has a new bugfix release available: https://github.com/keepassxreboot/keepassxc/releases/tag/2.1.4
2017-04-10 20:54:23 -04:00
Michael Alan Dorman
5a5eea34cc
melpa-packages: 2017-04-10
...
Removals:
- dos: package removed from melpa
2017-04-10 19:20:07 -04:00
Michael Alan Dorman
f087fd3c70
melpa-stable-packages: 2017-04-10
2017-04-10 19:20:07 -04:00
Michael Alan Dorman
842417b4bc
elpa-packages: 2017-04-10
2017-04-10 19:20:07 -04:00
Robert Helgesson
08656a73f0
gpsbabel: fix darwin build
2017-04-10 22:57:06 +02:00
Thomas Tuegel
c7dd8a707b
golden-cheetah: fix build
...
- Use Qt 5.6 to fix compile error.
- Run preInstall and postInstall hooks to fix linking error.
2017-04-10 13:51:45 -05:00
Thomas Tuegel
33194ec649
dropbox: 23.4.17 -> 23.4.18
...
This update has not been officially announced upstream, but version 23.4.17 no
longer works.
2017-04-10 09:28:01 -05:00
Lorenzo Manacorda
5108c4c7b2
notmuch: fix homepage and notmuch-mutt license ( #24777 )
...
* notmuch: fix homepage and notmuch-mutt license
notmuch-mutt's license is GPLv3. might have been changed when it was upstreamed.
* fix scheme
* fix typo in url
* fix field alignment
* use with to make statements shorter
2017-04-10 16:00:25 +02:00
Jörg Thalheim
92ab8b0ee7
Merge pull request #24782 from asymmetric/polybar
...
polybar: 3.0.4 -> 3.0.5
2017-04-10 15:58:29 +02:00
Yann Hodique
a78ce1d4c6
tig: 2.2 -> 2.2.1 ( #24770 )
...
* tig: 2.2 -> 2.2.1
Also move to different project URLs, as requested in
https://github.com/jonas/tig/releases/tag/tig-2.2.1
* tig: fix fetching mechanism
Rework the dependencies to allow use of fetchFromGitHub.
2017-04-10 15:03:04 +02:00
Daniel Ehlers
de83f55ee3
trayer: 1.1.6 -> 1.1.7
2017-04-10 13:29:00 +02:00
Lancelot SIX
045ecd11f8
Merge pull request #24785 from paperdigits/darktable-2.2.4
...
darktable: 2.2.3 -> 2.2.4
2017-04-10 13:18:11 +02:00
Frederik Rietdijk
90aaa7319e
Merge pull request #24781 from ndowens/texstudio
...
texstudio: 2.11.2 > 2.12.4
2017-04-10 10:59:42 +02:00
Daiderd Jordan
f8230518a2
Merge pull request #24762 from matthewbauer/darwin-misc-fixes
...
darwin: miscellaneous fixes
2017-04-10 08:50:15 +02:00
Nikolay Amiantov
b023370f37
thunderbird: port changes from firefox
...
Fix random crashes.
Add optional GTK3 support.
2017-04-10 02:20:59 +03:00
Nikolay Amiantov
56ca347872
firefox: misc cleanups
...
Move more dependencies to nativeBuildInputs.
Use wrapGAppsHook.
Add checkInstallPhase.
2017-04-10 02:20:38 +03:00
taku0
55ff94b396
thunderbird: 45.8.0 -> 52.0
2017-04-10 02:20:29 +03:00
taku0
77f0ad5a37
thunderbird-bin: 45.8.0 -> 52.0
2017-04-10 02:20:26 +03:00
Mica Semrick
eae15ab771
darktable: 2.2.3 -> 2.2.4
2017-04-09 15:58:06 -07:00
Orivej Desh
2db5b5a009
verbiste: init at 0.1.44
2017-04-10 00:19:35 +03:00
Lorenzo Manacorda
0788476624
polybar: 3.0.4 -> 3.0.5
2017-04-09 22:18:51 +02:00
ndowens
40e2e78d91
texstudio: 2.11.2 > 2.12.4
2017-04-09 15:17:55 -05:00
Lorenzo Manacorda
da4fd5ef41
mutt: actually make imap optional ( #24776 )
2017-04-09 20:55:27 +01:00
Peter Hoeg
b520bed834
syncthing: 0.14.25 -> 0.14.26
2017-04-10 00:36:05 +08:00
Peter Simons
4e307b644a
Merge pull request #24760 from matthewbauer/linux-only-pkgs
...
Mark linux-only pkgs
2017-04-09 14:18:10 +02:00
Jörg Thalheim
4c86093002
Merge pull request #24764 from matthewbauer/spectrwm-osx
...
spectrwm: fix OSX build
2017-04-09 11:13:33 +02:00
Franz Pletz
e23c8f05ab
Merge pull request #24756 from NeQuissimus/minikube_0_18_0
...
minikube: 0.17.1 -> 0.18.0
2017-04-09 11:08:16 +02:00
Franz Pletz
e798712da7
Merge pull request #24759 from matthewbauer/inkscape-darwin-fix
...
inkscape: fix missing library error
2017-04-09 10:56:20 +02:00
Matthew Bauer
f75703bfbf
spectrwm: fix OSX build
2017-04-09 01:30:38 -05:00
Matthew Bauer
c344f46321
djview: fix macOS build
2017-04-08 23:28:00 -05:00
Matthew Bauer
ba78c50069
inkscape: fix missing library error
2017-04-08 23:20:10 -05:00
Tim Steinbach
215e8e4020
minikube: 0.17.1 -> 0.18.0
2017-04-08 18:13:48 -04:00
Thomas Tuegel
333923c88b
dropbox: 22.4.24 -> 23.4.17
2017-04-08 14:48:07 -05:00
Aristid Breitkreuz
17fc70a11d
Merge pull request #24609 from zimbatm/terraform-fix
...
terraform: remove broken tests
2017-04-08 17:53:36 +02:00
Jörg Thalheim
f7b97df2cd
Merge pull request #24730 from Infinisil/buku-2.9
...
buku: 2.8 -> 2.9
2017-04-08 13:24:45 +02:00
Aristid Breitkreuz
9f148e9166
Merge pull request #24593 from bdimcheff/upgrade-astroid-0.8
...
astroid: 0.7 -> 0.8
2017-04-08 13:09:02 +02:00
Aristid Breitkreuz
cafd9c922c
Merge pull request #24705 from emanueleperuffo/master
...
robomongo: 0.8.4 -> 0.9.0
2017-04-08 11:43:51 +02:00
Jörg Thalheim
6444321633
Merge pull request #24725 from sphaugh/master
...
i3: add separateDebugInfo
2017-04-08 11:15:31 +02:00
Silvan Mosberger
c2a0f2584a
buku: 2.8 -> 2.9
2017-04-08 08:56:35 +02:00
Tomasz Jan Góralczyk
90b2290ca3
purple-facebook: 0.9.0 -> 0.9.3
2017-04-08 07:56:28 +01:00
Matthew Bauer
94acb5b780
yasr: make linux-only
2017-04-07 21:55:02 -05:00
Sean Haugh
30b6561982
i3: add separateDebugInfo
2017-04-07 15:24:08 -05:00
Jörg Thalheim
a5ee494046
Merge pull request #24696 from mirrexagon/mrxgn-textadept-update
...
textadept: 9.0 -> 9.3
2017-04-07 15:08:34 +02:00
Jörg Thalheim
69d12b2672
Merge pull request #24423 from jpierre03/patch-2
...
textadept: bombay update without version pinning
2017-04-07 14:58:32 +02:00
xNWDD
9ef5fd4189
gitkraken: 2.3.1 -> 2.3.3 ( #24684 )
...
* gitkraken: 2.3.1 -> 2.3.2
* gitkraken: 2.3.2 -> 2.3.3
2017-04-07 14:52:46 +02:00
Emanuele Peruffo
668777f01d
robomongo: add desktop entry
2017-04-07 13:40:27 +02:00
Emanuele Peruffo
b52a3d90fe
robomongo: 0.8.4 -> 0.9.0
2017-04-07 12:19:19 +02:00
Gabriel Ebner
78adf1832f
Merge pull request #24695 from benley/vscode-1.11.1
...
vscode: 1.10.2 -> 1.11.1
2017-04-07 08:15:21 +02:00
Jean-Baptiste Giraudeau
40d46f9ca4
Kodi: use kodi fork of libdvdnav/libdvdread. Fix #24153 (dvd playback)
2017-04-07 07:55:07 +02:00
Benjamin Staffin
987cafe5e0
vscode: Add libxkbfile to rpath
...
Otherwise vscode complains about it.
2017-04-06 23:35:49 -04:00
Benjamin Staffin
4a08528b4a
vscode: Revamp URL generation scheme
...
This ought to be way easier to maintain! Now just the version number
and sha256 hashes need to be updated for an update, and there are no
more manual cmdline steps to get version hashes and timestamps.
Related to #22465
2017-04-06 22:22:16 -04:00
Andrew Abbott
4a79bf0e84
textadept: 9.0 -> 9.3
2017-04-07 11:47:39 +10:00
Benjamin Staffin
f50258bba5
vscode: 1.10.2 -> 1.11.1
2017-04-06 21:17:25 -04:00
Dan Peebles
6e58719b1b
nano: fix on Darwin
...
The latest update broke it
2017-04-06 21:09:32 -04:00
Marius Bergmann
e94437d1ed
mopidy: Add gst-plugins-bad to buildInputs
...
Needed for processing .m4a files.
2017-04-07 00:16:29 +02:00
Jaka Hudoklin
b650a380fd
Merge pull request #24689 from lverns/bump-shotwell
...
shotwell: 0.25.90 -> 0.26.0
2017-04-06 23:35:29 +02:00
Laverne Schrock
b70b1b1f06
shotwell: 0.25.90 -> 0.26.0
...
Simple version bump.
2017-04-06 15:30:03 -05:00
Franz Pletz
d3ef8dc633
gitlab: 8.17.4 -> 8.17.5
...
Fixes security issues:
https://about.gitlab.com/2017/04/05/gitlab-9-dot-0-dot-4-security-release/
2017-04-06 21:04:22 +02:00
Domen Kožar
7cef3e45b2
Merge pull request #24678 from edanaher/add-fvwm-maintainer
...
fvwm: add edanaher as maintainer
2017-04-06 15:28:48 +02:00
Evan Danaher
841740bd3d
fvwm: add edanaher as maintainer
2017-04-06 09:05:32 -04:00
Bart Brouns
5861ba39a3
guitarix: 0.35.2 -> 0.35.3 ( #24673 )
2017-04-06 12:46:20 +01:00
Justin Bedő
c5015b77af
platypus: fix platforms metadata ( #24666 )
2017-04-06 10:10:54 +01:00
Alexey Shmalko
5b2d1784c2
Merge pull request #24582 from jerith666/gammu-1-37
...
gammu: 1.33.0 -> 1.38.2
2017-04-06 12:05:25 +03:00
Matt McHenry
c4d80e43af
gammu: move pkgconfig and cmake to nativeBuildInputs
2017-04-05 21:08:57 -04:00
Matt McHenry
4b77264308
gammu: 1.33.0 -> 1.38.2
2017-04-05 21:08:46 -04:00
Tim Steinbach
d95fb5f2ac
Merge pull request #24632 from NeQuissimus/docker_17_04
...
docker-edge: init at 17.04
2017-04-05 20:51:14 -04:00
Tim Steinbach
1e589239b3
docker-edge: init at 17.04
2017-04-05 20:49:26 -04:00
Alexey Shmalko
48bdd8612f
Merge pull request #24656 from elasticdog/transcrypt
...
transcrypt: 1.0.1 -> 1.0.2
2017-04-05 22:06:06 +03:00
Alexey Shmalko
f04582cf20
Merge pull request #24641 from NeQuissimus/docker-dist_2_6_0
...
docker-distribution: 2.5.1 -> 2.6.0
2017-04-05 21:51:49 +03:00
Alexey Shmalko
8716698903
Merge pull request #24630 from PierreR/master
...
albert: 0.10.0 -> 0.10.2
2017-04-05 21:48:21 +03:00
Alexey Shmalko
2ba604f292
Merge pull request #24640 from NeQuissimus/nano_2_8_0
...
nano: 2.7.5 -> 2.8.0
2017-04-05 21:38:14 +03:00
Aaron Bull Schaefer
55d1237c6b
transcrypt: 1.0.1 -> 1.0.2
2017-04-05 11:18:12 -05:00
Profpatsch
6b5e5de0ef
rss2email: init at 3.9
2017-04-05 16:59:01 +02:00
Tim Steinbach
7c36657d7d
Merge pull request #24639 from NeQuissimus/sway_0_12_2
...
sway: 0.11 -> 0.12.2
2017-04-05 09:13:04 -04:00
Tim Steinbach
f911770acf
sway: Add xwayland build input
2017-04-05 08:17:49 -04:00
Tim Steinbach
b4b95c6686
nano: 2.7.5 -> 2.8.0
2017-04-04 21:04:39 -04:00
Tim Steinbach
89188e2972
docker-distribution: 2.5.1 -> 2.6.0
2017-04-04 21:01:27 -04:00
Tim Steinbach
7acd1e7f68
sway: 0.11 -> 0.12.2
2017-04-04 20:56:27 -04:00
NWDD
f24c89a4d6
gitkraken: 2.2.1 -> 2.3.1
2017-04-04 21:10:53 +02:00
Tim Steinbach
67142c58c4
Merge pull request #24619 from NeQuissimus/docker_17_03_1
...
docker: 17.03.0 -> 17.03.1
2017-04-04 13:44:29 -05:00
Tim Steinbach
aefb9671bf
docker: 17.03.0 -> 17.03.1
2017-04-04 13:43:57 -04:00
Nikolay Amiantov
527512e554
qutebrowser: add withWebEngineDefault flag
...
Allows to set QtWebEngine backend by default.
2017-04-04 19:22:50 +03:00
Pierre Radermecker
1ce34c5458
albert: 0.10.0 -> 0.10.2
2017-04-04 17:58:17 +02:00
Dmitry Marakasov
ef2c8f98ec
Fix schema, maintainers are usually an array
2017-04-04 18:36:23 +03:00
Jörg Thalheim
9987abca8e
Merge pull request #24592 from FlorentBecker/pijul4
...
Pijul 0.4
2017-04-04 10:57:54 +02:00
ndowens
81e1d7eb55
Merge pull request #24572 from ndowens/finalterm
...
finalterm-git: Cosmetic change
2017-04-03 20:10:44 -05:00
zimbatm
beba07f712
terraform: remove broken tests
2017-04-03 23:58:39 +01:00
Lprndn
75319eb203
nomacs: 3.4 -> 3.6.1
...
fixes #24589
2017-04-03 21:21:05 +02:00
Jörg Thalheim
c34db6e419
Merge pull request #24414 from jensbin/corebird
...
corebird: 1.3.3 -> 1.4.2
2017-04-03 17:09:35 +02:00
ndowens
94c2f3e772
jp2a: 1.0.6 -> 1.0.7 ( #24579 )
2017-04-03 15:48:52 +01:00
Nikolay Amiantov
74f7db075a
tdesktop: 1.0.2 -> 1.0.27
...
Use system Qt.
2017-04-03 17:48:23 +03:00
Florent Becker
3699a545fd
pijul: 0.3.3 -> 0.4.1
2017-04-03 15:04:04 +02:00
ndowens
969ed8832c
epdfview: Fixed SRC URL; Cosmetic Change ( #24568 )
...
epdfview: Updated Debian Mirror
2017-04-03 10:43:08 +01:00
Taahir Ahmed
438ac662aa
nomacs: init at 3.4 ( #24580 )
...
* nomacs: init at 3.4
* nomacs: add gsettings for gtk open dialogs
* nomacs: use fetchurl instead of fetchFromGitHub
2017-04-03 10:28:34 +02:00
Peter Hoeg
9f34d1f19a
terraform: remove 0.8.5 specific file
...
It is now handled by the terraform build function instead.
2017-04-03 11:59:24 +08:00
Brandon Dimcheff
aac3f9a8cb
astroid: 0.7 -> 0.8
...
Upgraded astroid to 0.8 and uses the upstream changes to properly
propagate environment without a patch. Note that this still uses an
unsupported version of webkitgtk and thus will fail to build, but if
allow webkitgtk to install, astroid will run.
2017-04-02 23:37:24 -04:00
Victor Calvert
53a516b198
src: 1.12 -> 1.13
2017-04-02 22:36:02 -04:00
Jörg Thalheim
49aa2483e0
Merge pull request #24543 from winniequinn/gitkraken-desktop-entry
...
gitkraken: add desktop entry
2017-04-02 23:50:15 +02:00
Jörg Thalheim
3e7c485e19
Merge pull request #24553 from ndowens/git-imerge
...
git-imerge: 0.7.0 -> 1.0.0
2017-04-02 23:39:53 +02:00
Jörg Thalheim
dac0e94e85
Merge pull request #24551 from ndowens/leoeditor
...
leo-editor: 5.3 -> 5.5
2017-04-02 23:37:27 +02:00
Jörg Thalheim
6df9e84773
Merge pull request #24554 from ndowens/git-radar
...
git-radar: 0.3.2 -> 0.5
2017-04-02 23:28:52 +02:00
Jörg Thalheim
a18ac4fd35
Merge pull request #24552 from ndowens/git-cola
...
git-cola: 2.8 -> 2.10
2017-04-02 23:26:29 +02:00
Jörg Thalheim
97d35590c9
Merge pull request #24567 from ndowens/doomseeker
...
doomseeker: Cosmetic cleanup
2017-04-02 23:19:40 +02:00
Jörg Thalheim
58224f9430
Merge pull request #24566 from ndowens/dmenu2
...
dmenu2: Cosmetic change
2017-04-02 23:18:44 +02:00
Jörg Thalheim
74e2f482fe
pdfshuffler: init at unstable-2017-02-26
2017-04-02 22:37:48 +02:00
ndowens
ff4fa6387e
diff-so-fancy: 0.11.1 -> 0.11.4 ( #24562 )
2017-04-02 22:22:32 +02:00
Franz Pletz
658a532483
Merge pull request #24523 from mateon1/ipfs-update
...
ipfs: 0.4.6 -> 0.4.8
2017-04-02 21:34:14 +02:00
ndowens
968e6d823b
finalterm-git: Cosmetic change
2017-04-02 13:25:46 -05:00
Joachim Fasting
a77571399d
surf: 0.7 -> 2.0
...
This renders surf-webkit2 obsolete; it is now aliased to surf.
2017-04-02 20:11:44 +02:00
ndowens
3490c39f38
evopedia: Cosmetic
2017-04-02 21:11:01 +03:00
ndowens
35d23911e0
doomseeker: Cosmetic cleanup
2017-04-02 12:19:48 -05:00
ndowens
236e752e38
dmenu2: Cosmetic change
2017-04-02 12:15:02 -05:00
ndowens
b1c0814999
jitsi: Fixed java not found
...
Cosmetic change
Closes #24565
2017-04-02 16:51:08 +01:00
Joachim F
144d1e7be4
Merge pull request #24424 from dsferruzza/add-veracrypt
...
veracrypt: init at 1.19
2017-04-02 15:43:25 +01:00
Joachim Fasting
2c81510a1a
veracrypt: refactorings
...
- Conditionally add wxGTK30 to inputs to avoid
eval'ing it regardless of wxGUI
- Patch full path to exe into desktop file
- Move some inputs to native
- Do not write intermediate tar file on unpack
2017-04-02 16:41:13 +02:00
David Sferruzza
2ae74f9f4f
veracrypt: init at 1.19
2017-04-02 16:38:08 +02:00
ndowens
2c5b491ca9
Merge pull request #24519 from orivej/subgit
...
subgit: 3.1.0 -> 3.2.4
2017-04-02 09:16:28 -05:00
ndowens
6ee0d284c1
git-cola: 2.8 -> 2.10
...
git-cola: Remove postFixup
2017-04-02 08:56:18 -05:00
ndowens
7d076ab4fa
lightdm: 1.18.1 -> 1.22.0 ( #24545 )
...
Remove patch
2017-04-02 10:04:32 +01:00
Peter Hoeg
f70e7773ec
calibre: 2.80.0 -> 2.82.0
2017-04-02 12:46:36 +08:00
ndowens
02dddacc75
git-radar: 0.3.2 -> 0.5
2017-04-01 21:30:23 -05:00
ndowens
45fa146829
git-imerge: 0.7.0 -> 1.0.0
2017-04-01 21:24:08 -05:00
ndowens
3d53b36bc3
leo-editor: 5.3 -> 5.5
2017-04-01 20:58:13 -05:00
Volth
160a84013e
qemu: 2.8.0 -> 2.8.1
2017-04-02 00:21:56 +00:00
ndowens
a16dc1539a
bitcoin: 0.13.1 -> 0.14.0
2017-04-01 23:43:53 +02:00
Winnie Quinn
dda001b0ba
gitkraken: add desktop entry
...
The tarball does not contain an icon so switched over to using the
dpkg.
2017-04-01 17:38:43 -04:00
Dmitry Tsygankov
57a813f3df
bitcoin-unlimited: init at 1.0.1.3
...
Add the Bitcoin Unlimited client to the altcoins directory, so that all sides of the Bitcoin scaling debate are represented.
2017-04-01 23:34:36 +02:00
Tim Steinbach
9bf115c46a
Merge pull request #24509 from tilpner/master
...
vscode: Fix relocation errors
2017-04-01 13:49:21 -04:00
Tim Steinbach
97210a1f48
Merge pull request #24505 from zimbatm/terraform-0.9.2
...
terraform: 0.9.1 -> 0.9.2
2017-04-01 13:45:26 -04:00
Tim Steinbach
d6f287e1e2
Merge pull request #24493 from ndowens/i3lock
...
i3lock-color: 2.7-2016-09-17 -> 2.7-2017-04-01; Closes #24450
2017-04-01 13:22:44 -04:00
obadz
c4801f65f8
treesheets: fix url
2017-04-01 15:22:19 +01:00
obadz
8c38250a3e
treesheets: init at 2017-03-27
2017-04-01 14:37:58 +01:00
ndowens
daab7c193f
i3lock-color: 2.7-2016-09-17 -> 2.8; Closes #24450
...
i3lock-color: Corrected software src
Fixed version
2017-04-01 08:27:46 -05:00
Vladimír Čunát
d19384ca7e
liferea: bugfix 1.12-rc2 -> 1.12-rc3
2017-04-01 14:40:35 +02:00
zimbatm
ae034020aa
fixup! terraform: 0.9.1 -> 0.9.2
...
use fetchpatch to improve patch download hash stability
2017-04-01 12:54:53 +01:00
Vincent Laporte
86f4ded789
google-drive-ocamlfuse: add missing ocamlbuild dependency
2017-04-01 12:30:14 +02:00
Vasiliy Solovey
7bd4b1cdbd
gogland: init at 171.3780.106
2017-04-01 12:04:06 +03:00
Vasiliy Solovey
1d170e1f82
ruby-mine: 2016.3.2 -> 2017.1
2017-04-01 11:54:16 +03:00
Vasiliy Solovey
f8832fb277
rider: init at 171.3655.1246
2017-04-01 11:48:52 +03:00
Vasiliy Solovey
3aaf146f07
jebrains: sort packages alphabetically
2017-04-01 10:45:25 +03:00
Vasiliy Solovey
23f5958dd0
datagrip: 2016.3.2 -> 2017.1
2017-04-01 10:36:35 +03:00
Vasiliy Solovey
d41dee0a9f
clion1: remove package
...
It is no longer present on JetBrains download servers and is
very outdated.
2017-04-01 10:27:23 +03:00
Vasiliy Solovey
5cb39dd45f
clion: 2016.3.3 -> 2017.1
2017-04-01 10:25:38 +03:00
Vasiliy Solovey
bab0ed75c0
idea: rename to jetbrains
...
JetBrains IDEs were put under wrong scope which was confusing.
Fixes #24453
2017-04-01 10:21:19 +03:00
Mateusz Naściszewski
a309890044
ipfs: 0.4.6 -> 0.4.8
2017-04-01 05:51:41 +02:00
Orivej Desh
ecf5daa5d7
subgit: 3.1.0 -> 3.2.4
2017-04-01 02:19:51 +00:00
Jörg Thalheim
880e65e162
Merge pull request #24460 from peterhoeg/f/qst
...
qsyncthingtray: fix program paths
2017-03-31 23:00:11 +02:00
Jörg Thalheim
5793e12143
baresip: enable vp8/vp9
2017-03-31 22:34:48 +02:00
Nikolay Amiantov
1eccb75f26
mumble: patch python scripts
2017-03-31 23:12:11 +03:00
Nikolay Amiantov
d8c47a20b8
mumble_git: wrap with Qt dependencies
...
Fixes #14084 .
2017-03-31 23:11:46 +03:00
Jörg Thalheim
a16c2e5420
Merge pull request #24356 from vrthra/vis
...
vis: 2016-10-09 -> 0.3
2017-03-31 21:15:27 +02:00
Till Höppner
c9d02b7c57
vscode: Fix relocation errors
...
LD_PRELOAD was inherited by spawned processes, and caused
issues with systems that have older system packages while
using fresh user packages.
Links out the wrapper script instead of electron binary to
expose CLI like on other systems
Breaks anything that relies on vscode not detaching
2017-03-31 20:34:35 +02:00
zimbatm
1afd3ceaaa
terraform: 0.9.1 -> 0.9.2
...
* makes the generic builder open for extension
* upgrades terraform and set the 0_9 series by default
2017-03-31 15:53:17 +01:00
Joachim F
05e5151d8f
Merge pull request #24480 from Ma27/update/geogebra
...
geogebra: 5-0-346-0 -> 5-0-350-0
2017-03-31 13:07:52 +01:00
Peter Hoeg
7b73936459
Merge pull request #22710 from AndersonTorres/openshot
...
openshot-qt: 2.1.0 -> 2.2.0
2017-03-31 14:19:34 +08:00
Tim Steinbach
b90b1828dd
Merge pull request #24352 from cko/spark-1_6_3
...
spark: 1.6.0 ->1.6.3
2017-03-30 22:36:16 -04:00
Benjamin Staffin
09e4ece6e1
latte-dock: init at 0.5.98
2017-03-30 18:46:29 -04:00
Maximilian Bosch
1e295260e2
geogebra: 5-0-346-0 -> 5-0-350-0
2017-03-30 21:55:05 +02:00
sternenseemann
fd3a99633b
2bwm: init at 0.2
2017-03-30 19:21:27 +02:00
Robin Gloster
62303628ce
vimiv: mark as broken
...
cc @aszlig
2017-03-30 16:23:35 +02:00
Robin Gloster
9330991a37
telepathy_rakia: remove
2017-03-30 16:23:35 +02:00
Robin Gloster
8e3a595eb1
tkabber: remove
2017-03-30 16:23:35 +02:00
Robin Gloster
b9948fedc6
ncbi_tools: mark as broken and remove -fPIC
...
PIC is used by default since 16.09
2017-03-30 16:23:34 +02:00
Robin Gloster
9b89d68ef0
murmur_git: mark as broken
2017-03-30 16:23:34 +02:00
Robin Gloster
13ab07d95a
maxima-ecl: mark as broken
2017-03-30 16:23:34 +02:00
Robin Gloster
536b782450
libsingular: does not build on i686
2017-03-30 16:23:34 +02:00
Joachim F
e15b666f79
Merge pull request #24416 from Twey/redprl-2017-03-28
...
redprl: 2016-09-22 -> 2017-03-28
2017-03-30 14:02:10 +01:00
Joachim F
eaddcd82f3
Merge pull request #24447 from polynomial/update_opera
...
opera: 43.0.2442.991 -> 44.0.2510.857
2017-03-30 14:01:12 +01:00
Joachim F
e7fdb09275
Merge pull request #24459 from ndowens/sylpheed
...
sylpheed: 3.5.0 -> 3.5.1
2017-03-30 14:00:52 +01:00
Joachim F
346fdd6e38
Merge pull request #24413 from jensbin/pidginsipe
...
pidginsipe: 1.20.0 -> 1.22.0
2017-03-30 13:30:34 +01:00
Michael Alan Dorman
b49e3db19b
melpa-packages: 2017-03-29
2017-03-30 07:26:14 -04:00
Michael Alan Dorman
f58c753ff3
melpa-stable-packages: 2017-03-29
...
Removals:
- vimgolf - new repo lacks tags
2017-03-30 07:26:14 -04:00
Michael Alan Dorman
9a75c6234a
elpa-packages: 2017-03-29
2017-03-30 07:26:14 -04:00
Robin Gloster
f87de53883
sage: mark as broken
2017-03-30 12:06:08 +02:00