From b7ea144dfb52966cc50b2ffc19d8dc9d978892e5 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 17 Jan 2014 11:22:10 +0100 Subject: Add a warning for packages without .AURINFO Display a deprecation warning when a package without meta data is submitted. The user can still decide to ignore that warning by resubmitting the package but doing so is not recommended. Signed-off-by: Lukas Fleischer --- web/html/pkgsubmit.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'web/html/pkgsubmit.php') diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 5d4b917..9dba945 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -24,6 +24,7 @@ if ($uid): # Track upload errors $error = ""; + $ignore_missing_aurinfo = 0; if (isset($_REQUEST['pkgsubmit'])) { @@ -116,6 +117,11 @@ if ($uid): if (!$error && empty($pkgbuild_raw)) { $error = __("Error trying to unpack upload - PKGBUILD does not exist."); } + + if (!$error && empty($srcinfo_raw) && (!isset($_POST['ignore_missing_aurinfo']) || $_POST['ignore_missing_aurinfo'] != 1)) { + $ignore_missing_aurinfo = 1; + $error = __("The source package does not contain any meta data. Please use `mkaurball` to create AUR source packages. Support for source packages without .AURINFO entries will be removed in an upcoming release! You can resubmit the package if you want to proceed anyway."); + } } # if no error, get list of directory contents and process PKGBUILD @@ -492,6 +498,7 @@ html_header("Submit");
+

-- cgit v1.2.3-54-g00ecf