Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Sep 2014 20:44:18 +0200
From:      Remko Lodder <remko@FreeBSD.org>
To:        Olli Hauer <ohauer@FreeBSD.org>
Cc:        svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org
Subject:   Re: svn commit: r369487 - in head/devel/viewvc: . files
Message-ID:  <0E311283-E3D4-4888-AD48-602CD5789044@FreeBSD.org>
In-Reply-To: <201409281838.s8SIc23r091818@svn.freebsd.org>
References:  <201409281838.s8SIc23r091818@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help

--Apple-Mail=_1360E83A-0986-4D4A-9220-072333824147
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain;
	charset=us-ascii


On 28 Sep 2014, at 20:38, Olli Hauer <ohauer@FreeBSD.org> wrote:

> Author: ohauer
> Date: Sun Sep 28 18:38:02 2014
> New Revision: 369487
> URL: http://svnweb.freebsd.org/changeset/ports/369487
> QAT: https://qat.redports.org/buildarchive/r369487/
>=20
> Log:
>  - remove unused CPE vars
>  - use new python:2.7 notation
>  - change apache sample to match apache24
>  - use own shebangfix, to many files (w.o file suffix)
>  - use new pkg-plist (remove @dirrm..)
>  - bump PORTREVISION

There was a specific request for the bash shell to add CPE_VENDOR, so it =
is likely
to be used in the near future. Can you please put it back?

Thank you,
Remko

