pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

wp2md: Rename to wp2md-git



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Thu Sep 22 23:43:01 2016 +0200
Changeset:	05172e9e0bd3ba3f0a0adb978c425d68618b441b

Modified Files:
	Makefile
Added Files:
	wp2md-git/DESCR
	wp2md-git/Makefile
	wp2md-git/PLIST
Removed Files:
	wp2md/DESCR
	wp2md/Makefile
	wp2md/PLIST

Log Message:
wp2md: Rename to wp2md-git

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=05172e9e0bd3ba3f0a0adb978c425d68618b441b

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 Makefile           |  2 +-
 wp2md-git/DESCR    |  4 ++++
 wp2md-git/Makefile | 26 ++++++++++++++++++++++++++
 wp2md-git/PLIST    | 27 +++++++++++++++++++++++++++
 wp2md/DESCR        |  4 ----
 wp2md/Makefile     | 26 --------------------------
 wp2md/PLIST        | 27 ---------------------------
 7 files changed, 58 insertions(+), 58 deletions(-)

diffs:
diff --git a/Makefile b/Makefile
index ebd0306..c39e414 100644
--- a/Makefile
+++ b/Makefile
@@ -4275,7 +4275,7 @@ SUBDIR+=	wmx
 SUBDIR+=	wmx-gnome
 SUBDIR+=	wolf4SDL
 SUBDIR+=	workrave
-SUBDIR+=	wp2md
+SUBDIR+=	wp2md-git
 SUBDIR+=	wpro
 SUBDIR+=	wput
 SUBDIR+=	wqy-microhei-ttf
