head	1.4;
access;
symbols
	pkgsrc-2023Q4:1.3.0.14
	pkgsrc-2023Q4-base:1.3
	pkgsrc-2023Q3:1.3.0.12
	pkgsrc-2023Q3-base:1.3
	pkgsrc-2023Q2:1.3.0.10
	pkgsrc-2023Q2-base:1.3
	pkgsrc-2023Q1:1.3.0.8
	pkgsrc-2023Q1-base:1.3
	pkgsrc-2022Q4:1.3.0.6
	pkgsrc-2022Q4-base:1.3
	pkgsrc-2022Q3:1.3.0.4
	pkgsrc-2022Q3-base:1.3
	pkgsrc-2022Q2:1.3.0.2
	pkgsrc-2022Q2-base:1.3
	pkgsrc-2022Q1:1.2.0.6
	pkgsrc-2022Q1-base:1.2
	pkgsrc-2021Q4:1.2.0.4
	pkgsrc-2021Q4-base:1.2
	pkgsrc-2021Q3:1.2.0.2
	pkgsrc-2021Q3-base:1.2;
locks; strict;
comment	@# @;


1.4
date	2024.02.26.19.10.11;	author pin;	state dead;
branches;
next	1.3;
commitid	9caJVWheCo7XAYZE;

1.3
date	2022.03.29.10.41.49;	author pin;	state Exp;
branches;
next	1.2;
commitid	nBGZoWYeMrtzf6yD;

1.2
date	2021.08.05.08.57.47;	author pin;	state Exp;
branches;
next	1.1;
commitid	1ylAr25rdh6fgL3D;

1.1
date	2021.06.24.10.37.30;	author pin;	state Exp;
branches;
next	;
commitid	Jcjq4tWyukK6anYC;


desc
@@


1.4
log
@www/xurl: remove package
@
text
@# $NetBSD: Makefile,v 1.3 2022/03/29 10:41:49 pin Exp $

DISTNAME=	xurl-0.1.0
CATEGORIES=	www
MASTER_SITES=	${MASTER_SITE_GITHUB:=squioc/}

MAINTAINER=	pkgsrc-users@@NetBSD.org
HOMEPAGE=	https://github.com/squioc/xurl/
COMMENT=	Little tool to manipulate urls
LICENSE=	mit

.include "cargo-depends.mk"

INSTALLATION_DIRS=	bin

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/target/release/xurl \
		${DESTDIR}${PREFIX}/bin

.include "../../lang/rust/cargo.mk"
.include "../../mk/bsd.pkg.mk"
@


1.3
log
@www/xurl: drop inactive project
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.2 2021/08/05 08:57:47 pin Exp $
@


1.2
log
@www/xurl: simplify Makefile
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2021/06/24 10:37:30 pin Exp $
d7 1
a7 1
MAINTAINER=	pin@@NetBSD.org
d17 2
a18 1
	${INSTALL_PROGRAM} ${WRKSRC}/target/release/xurl ${DESTDIR}${PREFIX}/bin
@


1.1
log
@www/xurl: import pkg

A little tool to manipulate urls.
Xurl offer severals commands:

-Dissect: The dissect command splits and prints the different parts of the url.
These parts are; scheme, for urls with authentication information, the username
and the password, host, port, path to the document, query string and fragment.
-Join: The join command joins an url and a new path together.
-Encode: The encode command applies the percent-encoding on the url.
-Decode: The decode command reverses the percent-encoding applyied on an url.
-Idna Encode: The idna-encode command applies the punycode translation on an
internationalized domain name.
-Idna Decode: The idna-decode command reverses the punycode translation applied
on an internationalized domain name.
@
text
@d1 1
a1 1
# $NetBSD$
a13 2
USE_LANGUAGES+=	c

@