>=20
> Modified:
>  head/devel/viewvc/Makefile
>  head/devel/viewvc/files/pkg-message.in
>  head/devel/viewvc/pkg-plist
>=20
> Modified: head/devel/viewvc/Makefile
> =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
> --- head/devel/viewvc/Makefile	Sun Sep 28 18:37:05 2014	=
(r369486)
> +++ head/devel/viewvc/Makefile	Sun Sep 28 18:38:02 2014	=
(r369487)
> @@ -3,7 +3,7 @@
>=20
> PORTNAME=3D	viewvc
> PORTVERSION=3D	1.1.22
> -PORTREVISION=3D	1
> +PORTREVISION=3D	2
> CATEGORIES=3D	devel python
> MASTER_SITES=3D	http://www.viewvc.org/ \
> 		LOCAL/ohauer
> @@ -39,12 +39,9 @@ MYSQL_RUN_DEPENDS=3D	${PYTHON_PKGNAMEPREFI
>=20
> .include <bsd.port.options.mk>
>=20
> -USES=3D		cpe
> -CPE_VENDOR=3D	viewvc
> -CPE_PRODUCT=3D	viewvc
> +USES=3D		cpe python:2.7
> NO_BUILD=3D	yes
> USE_RC_SUBR=3D	viewvc
> -USE_PYTHON=3D	2
> SUB_FILES=3D	pkg-message
> SUB_LIST=3D	PYTHON_CMD=3D${PYTHON_CMD} \
> 		ECHO=3D${ECHO} EGREP=3D${EGREP} TOUCH=3D${TOUCH} \
> @@ -65,6 +62,11 @@ post-patch:
> 	${REINPLACE_CMD} -e 's/conf.dist/conf.sample/g' \
> 		${WRKSRC}/viewvc-install \
> 		${WRKSRC}/bin/standalone.py
> +# to much files, use own shebangfix=09
> +	${FIND} ${WRKSRC} -type f | ${GREP} -v -e 'png' -e 'images' \
> +		| xargs ${REINPLACE_CMD} -i '' \
> +		-e '1s|^\#![[:space:]]*/usr/bin/env =
python|\#!${PYTHON_CMD}|' \
> +		-e =
'1s|^\#![[:space:]]*/usr/bin/python|\#!${PYTHON_CMD}|'
>=20
> do-install:
> 	@(cd ${WRKSRC} && ${PYTHON_CMD} viewvc-install =
--prefix=3D${PREFIX}/${PORTNAME} --destdir=3D"${STAGEDIR}" =
--clean-mode=3Dfalse)
>=20
> Modified: head/devel/viewvc/files/pkg-message.in
> =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
> --- head/devel/viewvc/files/pkg-message.in	Sun Sep 28 18:37:05 2014	=
(r369486)
> +++ head/devel/viewvc/files/pkg-message.in	Sun Sep 28 18:38:02 2014	=
(r369487)
> @@ -28,8 +28,7 @@
>     AddHandler cgi-script .cgi
>     Options NONE +ExecCGI
>     DirectoryIndex viewvc.cgi
> -    Order allow,deny
> -    Allow from all
> +    Require all granted
>  </Directory>
>=20
>=20
>=20
> Modified: head/devel/viewvc/pkg-plist
> =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
> --- head/devel/viewvc/pkg-plist	Sun Sep 28 18:37:05 2014	=
(r369486)
> +++ head/devel/viewvc/pkg-plist	Sun Sep 28 18:38:02 2014	=
(r369487)
> @@ -241,36 +241,3 @@ viewvc/templates/revision.ezt
> viewvc/templates/roots.ezt
> viewvc/templates/rss.ezt
> @sample viewvc/viewvc.conf.sample
> -@dirrm viewvc/bin/cgi
> -@dirrm viewvc/bin/mod_python
> -@dirrm viewvc/bin/wsgi
> -@dirrm viewvc/bin
> -@dirrm viewvc/lib/vcauth/forbidden
> -@dirrm viewvc/lib/vcauth/forbiddenre
> -@dirrm viewvc/lib/vcauth/svnauthz
> -@dirrm viewvc/lib/vcauth
> -@dirrm viewvc/lib/vclib/ccvs/rcsparse/test-data
> -@dirrm viewvc/lib/vclib/ccvs/rcsparse
> -@dirrm viewvc/lib/vclib/ccvs
> -@dirrm viewvc/lib/vclib/svn
> -@dirrm viewvc/lib/vclib
> -@dirrm viewvc/lib
> -@dirrm viewvc/templates/docroot/images
> -@dirrm viewvc/templates/docroot
> -@dirrm viewvc/templates/include
> -@dirrm viewvc/templates
> -@dirrm viewvc/templates-contrib/newvc/templates/docroot/images
> -@dirrm viewvc/templates-contrib/newvc/templates/docroot
> -@dirrm viewvc/templates-contrib/newvc/templates/include
> -@dirrm viewvc/templates-contrib/newvc/templates
> -@dirrm viewvc/templates-contrib/newvc
> -@dirrm viewvc/templates-contrib/viewsvn/extras
> -@dirrm viewvc/templates-contrib/viewsvn/screenshots
> -@dirrm =
viewvc/templates-contrib/viewsvn/templates/docroot/images/tortoisesvn
> -@dirrm viewvc/templates-contrib/viewsvn/templates/docroot/images
> -@dirrm viewvc/templates-contrib/viewsvn/templates/docroot
> -@dirrm viewvc/templates-contrib/viewsvn/templates/include
> -@dirrm viewvc/templates-contrib/viewsvn/templates
> -@dirrm viewvc/templates-contrib/viewsvn
> -@dirrm viewvc/templates-contrib
> -@dirrmtry viewvc
> _______________________________________________
> svn-ports-all@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/svn-ports-all
> To unsubscribe, send any mail to =
"svn-ports-all-unsubscribe@freebsd.org"

--=20

/"\   Best regards,                      | remko@FreeBSD.org
\ /   Remko Lodder                       | remko@EFnet
 X    http://www.evilcoder.org/          |
/ \   ASCII Ribbon Campaign              | Against HTML Mail and News


--Apple-Mail=_1360E83A-0986-4D4A-9220-072333824147
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename=signature.asc
Content-Type: application/pgp-signature;
	name=signature.asc
Content-Description: Message signed with OpenPGP using GPGMail

-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - http://gpgtools.org

iQIcBAEBAgAGBQJUKFcCAAoJEKjD27JZ84ywCSMP/j66nC3Kb6gGsOwxlpa2b8+j
YWnZe9Ph7IumfGBUrYYLSukZBdI2LCuzD1wnpx+g3auqTGFqcEZaOSKmiHS2G5RO
S5hd2fPObp8W3jYBtRIpn1PAt6JGJSec7Xh9Su6YH2FD13D2ZxtJ57DTKZhJ+VTH
+FoZPtipzy/bSScjb73f0WjVGkcRGZe3t8RHeeOx1GwQw7tNZr97p/r/kxNA/NrD
8Shw0XIP7rMs30GsBkHPP3gPYxuep3jXo8aZza+123vuWN3SkKoyzrmtbkBxFf0o
2IPV3fTIKPkzVf0ln1DkpIbdUGGbXy1omTpUBVLXWcGlw1ZljWQ1vURLL/iF6IJz
4e0wURSeZWk+1tWPuklWp/mPtbXWnq9xiFmI+Ejk+qGDTqxqExSzL8qmeZYr7YwD
VDYJqLQRY+JQWfwvPn9n6wxd7d9XrPF8V5uu8qUdkxTWwnIuvtWiS1RTgOFZpYsf
kIWbolmLaAZZq44hCz9qqu3goCuA7V+4g572kCMiLG4kb+ZvVgzWEz5WRIw8F8xG
FI9/WzK5V0GMZNbjHppYSrU4h5k9BcJRRj0cftQdn7eS5EmP8D9N+s+VMiDz28wv
c7FXuPc5ftLpGgcRe5ayyEKo+WjrDeQ+7h3FQSFF9Iiju0pVlxNCVdDa921N+aHL
68fQTspFprX7cFvzudLN
=Omxx
-----END PGP SIGNATURE-----

--Apple-Mail=_1360E83A-0986-4D4A-9220-072333824147--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?0E311283-E3D4-4888-AD48-602CD5789044>