aboutsummaryrefslogtreecommitdiff
path: root/net/netatalk3
Commit message (Collapse)AuthorAgeFilesLines
* Fix CONFLICTS entries of multiple portsStefan Eßer2022-01-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There have been lots of missing CONFLICTS_INSTALL entries, either because conflicting ports were added without updating existing ports, due to name changes of generated packages, due to mis-understanding the format and semantics of the conflicts entries, or just due to typoes in package names. This patch is the result of a comparison of all files contained in the official packages with each other. This comparison was based on packages built with default options and may therefore have missed further conflicts with optionally installed files. Where possible, version numbers in conflicts entries have been generalized, some times taking advantage of the fact that a port cannot conflict with itself (due to logic in bsd.port.mk that supresses the pattern match result in that case). A few ports that set the conflicts variables depending on complex conditions (e.g. port options), have been left unmodified, despite probably containing outdated package names. These changes should only affect the installation of locally built ports, not the package building with poudriere. They should give an early indication of the install conflict in cases where currently the pkg command aborts an installation when it detects that an existing file would be overwritten, Approved by: portmgr (implicit)
* */*: Remove redundant '-[0-9]*' from CONFLICTSStefan Eßer2021-10-291-1/+1
| | | | | | | | | | | | | The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
* net/netatalk3: Add CPE informationBernhard Froehlich2021-09-211-1/+2
| | | | Approved by: portmgr (blanket)
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-062-6/+1
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Fix two memory corruption crashes.Joe Marcus Clarke2020-11-223-1/+40
| | | | | | | | | | | | * Use-after-free in afpd's Time Machine Code [1] * Memory overrun in extended attributes [2] PR: 251203 [1] 244191 [2] Submitted by: Jose Quinteiro <freebsd@quinteiro.org> Notes: svn path=/head/; revision=556076
* Grr...actually apply the diff to the port.Joe Marcus Clarke2020-08-241-14/+11
| | | | | | | | | I reviewed the code, but simply copied over the file. Actually apply the diff to create a usable patch to fix the -fno-common issue. Notes: svn path=/head/; revision=546083
* Fix build with -fno-common.Joe Marcus Clarke2020-08-231-0/+14
| | | | | | | | PR: 248756 Submitted by: zeising Notes: svn path=/head/; revision=545827
* Bump PORTREVISION since DBUS support is default.Joe Marcus Clarke2020-04-271-1/+1
| | | | Notes: svn path=/head/; revision=533153
* Update Python support for 3.x.Joe Marcus Clarke2020-04-272-4/+12
| | | | | | | | PR: 245970 Submitted by: dim (partially) Notes: svn path=/head/; revision=533152
* Deprecate some ports using deprecated version of pythonAntoine Brodin2020-03-081-0/+3
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=528058
* Move remaining USE_MYSQL, WANT_MYSQL_VER to USES=mysqlTobias Kortkamp2019-11-151-1/+1
| | | | Notes: svn path=/head/; revision=517643
* net: Add missing USES={gnome,php}Tobias Kortkamp2019-11-081-1/+1
| | | | Notes: svn path=/head/; revision=517064
* Truncate the trailing newlines.Joe Marcus Clarke2019-10-132-1/+2
| | | | | | | | | | This syncs the README files that are produced during pkg-install with those installed from source. This prevents a checksum issue. Reported by: vova@fbsd.ru Notes: svn path=/head/; revision=514408
* devel/libevent2: update to 2.1.11Jan Beich2019-08-021-0/+1
| | | | | | | | | | | | | Changes: https://github.com/libevent/libevent/releases/tag/release-2.1.11-stable ABI: https://abi-laboratory.pro/tracker/timeline/libevent/ PR: 239599 Reported by: GitHub (watch releases) Approved by: zeising (maintainer) MFH: 2019Q3 (maybe security, partially restores 2.1.8 ABI) Differential Revision: https://reviews.freebsd.org/D21133 Notes: svn path=/head/; revision=507877
* Restore fix for build with LibreSSL > 2.7.0.Joe Marcus Clarke2019-01-031-0/+11
| | | | | | | Reported by: Chip Marshall <chip@2bithacker.net> Notes: svn path=/head/; revision=489197
* Update to 3.1.12.Joe Marcus Clarke2018-12-313-16/+4
| | | | | | | | See http://netatalk.sourceforge.net/3.1/ReleaseNotes3.1.12.html for the changes in this release. Notes: svn path=/head/; revision=488813
* Fix the build with libressl > 2.7.0.Joe Marcus Clarke2018-05-111-1/+1
| | | | | | | | PR: 227860 Submitted by: brnrd Notes: svn path=/head/; revision=469690
* Reduce dependency on the python2 metaportAntoine Brodin2018-02-191-2/+2
| | | | | | | | PR: 225752 Submitted by: Yasuhiro KIMURA Notes: svn path=/head/; revision=462307
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.Jimmy Olgeni2017-11-021-2/+2
| | | | | | | This round is @FreeBSD.org residents except teams. Notes: svn path=/head/; revision=453381
* * Fix build with LibreSSL [1]Joe Marcus Clarke2017-05-222-3/+17
| | | | | | | | | | * Use shebang fix to fix afpstats' use of Python PR: 219366 [1] Obtained from: https://github.com/Netatalk/Netatalk/issues/91 [1] Notes: svn path=/head/; revision=441463
* Update to 3.1.11. See ↵Joe Marcus Clarke2017-03-183-16/+4
| | | | | | | | | | | http://netatalk.sourceforge.net/3.1/ReleaseNotes3.1.11.html for the list of changes in this release. PR: 217816 Notes: svn path=/head/; revision=436406
* devel/libevent2: drop historical suffix after r362796Jan Beich2017-02-201-2/+2
| | | | | | | | PR: 216777 Approved by: mm (maintainer) Notes: svn path=/head/; revision=434427
* devel/libevent2: update to 2.1.8 and cleanupJan Beich2017-02-041-1/+1
| | | | | | | | | | | | | | - DEFAULT_VERSIONS += ssl=openssl-devel is now supported - devel/py-event and devel/p5-Event-Lib are marked BROKEN Changes: https://github.com/libevent/libevent/raw/release-2.1.8-stable/whatsnew-2.1.txt Changes: https://github.com/libevent/libevent/raw/release-2.1.8-stable/ChangeLog PR: 216527 Exp-run by: antoine Approved by: mm (maintainer) Notes: svn path=/head/; revision=433286
* * Properly expand %%ZEROCONF%% in the rc.d scriptJoe Marcus Clarke2016-10-181-2/+8
| | | | | | | | | | * While here, ensure zeroconf support is disabled at configure time if neither Avahi or mDNSResponder has been chosen PR: 213597 Notes: svn path=/head/; revision=424199
* net/netatalk3: Fix PAM optionMark Felder2016-10-184-12/+26
| | | | | | | | | | | | | | | Previous rollback of PAM changes didn't update pkg-plist, so the PAM option was broken. By using @sample if PAM option is enabled we can install a default PAM config that inherits the system PAM configuration while allowing custom configs to remain untouched. PR: 213349 MFH: 2016Q4 Notes: svn path=/head/; revision=424189
* Partially revert the PAM changes to once again use pkg-message to discussJoe Marcus Clarke2016-10-103-7/+10
| | | | | | | | PAM config. This avoids overwriting existing PAM config files. But correct text for the modern PAM system. Notes: svn path=/head/; revision=423662
* * Fix PAM installation [1]Joe Marcus Clarke2016-10-103-14/+7
| | | | | | | | | | * Fix build with mDNSResponder [2] PR: 213349 [1] 213350 [2] Notes: svn path=/head/; revision=423633
* Update to 3.1.10.Joe Marcus Clarke2016-10-089-156/+72
| | | | | | | | | | | | * Clean up the port to use the new OPTIONS framework [1] * Make sure to use the right Python executable for afpstats [2] PR: 213192 [2] Submitted by: bofh [1] Differential Revision: D7537 [1] Notes: svn path=/head/; revision=423537
* Ensure that Avahi supprt is disabled if mDNSResponder isJoe Marcus Clarke2016-08-051-0/+1
| | | | | | | | | chosen for Zeroconf. PR: 211571 Notes: svn path=/head/; revision=419708
* Remove -L from CFLAGS (and add it to LDFLAGS) to fix a build issue on 10.1.Joe Marcus Clarke2016-07-261-3/+6
| | | | | | | PR: 211366 Notes: svn path=/head/; revision=419119
* Update to 3.1.9 and normalize patches.Joe Marcus Clarke2016-07-209-37/+42
| | | | | | | See http://netatalk.sourceforge.net/3.1/ReleaseNotes3.1.9.html for changes in this release. Notes: svn path=/head/; revision=418842
* Convert to @sampleAntoine Brodin2016-04-101-6/+2
| | | | Notes: svn path=/head/; revision=412964
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-7/+7
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Fixup some whitespace at the beginning of lines problems.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412342
* Update to 3.1.8. See http://netatalk.sourceforge.net/3.1/ReleaseNotes3.1.8.htmlJoe Marcus Clarke2015-12-314-11/+10
| | | | | | | for changes in this release. Notes: svn path=/head/; revision=404954
* Allow reloading of the afpd config file via the RC script.Joe Marcus Clarke2015-10-042-1/+16
| | | | | | | Reported by: Fusl <root@meo.ws> Notes: svn path=/head/; revision=398560
* Use python:2 as py-dbus is only available for Python 2.x.Joe Marcus Clarke2015-08-131-1/+1
| | | | | | | Submitted by: sunpoet Notes: svn path=/head/; revision=394070
* Fix the py-dbus dependency.Joe Marcus Clarke2015-08-101-2/+3
| | | | | | | PR: 202003 Notes: svn path=/head/; revision=393836
* - Don't cat pkg-message from MakefilesDmitry Marakasov2015-05-211-1/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=386914
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-1/+0
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Remove OSVERSION checks that do not make sense any more.Mathieu Arnold2015-04-032-7/+1
| | | | | | | | | | | | | For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209 Notes: svn path=/head/; revision=383107
* security/libgcrypt: 1.6.1 -> 1.6.2, bump dependsKurt Jaeger2015-01-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: - src/sexp.c (do_vsexp_sscan): Return error for invalid args. - cipher/md.c (_gcry_md_info): Fix a segv in case of calling with wrong parameters. - cipher/primegen.c (_gcry_generate_elg_prime): Change to return an error code, possible NULL deref in call to prime generator. - cipher/dsa.c (generate): Take care of new return code. - cipher/elgamal.c (generate): Change to return an error code. Take care of _gcry_generate_elg_prime return code. - ecc: Support the non-standard 0x40 compression flag for EdDSA. - mpi: Extend the internal mpi_get_buffer. - mpi: Fix regression for powerpc-apple-darwin detection. - Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in - Fix building for the x32 target without asm modules in mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI. - Fix ARM assembly when building __PIC__ - mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit. * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear allocated but not used bits before resizing. * tests/t-mpi-bits.c (set_bit_with_resize): New. - Use internal malloc function in fips.c. * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/. - pubkey: Re-map all deprecated RSA algo numbers. - cipher: Fix possible NULL dereference in cipher/md.c for being NULL. - Fix ARMv6 detection when CFLAGS modify target CPU architecture. PR: 193264 Approved by: cpm@fbsd.es (maintainer) Notes: svn path=/head/; revision=376062
* Update to 3.1.7. See http://netatalk.sourceforge.net/3.1/ReleaseNotes3.1.7.htmlJoe Marcus Clarke2014-12-023-14/+3
| | | | | | | for a list of changes. Notes: svn path=/head/; revision=373738
* Avoid using @cwdBaptiste Daroussin2014-11-011-7/+4
| | | | Notes: svn path=/head/; revision=372025
* Update to 3.1.6.Joe Marcus Clarke2014-09-074-17/+16
| | | | Notes: svn path=/head/; revision=367563
* Fix the py-dbus -> pydbus-common dependency.Joe Marcus Clarke2014-08-291-2/+2
| | | | | | | PR: 193125 Notes: svn path=/head/; revision=366546
* Berkeley DB cleanup, remove versions 4.0 ... 4.7.Matthias Andree2014-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | - Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports) Notes: svn path=/head/; revision=365599
* Bump PORTREVISION on more ports that depend on libgcrypt after the updateTijl Coosemans2014-08-051-0/+1
| | | | | | | | | | | | in r363436 and remove the UPDATING entry because it did not guarantee that all ports were updated nor that they were updated in the right order. Also remove libgcrypt.la again. PR: 192342 Approved by: portmgr (implicit, bump unstaged ports) Notes: svn path=/head/; revision=364143