Received: from mail-wr1-f54.google.com (mail-wr1-f54.google.com [209.85.221.54]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id CB5F5782CCC for ; Fri, 20 Aug 2021 09:08:23 +0000 (UTC) Received: by mail-wr1-f54.google.com with SMTP id k8so13176990wrn.3 for ; Fri, 20 Aug 2021 02:08:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=oVoMO4nMykAsTnFNUMMripMGgb4h7jT3mogUFRfatZY=; b=U07XJfL18tOFn6HcPwgdYoGuyw39vxswhDghbME1MQQMbl3fTFlWuzCpSIU2k0pmCP l6Cyfux/UDghucsyAknDSFfLf/qUgjDqw7Y2+P7An9S4N28FzhJSaciaI/9ERF2ugrr5 ddS3n7cNxVe2zQgrqxOEvzEHHG43+L1vdKxK+djA4BfZ+bd6gedwSEMF0w4noZ4aUvn+ YH8Z54HQTLzgR4IALEYCr10KwHAoPxmo5MvPoE86Z95dd8nxkj1JXtqRE4UP7w4t4tIf X+aM2IbQ0V2J8fnzaawhuDjyds3AereYYReEqqKWNIRJt6Qt1t/s1FLx4V4TlcrUpHDS SjrQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:from:to:cc:subject:date:message-id :mime-version:content-transfer-encoding; bh=oVoMO4nMykAsTnFNUMMripMGgb4h7jT3mogUFRfatZY=; b=Dch8DA2UpPXlXoiLW1tAMMJdEI2VLM6oEOcwOgGlBuyfbz1i37Bh+zmmv2/EHs8pml 3zsxfQRl2KXMqd/YB7i0ygmGtviHPkr3zn5SieCU7RuDW37ka7akttHDwH93lUnXtyS/ bi/OEOYLcZLemwBmcMbm40P/a3cvP2O5qhBTSeSQK9xnJPhzj2t6LchdczWR705EsNQa 9khh7IvkDWNt91ZtR7QrNanVcyORCgoVaTj2/M3qgwxQMVm64PemkY+pGXkskRPyeAOv UkYj6pbpKCpj93c31easi8IGBAVLJbf8yyoWlp2rUrbakJ37aKxRIme7LIyc1CdP3zOo C33w== X-Gm-Message-State: AOAM530ivZePoPP0CWBOtGlOwCCs3PUxVBjLO/mhTJtTIMR9UqeaFWQe SfAp/vHAlO14wdEff09eTm5NV5ORJcQ= X-Google-Smtp-Source: ABdhPJye5cIy3vZXawywCyySill3BSx/v45WoMuqdwmUfSu3g247roOiSdtuest5DWZTuFhCW2cSIA== X-Received: by 2002:adf:cd10:: with SMTP id w16mr8994529wrm.404.1629450503330; Fri, 20 Aug 2021 02:08:23 -0700 (PDT) Received: from troy.wobcom.de ([94.31.100.46]) by smtp.gmail.com with ESMTPSA id i9sm6606996wre.36.2021.08.20.02.08.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 20 Aug 2021 02:08:22 -0700 (PDT) Sender: Marvin Preuss From: Marvin Preuss To: alpine-aports@lists.alpinelinux.org Cc: Marvin Preuss Subject: [PATCH] community/py3-confuse: new aport Date: Fri, 20 Aug 2021 11:08:19 +0200 Message-Id: <20210820090819.722864-1-marvin@xsteadfastx.org> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit this is a new python module that is needed for the new beets 1.5.0. thats also why this is straight to community. --- community/py3-confuse/APKBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 community/py3-confuse/APKBUILD diff --git a/community/py3-confuse/APKBUILD b/community/py3-confuse/APKBUILD new file mode 100644 index 0000000000..02f94e9851 --- /dev/null +++ b/community/py3-confuse/APKBUILD @@ -0,0 +1,25 @@ +# Contributor: Marvin Preuss +# Maintainer: Marvin Preuss +pkgname=py3-confuse +_pyname=confuse +pkgver=1.5.0 +pkgrel=0 +pkgdesc="painless YAML config files for Python" +options="!check" # No testsuite +url="https://github.com/beetbox/confuse" +arch="noarch" +license="MIT" +depends="python3 py3-yaml" +source="confuse-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pyname%${_pyname#?}}/$_pyname/$_pyname-$pkgver.tar.gz" +builddir="$srcdir/$_pyname-$pkgver" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} +sha512sums=" +97cc6fd21f2d73ee1982c2a87a7433a43eefe19a431e6626d0f675d419ebf7b9146c77240d90d60cab96e9dc046e14e9e3c1a0c01e849eb7061a26045169b417 confuse-1.5.0.tar.gz +" -- 2.33.0