landry
58afcfa1eb
Import cantata 1.5.2.
...
Selfhost the distfile, since upstream is now working on cantata v2 and
previous tarballs were hosted on google code, they were moved to .. a
google drive, linked from a github page. yay.
Cantata is a graphical client for MPD. It contains the following features:
* Multiple MPD collections.
* Highly customisable layout.
* Songs grouped by album in play queue.
* Context view to show artist, album, and song information of current track.
* Simple tag editor.
* File organizer - use tags to organize files and folders.
* USB-Mass-Storage and MTP device support.
* MPRISv2 DBUS interface.
* Basic support for touch-style interface (views are made 'flickable')
* Scrobbling.
ok sthen@
2016-01-12 20:44:29 +00:00
sthen
02b83defa9
add file missed from previous commit; from Ryan Freeman
...
didn't build -> no bump
2016-01-12 17:31:38 +00:00
sebastia
2dcb5219df
Update to 2.3.5
2016-01-12 17:29:58 +00:00
sebastia
e48be17969
Update to 2.3.5
2016-01-12 17:29:34 +00:00
dcoppa
05af2ab2d5
Add trailing slash to ${HOMEPAGE}
...
pointed out by sthen@
2016-01-12 16:46:29 +00:00
ajacoutot
be02f02e9a
openbsd: only PID 1 is special (upstream)
2016-01-12 16:38:29 +00:00
sthen
ba9e894450
remove the 'use File::ShareDir' line since the call is patched away;
...
found by ajacoutot@
2016-01-12 16:34:12 +00:00
dcoppa
4b4b44dc90
Update to lynx-2.8.9pl8
...
From new maintainer Frederic Cambus
2016-01-12 16:05:54 +00:00
espie
d17d09f4bb
missed bump
2016-01-12 15:36:36 +00:00
ajacoutot
4adfc99201
Missing build depends.
2016-01-12 15:10:43 +00:00
tsg
9eba578547
Add myself.
...
OK ajacoutot@ landry@
2016-01-12 13:52:56 +00:00
ajacoutot
095d14d36e
Update to trytond-3.2.12.
2016-01-12 13:38:25 +00:00
ajacoutot
b552693a3a
Update to tryton-3.2.12.
2016-01-12 13:37:18 +00:00
ajacoutot
255c023a4c
Fix MAINTAINER email address.
2016-01-12 13:21:40 +00:00
ajacoutot
1ef81463b6
Consistent email address.
2016-01-12 13:19:37 +00:00
ajacoutot
5eb99ec853
Consistent email address.
2016-01-12 13:15:20 +00:00
sthen
ecc8b871f8
committed upstream
2016-01-12 13:13:43 +00:00
jasper
e9fc06571f
require fixed vamp-sdk
2016-01-12 13:10:44 +00:00
jasper
541f548344
previous update didnt install shared libd, which broke audacity.
...
spotted by naddy@
2016-01-12 13:09:35 +00:00
ajacoutot
bd5dcf8602
Bump.
...
I really fucked this up... sorry about that, I will triple check
portbump bext time.
2016-01-12 12:55:51 +00:00
dcoppa
9fb3614f1d
Revert previous: 0.9.14 is broken.
...
I'll open an issue on upstream's github.
2016-01-12 10:22:32 +00:00
ajacoutot
c73a906c64
Update to gnucash-2.6.11.
2016-01-12 09:43:35 +00:00
czarkoff
96f5c01706
update to re-0.4.14 rem-0.4.7 baresip-0.4.16
...
OK feinerer@, sthen@
2016-01-12 09:22:07 +00:00
czarkoff
5e52c82996
update to daala git as of 20160106
...
OK feinerer@, sthen@
2016-01-12 09:15:42 +00:00
czarkoff
edae0d4458
update to mpv 0.14.0
...
Original patch from brad@
OK feinerer@, sthen@
2016-01-12 09:09:57 +00:00
espie
27ce2ffe42
more bumps
2016-01-12 08:56:53 +00:00
ajacoutot
ab2d3c2ba7
FULLPKGNAME in PLIST again... thank you make plist.
...
Fix before it breaks to a REVISION bump or something.
2016-01-12 07:08:25 +00:00
ajacoutot
1d1d7e8810
Update to harfbuzz-1.1.3.
2016-01-12 07:05:13 +00:00
espie
c6051a4486
more missed bumps, committing them as I run into them
2016-01-11 23:41:34 +00:00
sthen
e4403cbc1b
Add a patch to re-allow the CRYPT password scheme in Dovecot. This scheme
...
checks the password against the stored hash using the OS crypt() function
and supports whichever schemes are supported by the OS, but currently
Dovecot makes some assumptions about hash format (to work around a
segfault when used on OpenBSD following removal of DES from crypt).
'doveadm pw -s CRYPT' (tool to generate hashed passwords) will now produce
bcrypt passwords rather than not allowing the scheme at all. More info in
the patch itself. OK Brad.
2016-01-11 22:45:26 +00:00
landry
eab25dd5e1
Update to josm r9329 and switch MODJAVA_VER to 1.7+.
...
From maintainer Holger Mikolon.
2016-01-11 22:18:33 +00:00
espie
9c02c5b064
yet another maintainer bump, sloppy antoine week
2016-01-11 21:32:37 +00:00
espie
0ee7f20c64
MAINTAINER change -> bump. Come on antoine...
2016-01-11 21:31:35 +00:00
espie
9add99b304
sloppy, antoine
2016-01-11 21:29:50 +00:00
sthen
45320683cc
Fix what looks like a typo (BUFSIZ/LBUFSIZ) in squidclamav with safebrowsing
...
checks enabled. Triggers the "backwards memcpy" checks but it's really an
overrun.
Found with this, it's not perfect but useful nonetheless.
#include <syslog.h>
#define memcpy(dst0, src0, length0) do { \
char *dst = (char *)dst0; \
const char *src = (char *)src0; \
size_t length = (size_t) length0; \
\
if ((dst < src && dst + length > src) || \
(src < dst && src + length > dst)) \
syslog(LOG_CRIT, "backwards memcpy %s:%u len=%llu", \
__FILE__, __LINE__, (uint64_t) length); \
memmove (dst, src, length); } while (0)
2016-01-11 17:53:05 +00:00
jasper
c26f56355a
- sync to what's merged upstream
...
- the xdr_uint64_t parts are merged upstream, but leaving it out of CVS
for it's a new file, automake, etc.
thanks to Roman Bogorodskiy for submitting/reviewing our patches
no pkg change
2016-01-11 17:47:33 +00:00
sthen
78d271183e
fix a couple of time_t format string issues in www/c-icap, spotted while
...
trying to track down a backwards memcpy
2016-01-11 17:05:46 +00:00
robert
1f64da10f5
security update to 7.0.2
2016-01-11 16:55:35 +00:00
robert
cc7be5a974
security update to 5.6.17
2016-01-11 16:52:18 +00:00
robert
866392c3e9
security update to 5.5.31
2016-01-11 16:46:38 +00:00
naddy
3e5d64ee2b
update to 0.7.81 for miscellaneous obscure fixes
2016-01-11 16:22:12 +00:00
kili
055a3699d2
Register removed hs-ports.
2016-01-11 15:51:18 +00:00
abieber
ad6992ae4d
Update from MAINTAINER Eric Lalonde <eric.c.lalonde@gmail.com>.
...
Changes include fixes for memleaks, better tmux support, character
set decoding, improved UTF-8 support.
Additionally, new features are listed at
https://weechat.org/files/changelog/ChangeLog-1.4.html
OK sthen@
2016-01-11 15:11:31 +00:00
shadchin
a2684ab3e2
+py-ipython_genutils,python3
...
+py-simplegeneric,python3
+py-traitlets,python3
2016-01-11 14:30:23 +00:00
shadchin
9ee956bee9
Add python3 flavor and take maintainer.
...
ok ajacoutot@
2016-01-11 14:28:52 +00:00
shadchin
0dfaf1b10d
Add python3 flavor and enable test.
...
ok ajacoutot@
2016-01-11 14:26:52 +00:00
dcoppa
3010708f94
Update to ccid-1.4.22
2016-01-11 14:24:03 +00:00
shadchin
a3a0466ac2
Add python3 flavor and enable doctest.
...
ok ajacoutot@
2016-01-11 14:22:59 +00:00
shadchin
79d9081335
+py-pickleshare,python3
2016-01-11 14:21:20 +00:00
shadchin
50a3a7698c
Add python3 flavor and take maintainer.
...
ok ajacoutot@
2016-01-11 14:20:06 +00:00