From owner-dev-commits-ports-all@freebsd.org Sat May 22 21:16:38 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6DF19637BB8; Sat, 22 May 2021 21:16:38 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FnbrP6WPYz4tlx; Sat, 22 May 2021 21:16:37 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C46F53266; Sat, 22 May 2021 21:16:37 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14MLGbML034301; Sat, 22 May 2021 21:16:37 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14MLGbuk034300; Sat, 22 May 2021 21:16:37 GMT (envelope-from git) Date: Sat, 22 May 2021 21:16:37 GMT Message-Id: <202105222116.14MLGbuk034300@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Jose Alonso Cardenas Marquez Subject: git: f7111cff7778 - main - astro/py-indiweb: NEW: Simple web application to manage INDI server MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: acm X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: f7111cff77781ba0c3b8458bda73724668e76c6c Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 May 2021 21:16:38 -0000 The branch main has been updated by acm: URL: https://cgit.FreeBSD.org/ports/commit/?id=f7111cff77781ba0c3b8458bda73724668e76c6c commit f7111cff77781ba0c3b8458bda73724668e76c6c Author: Jose Alonso Cardenas Marquez AuthorDate: 2021-05-22 21:16:00 +0000 Commit: Jose Alonso Cardenas Marquez CommitDate: 2021-05-22 21:16:23 +0000 astro/py-indiweb: NEW: Simple web application to manage INDI server INDI Web Manager is a simple web application to manage INDI server WWW: https://github.com/knro/indiwebmanager --- astro/Makefile | 1 + astro/py-indiweb/Makefile | 20 ++++++++++++++++++++ astro/py-indiweb/distinfo | 3 +++ astro/py-indiweb/pkg-descr | 3 +++ 4 files changed, 27 insertions(+) diff --git a/astro/Makefile b/astro/Makefile index 91463556f205..aa356ae427c0 100644 --- a/astro/Makefile +++ b/astro/Makefile @@ -81,6 +81,7 @@ SUBDIR += py-astropy-helpers SUBDIR += py-ephem SUBDIR += py-horoscopegenerator + SUBDIR += py-indiweb SUBDIR += py-jplephem SUBDIR += py-metar SUBDIR += py-metpy diff --git a/astro/py-indiweb/Makefile b/astro/py-indiweb/Makefile new file mode 100644 index 000000000000..ea5a9e11ca0e --- /dev/null +++ b/astro/py-indiweb/Makefile @@ -0,0 +1,20 @@ +PORTNAME= indiweb +PORTVERSION= 0.1.7 +CATEGORIES= astro python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= acm@FreeBSD.org +COMMENT= Simple web application to manage INDI server + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}bottle>=0:www/py-bottle@${PY_FLAVOR} \ + +USES= python:3.5+ +USE_PYTHON= autoplist concurrent distutils + +.include diff --git a/astro/py-indiweb/distinfo b/astro/py-indiweb/distinfo new file mode 100644 index 000000000000..4f5366a1e430 --- /dev/null +++ b/astro/py-indiweb/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1621711052 +SHA256 (indiweb-0.1.7.tar.gz) = cd12917c7b62c16b57f2e130e57fb25071ef79767b85e518e6dcbbcc4a6f2ec3 +SIZE (indiweb-0.1.7.tar.gz) = 368004 diff --git a/astro/py-indiweb/pkg-descr b/astro/py-indiweb/pkg-descr new file mode 100644 index 000000000000..db07af163e9c --- /dev/null +++ b/astro/py-indiweb/pkg-descr @@ -0,0 +1,3 @@ +INDI Web Manager is a simple web application to manage INDI server + +WWW: https://github.com/knro/indiwebmanager