X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.tetrasec.net (mx1.tetrasec.net [74.117.190.25]) by lists.alpinelinux.org (Postfix) with ESMTP id 439CB5C6300 for ; Tue, 4 Sep 2018 08:37:09 +0000 (GMT) Received: from mx1.tetrasec.net (mail.local [127.0.0.1]) by mx1.tetrasec.net (Postfix) with ESMTP id E66B89E1D47; Tue, 4 Sep 2018 08:37:08 +0000 (GMT) Received: from ncopa-desktop.copa.dup.pw (67.63.200.37.customer.cdi.no [37.200.63.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by mx1.tetrasec.net (Postfix) with ESMTPSA id 0A9AC9E03BF; Tue, 4 Sep 2018 08:37:07 +0000 (GMT) Date: Tue, 4 Sep 2018 10:37:04 +0200 From: Natanael Copa To: Alex Raschi Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] testing/numlockx: new aport Message-ID: <20180904103704.5b6f4417@ncopa-desktop.copa.dup.pw> In-Reply-To: <20180808090017.5841-1-raschi.alex@gmail.com> References: <20180808090017.5841-1-raschi.alex@gmail.com> X-Mailer: Claws Mail 3.15.1-dirty (GTK+ 2.24.31; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 8 Aug 2018 11:00:17 +0200 Alex Raschi wrote: > https://tracker.debian.org/pkg/numlockx > Enable NumLock in X11 sessions > --- > testing/numlockx/APKBUILD | 42 +++++++++++++++++++++++++++++++++++++++ > 1 file changed, 42 insertions(+) > create mode 100644 testing/numlockx/APKBUILD > > diff --git a/testing/numlockx/APKBUILD b/testing/numlockx/APKBUILD > new file mode 100644 > index 0000000000..f0431fa07e > --- /dev/null > +++ b/testing/numlockx/APKBUILD > @@ -0,0 +1,42 @@ > +# Maintainer: Alex Raschi > +pkgname=numlockx > +pkgver=1.2 > +_pkgver=7.1 # debian sub version > +pkgrel=0 > +pkgdesc="Enable NumLock in X11 sessions" > +url="https://tracker.debian.org/pkg/numlockx" According the above URL, the upstream homepage is http://home.kde.org/~seli/numlockx/ which is gone. So it looks like this application is not longer maintained upstream? Also Fedora points to a upstream homepage: https://src.fedoraproject.org/cgit/rpms/numlockx.git/tree/numlockx.spec http://ktown.kde.org/~seli/numlockx/ My question is, where do we send patches and bugreports upstream? > +arch="all" > +license="MIT" > +depends="" > +makedepends="libx11-dev libxtst-dev" > +options="!check" # no test suite > +source="https://salsa.debian.org/debian/numlockx/-/archive/debian/$pkgver-$_pkgver/$pkgname-debian-$pkgver-$_pkgver.tar.gz" > +builddir="$srcdir/$pkgname-debian-$pkgver-$_pkgver" > + > +prepare() { > + default_prepare > + local patch= > + > + for patch in improve-help get-state; do > + patch < debian/patches/"$patch".patch > + done > +} > + > +build() { > + cd "$builddir" > + ./configure \ > + --build=$CBUILD \ > + --host=$CHOST \ > + --prefix=/usr \ > + --sysconfdir=/etc \ > + --mandir=/usr/share/man \ > + --localstatedir=/var > + make > +} > + > +package() { > + cd "$builddir" > + make DESTDIR="$pkgdir" install > +} > + > +sha512sums="55cb3f334efb5de8d5f8b4b3d604f5f67aeeb3e3c6b9e2a3b1af99ada7aeb3d8440164628a8df68cd90fb66110669c586e7bf3809259ae4572446d5982159017 numlockx-debian-1.2-7.1.tar.gz" --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---