Bug 176525 - mail/smtp-gated update and maintainer change
Summary: mail/smtp-gated update and maintainer change
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Felippe de Meirelles Motta
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-28 16:50 UTC by Danilo Egêa Gondolfo
Modified: 2013-03-06 17:36 UTC (History)
0 users

See Also:


Attachments
file.diff (1.62 KB, patch)
2013-02-28 16:50 UTC, Danilo Egêa Gondolfo
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Danilo Egêa Gondolfo 2013-02-28 16:50:02 UTC
mail/smtp-gated update.

Changes:
- Update from 1.4.18.8 to 1.4.20.0
- Take maintainership
- Added one patch to fix build with CLANG

Fix: Patch attached with submission follows:
Comment 1 Felippe de Meirelles Motta freebsd_committer freebsd_triage 2013-02-28 17:03:31 UTC
Responsible Changed
From-To: freebsd-ports-bugs->lippe

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-03-06 17:18:53 UTC
Author: lippe
Date: Wed Mar  6 17:18:45 2013
New Revision: 313529
URL: http://svnweb.freebsd.org/changeset/ports/313529

Log:
  - Pass maintainership to submitter.
  - Added one patch to fix build with CLANG.
  
  PR:		ports/176525
  Submitted by:	Danilo Egea Gondolfo <danilogondolfo@gmail.com> (maintainer)

Added:
  head/mail/smtp-gated/files/patch-src__smtp-gated.c   (contents, props changed)
Modified:
  head/mail/smtp-gated/Makefile   (contents, props changed)

Modified: head/mail/smtp-gated/Makefile
==============================================================================
--- head/mail/smtp-gated/Makefile	Wed Mar  6 17:10:52 2013	(r313528)
+++ head/mail/smtp-gated/Makefile	Wed Mar  6 17:18:45 2013	(r313529)
@@ -3,10 +3,11 @@
 
 PORTNAME=	smtp-gated
 PORTVERSION=	1.4.20.0
+PORTREVISION=	1
 CATEGORIES=	mail
 MASTER_SITES=	http://software.klolik.org/smtp-gated/files/
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	danilogondolfo@gmail.com
 COMMENT=	Proxy for SMTP sessions with virus and spam scan
 
 LICENSE=	GPLv2

Added: head/mail/smtp-gated/files/patch-src__smtp-gated.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/smtp-gated/files/patch-src__smtp-gated.c	Wed Mar  6 17:18:45 2013	(r313529)
@@ -0,0 +1,14 @@
+--- ../../smtp-gated-1.4.20.0/src/smtp-gated.c	2013-02-26 08:06:59.000000000 -0300
++++ src/smtp-gated.c	2013-02-28 09:32:47.000000000 -0300
+@@ -820,7 +820,11 @@
+ 	}
+ } /* cleanup() */
+ 
++#ifdef __clang__
++static inline void cleanup_exit(int code)
++#else
+ inline void cleanup_exit(int code)
++#endif
+ {
+ 	cleanup();
+ 	exit(code);
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Felippe de Meirelles Motta freebsd_committer freebsd_triage 2013-03-06 17:36:54 UTC
State Changed
From-To: open->closed

Committed. Thanks!