From patchwork Thu Mar 5 20:44:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 446891 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id C8E6C1400F1 for ; Fri, 6 Mar 2015 07:44:31 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=zacarias.com.ar header.i=@zacarias.com.ar header.b=IqwEvaRS; dkim-adsp=fail (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B7114A15C2; Thu, 5 Mar 2015 20:44:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fa5RayRljQzu; Thu, 5 Mar 2015 20:44:29 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9E5FAA1722; Thu, 5 Mar 2015 20:44:29 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 6BF2B1C26F9 for ; Thu, 5 Mar 2015 20:44:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6772C9158E for ; Thu, 5 Mar 2015 20:44:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SbABUGPMHzaY for ; Thu, 5 Mar 2015 20:44:26 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [176.9.42.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id CDECC9125A for ; Thu, 5 Mar 2015 20:44:25 +0000 (UTC) Received: from asgard (cpe-181-46-99-160.telecentro-reversos.com.ar [181.46.99.160] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.14.9/8.14.9) with ESMTP id t25KiFGv018576 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 5 Mar 2015 20:44:19 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1425588260; bh=TsPMzKsAvaLABZ1prADPtSexuzviGmSqhZzQamoicd8=; h=From:To:Cc:Subject:Date; b=IqwEvaRSeSHV6cu/QbCuBozV1tEHl2ZlNt/T6ArNoEgESd2khupacejpdRMCDKto5 64RUNsAZKGWdTvkdlhPWihJxYHNzh30AKaP0YXb3Oldc7vhTEnVw9CJxvogVUCWn1h owczLC4DN5NMgAnbNcU2Ddx9X6OGbaCdUNsGW5q4= Received: by asgard (sSMTP sendmail emulation); Thu, 05 Mar 2015 17:44:09 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 5 Mar 2015 17:44:08 -0300 Message-Id: <1425588249-20942-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.0.5 X-Virus-Scanned: clamav-milter 0.98.6 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH 1/2] samba: deprecate package due to EOL X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Samba 3.6.x is now EOL, people should move to samba4. See: https://www.samba.org/samba/history/samba-4.2.0.html Signed-off-by: Gustavo Zacarias --- package/samba/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/samba/Config.in b/package/samba/Config.in index 9d04851..7ff8428 100644 --- a/package/samba/Config.in +++ b/package/samba/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_SAMBA bool "samba" + depends on BR2_DEPRECATED_SINCE_2015_05 depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_USE_MMU # fork() depends on !BR2_nios2 # binary too large, relocations don't fit @@ -15,6 +16,7 @@ config BR2_PACKAGE_SAMBA so choose only the components you need. comment "samba needs a toolchain w/ threads" + depends on BR2_DEPRECATED_SINCE_2015_05 depends on BR2_USE_MMU depends on !BR2_TOOLCHAIN_HAS_THREADS