diff --git a/wp2md-git/DESCR b/wp2md-git/DESCR
new file mode 100644
index 0000000..1751cb8
--- /dev/null
+++ b/wp2md-git/DESCR
@@ -0,0 +1,4 @@
+A python script to convert WordPress XML dump to a set of plain text/markdown
+files. Intended to be used for migration from WordPress to public-static
+website generator, but could also be helpful as general purpose WordPress
+content processor.
diff --git a/wp2md-git/Makefile b/wp2md-git/Makefile
new file mode 100644
index 0000000..ad25190
--- /dev/null
+++ b/wp2md-git/Makefile
@@ -0,0 +1,26 @@
+# $NetBSD$
+
+DISTNAME=	wp2md-0.8.1
+CATEGORIES=	textproc
+GIT_REPOSITORIES=	wp2md
+GIT_REPO.wp2md=		https://github.com/dreikanter/wp2md.git
+
+WRKSRC=		${WRKDIR}/wp2md
+
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=	https://github.com/dreikanter/wp2md
+COMMENT=	WordPress to Markdown Exporter
+LICENSE=	gnu-gpl-v3
+
+PYTHON_VERSIONS_INCOMPATIBLE=	27
+
+REPLACE_PYTHON+=	wp2md/html2text.py
+REPLACE_PYTHON+=	wp2md/wp2md.py
+
+DEPENDS+=	${PYPKGPREFIX}-html2text-[0-9]*:../../textproc/py-html2text
+DEPENDS+=	${PYPKGPREFIX}-markdown-[0-9]*:../../textproc/py-markdown
+
+.include "../../lang/python/distutils.mk"
+.include "../../lang/python/application.mk"
+.include "../../wip/mk/git-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/wp2md-git/PLIST b/wp2md-git/PLIST
new file mode 100644
index 0000000..788564d
--- /dev/null
+++ b/wp2md-git/PLIST
@@ -0,0 +1,27 @@
+@comment $NetBSD$
+bin/wp2md
+${PYSITELIB}/${EGG_FILE}/PKG-INFO
+${PYSITELIB}/${EGG_FILE}/SOURCES.txt
+${PYSITELIB}/${EGG_FILE}/dependency_links.txt
+${PYSITELIB}/${EGG_FILE}/entry_points.txt
+${PYSITELIB}/${EGG_FILE}/not-zip-safe
+${PYSITELIB}/${EGG_FILE}/requires.txt
+${PYSITELIB}/${EGG_FILE}/top_level.txt
+${PYSITELIB}/wp2md/__init__.py
+${PYSITELIB}/wp2md/__main__.py
+${PYSITELIB}/wp2md/__init__.pyc
+${PYSITELIB}/wp2md/__init__.pyo
+${PYSITELIB}/wp2md/__main__.pyc
+${PYSITELIB}/wp2md/__main__.pyo
+${PYSITELIB}/wp2md/authoring.pyc
+${PYSITELIB}/wp2md/authoring.pyo
+${PYSITELIB}/wp2md/html2text.pyc
+${PYSITELIB}/wp2md/html2text.pyo
+${PYSITELIB}/wp2md/version.pyc
+${PYSITELIB}/wp2md/version.pyo
+${PYSITELIB}/wp2md/wp2md.pyc
+${PYSITELIB}/wp2md/wp2md.pyo
+${PYSITELIB}/wp2md/authoring.py
+${PYSITELIB}/wp2md/html2text.py
+${PYSITELIB}/wp2md/version.py
+${PYSITELIB}/wp2md/wp2md.py
diff --git a/wp2md/DESCR b/wp2md/DESCR
deleted file mode 100644
index 1751cb8..0000000
--- a/wp2md/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-A python script to convert WordPress XML dump to a set of plain text/markdown
-files. Intended to be used for migration from WordPress to public-static
-website generator, but could also be helpful as general purpose WordPress
-content processor.
diff --git a/wp2md/Makefile b/wp2md/Makefile
deleted file mode 100644
index ad25190..0000000
--- a/wp2md/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# $NetBSD$
-
-DISTNAME=	wp2md-0.8.1
-CATEGORIES=	textproc
-GIT_REPOSITORIES=	wp2md
-GIT_REPO.wp2md=		https://github.com/dreikanter/wp2md.git
-
-WRKSRC=		${WRKDIR}/wp2md
-
-MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=	https://github.com/dreikanter/wp2md
-COMMENT=	WordPress to Markdown Exporter
-LICENSE=	gnu-gpl-v3
-
-PYTHON_VERSIONS_INCOMPATIBLE=	27
-
-REPLACE_PYTHON+=	wp2md/html2text.py
-REPLACE_PYTHON+=	wp2md/wp2md.py
-
-DEPENDS+=	${PYPKGPREFIX}-html2text-[0-9]*:../../textproc/py-html2text
-DEPENDS+=	${PYPKGPREFIX}-markdown-[0-9]*:../../textproc/py-markdown
-
-.include "../../lang/python/distutils.mk"
-.include "../../lang/python/application.mk"
-.include "../../wip/mk/git-package.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/wp2md/PLIST b/wp2md/PLIST
deleted file mode 100644
index 788564d..0000000
--- a/wp2md/PLIST
+++ /dev/null
@@ -1,27 +0,0 @@
-@comment $NetBSD$
-bin/wp2md
-${PYSITELIB}/${EGG_FILE}/PKG-INFO
-${PYSITELIB}/${EGG_FILE}/SOURCES.txt
-${PYSITELIB}/${EGG_FILE}/dependency_links.txt
-${PYSITELIB}/${EGG_FILE}/entry_points.txt
-${PYSITELIB}/${EGG_FILE}/not-zip-safe
-${PYSITELIB}/${EGG_FILE}/requires.txt
-${PYSITELIB}/${EGG_FILE}/top_level.txt
-${PYSITELIB}/wp2md/__init__.py
-${PYSITELIB}/wp2md/__main__.py
-${PYSITELIB}/wp2md/__init__.pyc
-${PYSITELIB}/wp2md/__init__.pyo
-${PYSITELIB}/wp2md/__main__.pyc
-${PYSITELIB}/wp2md/__main__.pyo
-${PYSITELIB}/wp2md/authoring.pyc
-${PYSITELIB}/wp2md/authoring.pyo
-${PYSITELIB}/wp2md/html2text.pyc
-${PYSITELIB}/wp2md/html2text.pyo
-${PYSITELIB}/wp2md/version.pyc
-${PYSITELIB}/wp2md/version.pyo
-${PYSITELIB}/wp2md/wp2md.pyc
-${PYSITELIB}/wp2md/wp2md.pyo
-${PYSITELIB}/wp2md/authoring.py
-${PYSITELIB}/wp2md/html2text.py
-${PYSITELIB}/wp2md/version.py
-${PYSITELIB}/wp2md/wp2md.py


Home | Main Index | Thread Index | Old Index