~alpine/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
5 2

[alpine-devel] [PATCH] testing/brlaser: add new package

Isaac Dunham <ibid.ag@gmail.com>
Details
Message ID
<1404111204-9082-1-git-send-email-ibid.ag@gmail.com>
Sender timestamp
1404111204
DKIM signature
missing
Download raw message
Patch: +50 -0
This is a driver for Brother DCP 70xx printers; it has been tested with
the DCP 7030 and the DCP 7065 DN all-in-one.
---
 testing/brlaser/APKBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)
 create mode 100644 testing/brlaser/APKBUILD

diff --git a/testing/brlaser/APKBUILD b/testing/brlaser/APKBUILD
new file mode 100644
index 0000000..733169b
--- /dev/null
+++ b/testing/brlaser/APKBUILD
@@ -0,0 +1,50 @@
# Contributor: Isaac Dunham <ibid.ag@gmail.com>
# Maintainer: Isaac Dunham <ibid.ag@gmail.com>
pkgname=brlaser
pkgver=2
pkgrel=0
pkgdesc="Driver for Brother DCP 7030 and DCP 7065 printers"
url="http://github.com/pdewacht/brlaser"
arch="all"
license="GPL2+"
depends="cups-filters"
depends_dev=""
makedepends="$depends_dev cups-dev"
install=""
subpackages="$pkgname-doc"
source="brlaser-$pkgver.tar.gz::https://github.com/pdewacht/brlaser/archive/v$pkgver.tar.gz"

