public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig-openbsd: ChangeLog pkgconfig-openbsd-20130225.ebuild
@ 2013-02-25  7:33 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2013-02-25  7:33 UTC (permalink / raw
  To: gentoo-commits

ssuominen    13/02/25 07:33:09

  Modified:             ChangeLog
  Added:                pkgconfig-openbsd-20130225.ebuild
  Log:
  Version bump, keyword for testing, eapi bump, pkg.m4 from pkg-config 0.28, and more
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.10                 dev-util/pkgconfig-openbsd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	13 Jul 2012 09:32:54 -0000	1.9
+++ ChangeLog	25 Feb 2013 07:33:09 -0000	1.10
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/pkgconfig-openbsd
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.9 2012/07/13 09:32:54 ssuominen Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.10 2013/02/25 07:33:09 ssuominen Exp $
+
+*pkgconfig-openbsd-20130225 (25 Feb 2013)
+
+  25 Feb 2013; Samuli Suominen <ssuominen@gentoo.org>
+  +pkgconfig-openbsd-20130225.ebuild:
+  Version bump. Keyword ~əmd64 and ~x86 to get more people test this, not a
+  candidate for stabilization. Use pkg.m4 from pkg-config-0.28.
 
   13 Jul 2012; Samuli Suominen <ssuominen@gentoo.org>
   pkgconfig-openbsd-20120710.ebuild:



1.1                  dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild?rev=1.1&content-type=text/plain

Index: pkgconfig-openbsd-20130225.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild,v 1.1 2013/02/25 07:33:09 ssuominen Exp $

EAPI=5

# cvs -d anoncvs@anoncvs.openbsd.org:/cvs get src/usr.bin/pkg-config

PKG_M4_VERSION=0.28

DESCRIPTION="A perl based version of pkg-config from OpenBSD"
HOMEPAGE="http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/pkg-config/"
SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz
	pkg-config? ( http://pkgconfig.freedesktop.org/releases/pkg-config-${PKG_M4_VERSION}.tar.gz )"

LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+pkg-config"

DEPEND="
	pkg-config? (
		!dev-util/pkgconfig
		!dev-util/pkgconf[pkg-config]
	)"
RDEPEND="${DEPEND}
	dev-lang/perl
	virtual/perl-Getopt-Long"

S=${WORKDIR}/${P}/src

src_prepare() {
	# Config.pm from dev-lang/perl doesn't set ARCH, only archname
	sed -i -e '/Config/s:ARCH:archname:' usr.bin/pkg-config/pkg-config || die
}

src_install() {
	if use pkg-config; then
		dobin usr.bin/pkg-config/pkg-config
		doman usr.bin/pkg-config/pkg-config.1

		insinto /usr/share/aclocal
		doins "${WORKDIR}"/pkg-config-*/pkg.m4
	else
		newbin usr.bin/pkg-config/pkg-config pkg-config-openbsd
		newman usr.bin/pkg-config/pkg-config.1 pkg-config-openbsd.1
	fi

	insinto /usr/share/${PN}
	doins -r usr.bin/pkg-config/OpenBSD

	cat <<-EOF > "${T}"/99${PN}
	COLON_SEPARATED=PERL5LIB
	PERL5LIB=/usr/share/${PN}
	EOF

	doenvd "${T}"/99${PN}
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig-openbsd: ChangeLog pkgconfig-openbsd-20130225.ebuild
@ 2013-03-05 12:27 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2013-03-05 12:27 UTC (permalink / raw
  To: gentoo-commits

ssuominen    13/03/05 12:27:29

  Modified:             ChangeLog pkgconfig-openbsd-20130225.ebuild
  Log:
  drops keywords again, spotted a major bug
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.12                 dev-util/pkgconfig-openbsd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	25 Feb 2013 07:33:55 -0000	1.11
+++ ChangeLog	5 Mar 2013 12:27:29 -0000	1.12
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/pkgconfig-openbsd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.11 2013/02/25 07:33:55 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.12 2013/03/05 12:27:29 ssuominen Exp $
+
+  05 Mar 2013; Samuli Suominen <ssuominen@gentoo.org>
+  pkgconfig-openbsd-20130225.ebuild:
+  Remove keywording again because --variable option is not working:
+  $ pkg-config --variable udevdir udev
+  $ echo $?
+  1
 
   25 Feb 2013; Samuli Suominen <ssuominen@gentoo.org>
   -pkgconfig-openbsd-20120710.ebuild:



1.2                  dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild?r1=1.1&r2=1.2

Index: pkgconfig-openbsd-20130225.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pkgconfig-openbsd-20130225.ebuild	25 Feb 2013 07:33:09 -0000	1.1
+++ pkgconfig-openbsd-20130225.ebuild	5 Mar 2013 12:27:29 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild,v 1.1 2013/02/25 07:33:09 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild,v 1.2 2013/03/05 12:27:29 ssuominen Exp $
 
 EAPI=5
 
@@ -15,7 +15,8 @@
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
+#KEYWORDS="~amd64 ~x86"
 IUSE="+pkg-config"
 
 DEPEND="





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig-openbsd: ChangeLog pkgconfig-openbsd-20130225.ebuild
@ 2013-05-07 14:01 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2013-05-07 14:01 UTC (permalink / raw
  To: gentoo-commits

ssuominen    13/05/07 14:01:46

  Modified:             ChangeLog
  Removed:              pkgconfig-openbsd-20130225.ebuild
  Log:
  old
  
  (Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.14                 dev-util/pkgconfig-openbsd/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	7 May 2013 13:59:14 -0000	1.13
+++ ChangeLog	7 May 2013 14:01:46 -0000	1.14
@@ -1,20 +1,17 @@
 # ChangeLog for dev-util/pkgconfig-openbsd
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.13 2013/05/07 13:59:14 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.14 2013/05/07 14:01:46 ssuominen Exp $
+
+  07 May 2013; Samuli Suominen <ssuominen@gentoo.org>
+  -pkgconfig-openbsd-20130225.ebuild:
+  old
 
 *pkgconfig-openbsd-20130507 (07 May 2013)
 
   07 May 2013; Samuli Suominen <ssuominen@gentoo.org>
   +pkgconfig-openbsd-20130507.ebuild:
   Latest version from upstream CVS; include /usr/lib32/pkgconfig,
-  /usr/lib64/pkgconfig, /usr/share/pkgconfig to search paths.
-
-  05 Mar 2013; Samuli Suominen <ssuominen@gentoo.org>
-  pkgconfig-openbsd-20130225.ebuild:
-  Remove keywording again because --variable option is not working:
-  $ pkg-config --variable udevdir udev
-  $ echo $?
-  1
+  /usr/lib64/pkgconfig, /usr/share/pkgconfig to .pc directories
 
   25 Feb 2013; Samuli Suominen <ssuominen@gentoo.org>
   -pkgconfig-openbsd-20120710.ebuild:





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-05-07 14:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-07 14:01 [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig-openbsd: ChangeLog pkgconfig-openbsd-20130225.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2013-03-05 12:27 Samuli Suominen (ssuominen)
2013-02-25  7:33 Samuli Suominen (ssuominen)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox