tpaul
8bd428f633
php-composer: Change to "Added" (Forgot CTYPE=add)
2020-03-14 04:35:57 +00:00
tpaul
da9de360c5
doc: Updated devel/php-composer to 1.10.1
2020-03-14 04:30:10 +00:00
tpaul
861b0a454e
devel/Makefile: add php-composer
2020-03-14 04:28:23 +00:00
tpaul
f9551bf857
devel/php-composer: Import version 1.10.1
...
Composer is a tool for dependency management in PHP. It allows you to
declare the libraries your project depends on and it will manage
(install/update) them for you.
2020-03-14 04:26:39 +00:00
fox
7ca5a985e0
doc: Updated audio/fasttracker2 to 1.12
2020-03-14 03:23:18 +00:00
fox
522601300a
audio/fasttracker2: Update to v1.12
...
Changes since v1.11:
v1.12 - 13.03.2020
- Bugfix: Some broken XMs/XIs have a non-sense value in the "mute" instrument
field. This is now clamped correctly so that such modules and instruments
will not yield muted sound. This fix was actually present earlier, but it was
broken again some time ago. You will very rarely bump into this issue anyway.
- Micro-optimization to how voice/ramp volumes are calculated (4x DIVs removed)
- Windows/macOS: SDL was upgraded from 2.0.10 to 2.0.12
2020-03-14 03:21:42 +00:00
fox
d25a396051
doc: Updated chat/ircd-hybrid to 8.2.30
2020-03-14 02:52:56 +00:00
fox
726a1f17d5
chat/ircd-hybrid: Updates to 8.2.30
...
Changes since 8.2.29:
-- Noteworthy changes in version 8.2.30 (2020-03-01)
o) "QUOTE HELP extban" didn't work because the extban help file hasn't been
installed properly during 'make install'
o) Fixed broken libcrypto detection which caused the ircd not to work with
openssl under certain circumstances
o) Extban $n of type 'acting' has been implemented. This extban prevents
matching users from changing their nick while in the channel. Users
with voice or above are not affected.
o) Channel mode +N has been changed so channel members with +v can change
their nick name as well
o) For a full list of all changes in this release, see https://git.io/JvgAq
2020-03-14 02:52:35 +00:00
wiz
f9aeb106c2
devIL: remove duplicate line
2020-03-14 00:27:03 +00:00
wiz
0908c5406f
devIL: fix options handling in bl3.mk
2020-03-14 00:22:49 +00:00
wiz
6d28b7bef7
oce: fix option check in bl3.mk file
2020-03-14 00:16:03 +00:00
gdt
52d38b3cdb
mk/extract: move EXTRACT_USING earlier
...
In an attempt to resolve problems on SunOS, move EXTRACT_USING to the
early variables file, in the hopes that it will be defined before code
that checks it is executed.
2020-03-14 00:14:35 +00:00
gdt
fdb9ad4539
wxGTK28: skip checking configure.in
...
We patch configure, so the fact that configure.in has test == is not
relevant.
2020-03-14 00:03:19 +00:00
gdt
addb1f2afd
gvfs: Change dependency to samba4
...
Previously, this depended on the unmaintained net/samba (3).
(Perhaps this should not depend on samba by default, and perhaps
PGKREVISION 47 is a clue that packages should stop depending on gvfs;
those issues are left for future work.)
2020-03-13 22:56:30 +00:00
gdt
b358ec3320
net/samba*: Update DESCR
...
Based on input from Mike Pumford.
(It is acknowledged that samba4 is 4.11 and should be 4.12, but that's
normal being behind, not intended, as I see it.)
2020-03-13 22:12:38 +00:00
tnn
4d62fc26e3
revert my change for now
...
Was able to reproduce the hang again. Working on reduced test case.
2020-03-13 21:49:32 +00:00
tnn
5acceed452
tinyproxy: look for config file in correct directory
2020-03-13 21:03:41 +00:00
wiz
3fbe685807
py-tryton*: put python-2.7 restriction only in those packages where it belongs
...
(and the meta package)
Fix PLIST for py-trytond for all python versions.
2020-03-13 20:20:48 +00:00
wiz
0083db8d23
python: support html2text in versioned_dependencies
...
Update help text.
2020-03-13 19:21:16 +00:00
tnn
364918c2a7
openexr: skip portability check for util/reformat.sh (unused file)
2020-03-13 19:14:39 +00:00
jperkin
4b28682ae7
doc: Updated lang/rust to 1.42.0
2020-03-13 18:35:03 +00:00
jperkin
a9837d4c6e
rust: Update to 1.42.0.
...
Version 1.42.0 (2020-03-12)
==========================
Language
--------
- [You can now use the slice pattern syntax with subslices.][67712] e.g.
```rust
fn foo(words: &[&str]) {
match words {
["Hello", "World", "!", ..] => println!("Hello World!"),
["Foo", "Bar", ..] => println!("Baz"),
rest => println!("{:?}", rest),
}
}
```
- [You can now use `#[repr(transparent)]` on univariant `enum`s.][68122] Meaning
that you can create an enum that has the exact layout and ABI of the type
it contains.
- [There are some *syntax-only* changes:][67131]
- `default` is syntactically allowed before items in `trait` definitions.
- Items in `impl`s (i.e. `const`s, `type`s, and `fn`s) may syntactically
leave out their bodies in favor of `;`.
- Bounds on associated types in `impl`s are now syntactically allowed
(e.g. `type Foo: Ord;`).
- `...` (the C-variadic type) may occur syntactically directly as the type of
any function parameter.
These are still rejected *semantically*, so you will likely receive an error
but these changes can be seen and parsed by procedural macros and
conditional compilation.
Compiler
--------
- [Added tier 2* support for `armv7a-none-eabi`.][68253]
- [Added tier 2 support for `riscv64gc-unknown-linux-gnu`.][68339]
- [`Option::{expect,unwrap}` and
`Result::{expect, expect_err, unwrap, unwrap_err}` now produce panic messages
pointing to the location where they were called, rather than
`core`'s internals. ][67887]
* Refer to Rust's [platform support page][forge-platform-support] for more
information on Rust's tiered platform support.
Libraries
---------
- [`iter::Empty<T>` now implements `Send` and `Sync` for any `T`.][68348]
- [`Pin::{map_unchecked, map_unchecked_mut}` no longer require the return type
to implement `Sized`.][67935]
- [`io::Cursor` now derives `PartialEq` and `Eq`.][67233]
- [`Layout::new` is now `const`.][66254]
- [Added Standard Library support for `riscv64gc-unknown-linux-gnu`.][66899]
Stabilized APIs
---------------
- [`CondVar::wait_while`]
- [`CondVar::wait_timeout_while`]
- [`DebugMap::key`]
- [`DebugMap::value`]
- [`ManuallyDrop::take`]
- [`matches!`]
- [`ptr::slice_from_raw_parts_mut`]
- [`ptr::slice_from_raw_parts`]
Cargo
-----
- [You no longer need to include `extern crate proc_macro;` to be able to
`use proc_macro;` in the `2018` edition.][cargo/7700]
Compatibility Notes
-------------------
- [`Error::description` has been deprecated, and its use will now produce a
warning.][66919] It's recommended to use `Display`/`to_string` instead.
- [`use $crate;` inside macros is now a hard error.][37390] The compiler
emitted forward compatibility warnings since Rust 1.14.0.
- [As previously announced, this release reduces the level of support for
32-bit Apple targets to tier 3.][apple-32bit-drop]. This means that the
source code is still available to build, but the targets are no longer tested
and no release binary is distributed by the Rust project. Please refer to the
linked blog post for more information.
[37390]: https://github.com/rust-lang/rust/issues/37390/
[68253]: https://github.com/rust-lang/rust/pull/68253/
[68348]: https://github.com/rust-lang/rust/pull/68348/
[67935]: https://github.com/rust-lang/rust/pull/67935/
[68339]: https://github.com/rust-lang/rust/pull/68339/
[68122]: https://github.com/rust-lang/rust/pull/68122/
[67712]: https://github.com/rust-lang/rust/pull/67712/
[67887]: https://github.com/rust-lang/rust/pull/67887/
[67131]: https://github.com/rust-lang/rust/pull/67131/
[67233]: https://github.com/rust-lang/rust/pull/67233/
[66899]: https://github.com/rust-lang/rust/pull/66899/
[66919]: https://github.com/rust-lang/rust/pull/66919/
[66254]: https://github.com/rust-lang/rust/pull/66254/
[cargo/7700]: https://github.com/rust-lang/cargo/pull/7700
[`DebugMap::key`]: https://doc.rust-lang.org/stable/std/fmt/struct.DebugMap.html#method.key
[`DebugMap::value`]: https://doc.rust-lang.org/stable/std/fmt/struct.DebugMap.html#method.value
[`ManuallyDrop::take`]: https://doc.rust-lang.org/stable/std/mem/struct.ManuallyDrop.html#method.take
[`matches!`]: https://doc.rust-lang.org/stable/std/macro.matches.html
[`ptr::slice_from_raw_parts_mut`]: https://doc.rust-lang.org/stable/std/ptr/fn.slice_from_raw_parts_mut.html
[`ptr::slice_from_raw_parts`]: https://doc.rust-lang.org/stable/std/ptr/fn.slice_from_raw_parts.html
[`CondVar::wait_while`]: https://doc.rust-lang.org/stable/std/sync/struct.Condvar.html#method.wait_while
[`CondVar::wait_timeout_while`]: https://doc.rust-lang.org/stable/std/sync/struct.Condvar.html#method.wait_timeout_while
2020-03-13 18:34:53 +00:00
wiz
f6b832f896
doc: Updated security/tor-browser to 9.0.6
2020-03-13 17:59:39 +00:00
wiz
e61340a309
tor-browser: update to 9.0.6
...
This version is now based on firefox68-esr and builds with the current
rust in pkgsrc.
2020-03-13 17:59:27 +00:00
tnn
02f65fa0df
libjpeg-turbo: skip portability check for release/makemacpkg.in
2020-03-13 17:55:33 +00:00
rillig
c166122011
mk/tools: in show-all-tools, sort tool variables by relevance
...
Before, these variables were sorted alphabetically, which made the output
more difficult to read.
2020-03-13 17:33:02 +00:00
tnn
aecc1bcfa0
gimp: shell portability
2020-03-13 16:51:00 +00:00
rillig
6659486108
pkgtools/check-portability: elimitate common subexpression
2020-03-13 16:43:05 +00:00
mef
25d9b7b573
doc: Updated net/filezilla to 3.47.2.1
2020-03-13 16:26:06 +00:00
mef
b9d4136fd5
(net/filezilla) Updated to 3.47.2.1. Following log is the same as 3.47.2
...
3.47.2.1 (2020-03-11)
(ChangeLog says just bump)
Bugfixes and minor changes:
macOS: Potential fix for clipped text labels on a few systems
SFTP: Backported selected fixes from developement versions of PuTTY
Fixed value range for directional transfer limits
Fixed layout issues if changing to/from comparative search
2020-03-13 16:25:53 +00:00
rillig
62126586ce
doc: Updated pkgtools/check-portability to 19.4.2
2020-03-13 16:20:43 +00:00
rillig
c03a78cece
pkgtools/check-portability: update to 19.4.2
...
Changes since 19.4.1:
Fixed an assertion error when reading binary file, reported by tnn via
private mail.
2020-03-13 16:20:34 +00:00
tnn
7b61496d40
sylpheed: skip portability check for rpm build script
2020-03-13 16:10:11 +00:00
nia
f4f46b9887
7kaa-music: Needs 7kaa
2020-03-13 15:57:20 +00:00
nia
e90710771d
seamonkey-l10n: Add an explicit dependency on the main package
2020-03-13 15:50:07 +00:00
nia
fbc31afdf6
thunderbird*-l10n: Add explicit dependencies on the main package
...
Basically the same as for firefox
2020-03-13 15:48:52 +00:00
nia
0770051ff3
firefox*-l10n: Avoid building these if Firefox doesn't get built.
...
Basically add an explicit DEPENDS line on the main firefox packages, these
language packs aren't useful without firefox.
2020-03-13 15:46:21 +00:00
tnn
96df9edea0
graphviz: fix shell portability issues
2020-03-13 15:16:00 +00:00
ryoon
585de0fd3d
shared-mime-info: Fix POSIX shell portability issue
2020-03-13 15:12:41 +00:00
bacon
69d359edac
doc: Updated lang/gcc7-libs to 7.5.0nb2
2020-03-13 15:01:08 +00:00
bacon
6df273334c
doc: Updated lang/gcc7 to 7.5.0nb1
2020-03-13 15:00:57 +00:00
bacon
53c9bdffc0
lang/gcc7: Fix build on RHEL/CentOS by requiring c99
...
Also bump PKGREVISION for lang/gcc7-libs per comment in Makefile
2020-03-13 15:00:36 +00:00
gdt
daf8bb227d
geography/osm2pgsql: cmake build dir cleanup
...
Per pkglint, use a build directory within WRKSRC. Make the
relationship between creating the build dir and using it really
obvious.
2020-03-13 14:50:40 +00:00
tnn
cce3408655
qemu: enable iscsi initiator support
2020-03-13 13:57:04 +00:00
tnn
dfc42e92b5
mk: document iscsi PKG_OPTION
2020-03-13 13:26:34 +00:00
tnn
39ff0dae62
doc: add net/libiscsi
2020-03-13 13:23:58 +00:00
tnn
8a499e478d
net/libiscsi: import libiscsi-1.19.0
...
Libiscsi is a client-side library to implement the iSCSI protocol that can
be used to access the resources of an iSCSI target.
The library is fully asynchronous with regards to iSCSI commands and SCSI
tasks, but a synchronous layer is also provided for ease of use for simpler
applications.
2020-03-13 13:21:39 +00:00
gdt
dd1feeb9d6
doc: Updated geography/osm2pgsql to 1.2.1
2020-03-13 13:08:57 +00:00
gdt
2b786a628d
geography/osm2pgsql: Update to 1.2.1
...
Upstream psudo-NEWS:
1.2.1 and 1.2.0 are bugfix releases.
1.0.0:
This release finally drops support for old-style multipolygons.
Doing so allowed a major overhaul of the processing pipeline.
Imports are now entirely done in the first processing stage. The second,
much slower processing stage is only needed when updating existing
databases. Data is entirely streamed into the database using COPY, which
reduces the number of database connections needed.
Other major changes include
- better error handling in Lua backend
- process all OSM objects again when extra attributes are requested
- enable running tests in pg_virtualenv
- add support for configurable Gazetteer style
- allow to disable RAM node cache with -C 0
2020-03-13 13:08:51 +00:00
nia
a503c12f82
dolphin-emu: Disable special aarch64 bits for now, they don't build
2020-03-13 12:12:01 +00:00