_builddir="$srcdir"/brlaser-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./autogen.sh \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	rm -f "$pkgdir"/usr/lib/*.la
}

md5sums="34bc664707dcd51e96a3b79917bcb50d  brlaser-2.tar.gz"
sha256sums="20852bb99004474c25885b7d7ba124b079e7ea6beb277a85500641ca34fe24c6  brlaser-2.tar.gz"
sha512sums="eda631fd4cf80e3dd0f7097b62fd8e73f8adcafdfad937b49b5515d4ede37bcb861fa8a69397cacc3634baf18551a06bf2feb85042e34432ee26e695b7b8339b  brlaser-2.tar.gz"
-- 
2.0.1



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<20140701162812.16bb7072@ncopa-desktop.alpinelinux.org>
In-Reply-To
<1404111204-9082-1-git-send-email-ibid.ag@gmail.com> (view parent)
Sender timestamp
1404224892
DKIM signature
missing
Download raw message
On Sun, 29 Jun 2014 23:53:24 -0700
Isaac Dunham <ibid.ag@gmail.com> wrote:

> This is a driver for Brother DCP 70xx printers; it has been tested with
> the DCP 7030 and the DCP 7065 DN all-in-one.

autoconf and automake was missing for the autogen.sh. I added those and
git commit --amend it.

Please let me know when you tested the package built from build server
so we can move it to main.

Thanks!

-nc


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<20140702021913.010fe53e@ncopa-laptop>
In-Reply-To
<20140703183933.GA3063@newbook> (view parent)
Sender timestamp
1404260353
DKIM signature
missing
Download raw message
On Thu, 3 Jul 2014 11:39:34 -0700
Isaac Dunham <ibid.ag@gmail.com> wrote:

> On Wed, Jul 02, 2014 at 09:21:44AM +0200, Natanael Copa wrote:
> > On Wed, 2 Jul 2014 14:42:39 -0700
> > Isaac Dunham <ibid.ag@gmail.com> wrote:
> > 
> > > On Tue, Jul 01, 2014 at 04:28:12PM +0200, Natanael Copa wrote:
> > > > On Sun, 29 Jun 2014 23:53:24 -0700
> > > > Isaac Dunham <ibid.ag@gmail.com> wrote:
> > > > 
> > > > > This is a driver for Brother DCP 70xx printers; it has been tested with
> > > > > the DCP 7030 and the DCP 7065 DN all-in-one.
> > > 
> > > > Please let me know when you tested the package built from build server
> > > > so we can move it to main.
> > > 
> > > I will as soon as I can; currently it seems that this commit (and the 
> > > cups-filter update) have not been pushed to the aports repository, and
> > > thus are not built.
> > 
> > pushed now.
> 
> Works here.
> (I only tested printing a text file, but the filter converts from
> cups raster format, so the pipeline is text->ps->pdf->raster->brlaser;
> image printing will go image->raster->brlaser, so should work the same.)

I moved it to main.
 
> Upstream has made a couple non-code changes to advertise DCP 7065DN 
> support, so I hope to send those this evening.

Please make sure its rebased so you use main/brlaser.

Thanks!

-nc


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<20140702092144.2a7d4d33@ncopa-desktop.alpinelinux.org>
In-Reply-To
<20140702214238.GA1669@newbook> (view parent)
Sender timestamp
1404285704
DKIM signature
missing
Download raw message
On Wed, 2 Jul 2014 14:42:39 -0700
Isaac Dunham <ibid.ag@gmail.com> wrote:

> On Tue, Jul 01, 2014 at 04:28:12PM +0200, Natanael Copa wrote:
> > On Sun, 29 Jun 2014 23:53:24 -0700
> > Isaac Dunham <ibid.ag@gmail.com> wrote:
> > 
> > > This is a driver for Brother DCP 70xx printers; it has been tested with
> > > the DCP 7030 and the DCP 7065 DN all-in-one.
> > 
> > autoconf and automake was missing for the autogen.sh. I added those and
> > git commit --amend it.
> 
> I apologize for that omission.
> 
> > Please let me know when you tested the package built from build server
> > so we can move it to main.
> 
> I will as soon as I can; currently it seems that this commit (and the 
> cups-filter update) have not been pushed to the aports repository, and
> thus are not built.

whoops. sorry..

pushed now.

thanks!

-nc

> 
> Thanks,
> Isaac Dunham



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Isaac Dunham <ibid.ag@gmail.com>
Details
Message ID
<20140702214238.GA1669@newbook>
In-Reply-To
<20140701162812.16bb7072@ncopa-desktop.alpinelinux.org> (view parent)
Sender timestamp
1404337359
DKIM signature
missing
Download raw message
On Tue, Jul 01, 2014 at 04:28:12PM +0200, Natanael Copa wrote:
> On Sun, 29 Jun 2014 23:53:24 -0700
> Isaac Dunham <ibid.ag@gmail.com> wrote:
> 
> > This is a driver for Brother DCP 70xx printers; it has been tested with
> > the DCP 7030 and the DCP 7065 DN all-in-one.
> 
> autoconf and automake was missing for the autogen.sh. I added those and
> git commit --amend it.

I apologize for that omission.

> Please let me know when you tested the package built from build server
> so we can move it to main.

I will as soon as I can; currently it seems that this commit (and the 
cups-filter update) have not been pushed to the aports repository, and
thus are not built.

Thanks,
Isaac Dunham


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Isaac Dunham <ibid.ag@gmail.com>
Details
Message ID
<20140703183933.GA3063@newbook>
In-Reply-To
<20140702092144.2a7d4d33@ncopa-desktop.alpinelinux.org> (view parent)
Sender timestamp
1404412774
DKIM signature
missing
Download raw message
On Wed, Jul 02, 2014 at 09:21:44AM +0200, Natanael Copa wrote:
> On Wed, 2 Jul 2014 14:42:39 -0700
> Isaac Dunham <ibid.ag@gmail.com> wrote:
> 
> > On Tue, Jul 01, 2014 at 04:28:12PM +0200, Natanael Copa wrote:
> > > On Sun, 29 Jun 2014 23:53:24 -0700
> > > Isaac Dunham <ibid.ag@gmail.com> wrote:
> > > 
> > > > This is a driver for Brother DCP 70xx printers; it has been tested with
> > > > the DCP 7030 and the DCP 7065 DN all-in-one.
> > 
> > > Please let me know when you tested the package built from build server
> > > so we can move it to main.
> > 
> > I will as soon as I can; currently it seems that this commit (and the 
> > cups-filter update) have not been pushed to the aports repository, and
> > thus are not built.
> 
> pushed now.

Works here.
(I only tested printing a text file, but the filter converts from
cups raster format, so the pipeline is text->ps->pdf->raster->brlaser;
image printing will go image->raster->brlaser, so should work the same.)

Upstream has made a couple non-code changes to advertise DCP 7065DN 
support, so I hope to send those this evening.

> thanks!
> 
> -nc

Thank you,
Isaac Dunham



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)