OpenBSD CVS

CVS log for ports/www/squidclamav/Makefile


[BACK] Up to [local] / ports / www / squidclamav

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.21 / (download) - annotate - [select for diffs], Wed Sep 27 19:13:06 2023 UTC (8 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, HEAD
Changes since 1.20: +1 -1 lines
Diff to previous 1.20 (unified)

MASTER_SITES -> SITES
(left 1 pecl thingy because the module needs love as well)

Revision 1.20 / (download) - annotate - [select for diffs], Fri Mar 11 20:11:01 2022 UTC (2 years, 2 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.19: +0 -2 lines
Diff to previous 1.19 (unified)

drop RCS Ids

Revision 1.19 / (download) - annotate - [select for diffs], Mon Feb 3 20:40:41 2020 UTC (4 years, 3 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.18: +2 -4 lines
Diff to previous 1.18 (unified)

drop maintainer

Revision 1.18 / (download) - annotate - [select for diffs], Mon Jun 3 16:06:58 2019 UTC (4 years, 11 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (unified)

s/PERMIT_PACKAGE_CDROM/PERMIT_PACKAGE/ and some light whitespace tidying
in ports which I maintain

Revision 1.17 / (download) - annotate - [select for diffs], Tue Sep 4 12:46:27 2018 UTC (5 years, 8 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (unified)

convert to PKGSTEM

Revision 1.16 / (download) - annotate - [select for diffs], Mon Sep 25 10:12:42 2017 UTC (6 years, 8 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.15: +2 -1 lines
Diff to previous 1.15 (unified)

avoid nested function in AC_TRY_COMPILE

Revision 1.15 / (download) - annotate - [select for diffs], Wed Aug 31 13:33:00 2016 UTC (7 years, 9 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (unified)

update to squidclamav-6.16

Revision 1.14 / (download) - annotate - [select for diffs], Wed Mar 16 21:19:39 2016 UTC (8 years, 2 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.13: +1 -3 lines
Diff to previous 1.13 (unified)

remove SHARED_ONLY from ports that use only the gnu module

Revision 1.13 / (download) - annotate - [select for diffs], Mon Jan 18 10:47:52 2016 UTC (8 years, 4 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.12: +2 -3 lines
Diff to previous 1.12 (unified)

update to squidclamav-6.15

Revision 1.9.4.1 / (download) - annotate - [select for diffs], Mon Jan 11 17:55:26 2016 UTC (8 years, 4 months ago) by sthen
Branch: OPENBSD_5_8
Changes since 1.9: +2 -1 lines
Diff to previous 1.9 (unified) next main 1.10 (unified)

MFC patch-src_squidclamav_c r1.3

Revision 1.12 / (download) - annotate - [select for diffs], Mon Jan 11 17:53:05 2016 UTC (8 years, 4 months ago) by sthen
Branch: MAIN
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (unified)

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)

Revision 1.11 / (download) - annotate - [select for diffs], Sat Oct 17 19:35:02 2015 UTC (8 years, 7 months ago) by sthen
Branch: MAIN
Changes since 1.10: +2 -3 lines
Diff to previous 1.10 (unified)

update to squidclamav-6.14

Revision 1.10 / (download) - annotate - [select for diffs], Tue Sep 8 18:18:04 2015 UTC (8 years, 8 months ago) by sthen
Branch: MAIN
Changes since 1.9: +3 -2 lines
Diff to previous 1.9 (unified)

patch squidclamav to work with c_icap-0.4.1

Revision 1.9 / (download) - annotate - [select for diffs], Mon Jun 22 20:37:38 2015 UTC (8 years, 11 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE
Branch point for: OPENBSD_5_8
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (unified)

update to squidclamav-6.13

Revision 1.8 / (download) - annotate - [select for diffs], Fri Jan 9 18:16:56 2015 UTC (9 years, 4 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.7: +4 -4 lines
Diff to previous 1.7 (unified)

update to squidclamav 6.12
patch to revert upstream's config path change

Revision 1.7 / (download) - annotate - [select for diffs], Sat Jul 19 22:36:13 2014 UTC (9 years, 10 months ago) by ajacoutot
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (unified)

/etc/rc.d -> ${RCDIR}
(as pedantic and useless as /usr/local vs LOCALBASE|PREFIX but well...)

ok sthen@

Revision 1.6 / (download) - annotate - [select for diffs], Thu Jul 10 13:09:07 2014 UTC (9 years, 10 months ago) by ajacoutot
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5 (unified)

rc.conf.local is in man(1) section 8, at least for now.

Revision 1.5 / (download) - annotate - [select for diffs], Mon Mar 31 13:04:11 2014 UTC (10 years, 2 months ago) by sthen
Branch: MAIN
Changes since 1.4: +8 -6 lines
Diff to previous 1.4 (unified)

update to squidclamav 6.11

Revision 1.4 / (download) - annotate - [select for diffs], Wed Nov 6 13:07:43 2013 UTC (10 years, 6 months ago) by sthen
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (unified)

add a README file, prompted by a mail from Kaya Saman

Revision 1.3 / (download) - annotate - [select for diffs], Tue Nov 5 15:05:32 2013 UTC (10 years, 6 months ago) by sthen
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (unified)

possibly gratuitous, but bump for safety due to c-icap changes

Revision 1.2 / (download) - annotate - [select for diffs], Thu Oct 31 21:12:13 2013 UTC (10 years, 7 months ago) by sthen
Branch: MAIN
Changes since 1.1: +2 -1 lines
Diff to previous 1.1 (unified)

bump REVISION for any ports using route messages. regen some distinfos and
remove unnecessary USE_GROFFs while there.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Tue Apr 16 10:00:46 2013 UTC (11 years, 1 month ago) by sthen
Branch: sthen
CVS Tags: sthen_20130416, OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (unified)

import ports/www/squidclamav, ok benoit

ClamAV-based virus scanner for c-icap. This uses clamd to scan;
for an alternative using libclamav, see the c-icap-clamav package.

Revision 1.1 / (download) - annotate - [select for diffs], Tue Apr 16 10:00:46 2013 UTC (11 years, 1 month ago) by sthen
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.